/*
Theme Name: OHANA Branded Residences
Theme URI: https://ohana.ae
Description: Premium landing page for OHANA Branded Residences on Yas Canal
Version: 1.0
Author: OHANA Development
*/

/* ===========================
   RESET & VARIABLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --coral-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --blue-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-overlay: rgba(0, 0, 0, 0.4);
    --text-white: #ffffff;
    --text-dark: #2d3436;
    --accent-red: #ff6b6b;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 50%, #a18cd1 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomInOut 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3) 0%, rgba(78, 205, 196, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-white);
    padding: 0 20px;
    animation: fadeInUp 1.5s ease-out;
}

.hero-location {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 30px;
    animation: fadeIn 2s ease-out 0.5s both;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 5px;
    animation: fadeIn 2s ease-out 0.8s both;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: scaleIn 2s ease-out 1s both;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 40px;
    animation: fadeIn 2s ease-out 1.3s both;
}

.hero-logo {
    max-width: 300px;
    margin-top: 50px;
    animation: fadeIn 2s ease-out 1.5s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

/* ===========================
   WHY YAS SECTION
   =========================== */
.why-yas-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--accent-red);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.section-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.why-yas-content {
    max-width: 1200px;
    margin: 0 auto;
}

.yas-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

/* ===========================
   ATTRACTIONS SECTION
   =========================== */
.attractions-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.attraction-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.attraction-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.attraction-content {
    padding: 30px;
}

.attraction-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 15px;
}

.attraction-description {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.6;
}

/* ===========================
   BENEFITS SECTION
   =========================== */
.benefits-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--text-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ===========================
   CONTACT FORM SECTION
   =========================== */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.ohana-form .form-group {
    margin-bottom: 25px;
}

.ohana-form input,
.ohana-form select,
.ohana-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.ohana-form input:focus,
.ohana-form select:focus,
.ohana-form textarea:focus {
    outline: none;
    border-color: var(--accent-red);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff6b6b 0%, #f5576c 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: #2d3436;
    color: var(--text-white);
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.9rem;
    color: #b2bec3;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-container {
        padding: 40px 30px;
    }
    
    .attractions-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

/* ===========================
   LOADING ANIMATION
   =========================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===========================
   SMOOTH SCROLLBAR
   =========================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f5576c 0%, #3bb7af 100%);
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
    .scroll-indicator,
    .hero-overlay,
    .contact-section {
        display: none;
    }
}
