/* ===== CSS RESET & BASE STYLES ===== */
:root {
    /* Color Palette - Enhanced with restaurant colors */
    --primary-dark: #0a0a0a;
    --primary-light: #f1e8e8a8;
    --accent-gold: #c9a86a;
    --restaurant-accent: #ff7a5c;
    --accent-dark: #1a1a1a;
    --text-light: #e8e8e8;
    --text-dark: #333333;
    
    /* Business Colors */
    --restaurant-color: #8b4513;
    --fashion-color: #2c2c2c;
    --beauty-color: #af4829;
    --studio-color: #1a237e;
    
    /* Design Tokens */
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


 /* ===== ENHANCED NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            background-color: var(--accent-gold);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        }

        .navbar.scrolled {
            padding: 10px 0;
            background-color: var(--accent-gold);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
            width: auto;
            display: block;
            transition: all 0.3s ease;
        }

        /* Desktop Navigation */
        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            color: red;
            text-transform: uppercase;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #ffffff; 
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #d43737; /* underline */
            transition: all 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* Hamburger Menu Button */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 25px;
        }

        .hamburger-line {
            width: 100%;
            height: 3px;
            background-color: #000000; /* Black hamburger lines */
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .navbar {
                padding: 12px 0;
            }
            
            .logo img {
                height: 35px;
            }
            
            /* Hide desktop menu, show hamburger */
            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: #ffffff; /* White background for mobile menu */
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 80px 30px 30px;
                transition: left 0.4s ease;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
                gap: 0;
                z-index: 1000;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-link {
                width: 100%;
                padding: 15px 0;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                color: #000; /* Black text for mobile links */
                text-transform: uppercase;
            }
            
            
            /* Keep mobile labels black for all states */
            .nav-link:hover,
            .nav-link.active {
                color: #000;
            }
            .nav-link:last-child {
                border-bottom: none;
            }
            
            .nav-link:hover::after,
            .nav-link.active::after {
                width: 40px; /* Shorter underline on mobile */
                background-color: #000; /* Black underline */
            }
            
            .hamburger-btn {
                display: flex;
            }
            
            /* Overlay when menu is open */
            .nav-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 999;
            }
            
            .nav-overlay.active {
                display: block;
            }
            
            /* Hamburger animation */
            .hamburger-btn.active .hamburger-line:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            
            .hamburger-btn.active .hamburger-line:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger-btn.active .hamburger-line:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }
        }

        /* Tablet adjustments */
        @media (max-width: 992px) and (min-width: 769px) {
            .nav-menu {
                gap: 20px;
            }
            
            .nav-link {
                font-size: 0.85rem;
                color: #000; /* Black text for tablet */
            }
        }


/* ===== HOME SECTION ===== */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    padding-top: 80px;
}

.slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: simpleSlide 20s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }

@keyframes simpleSlide {
    0% {
        opacity: 0;
        z-index: 1;
    }
    10% {
        opacity: 1;
        z-index: 2;
    }
    25% {
        opacity: 1;
        z-index: 2;
    }
    35% {
        opacity: 0;
        z-index: 1;
    }
    100% {
        opacity: 0;
        z-index: 1;
    }
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: simpleZoom 20s infinite;
}

.slide:nth-child(1) .slide-image { animation-delay: 0s; }
.slide:nth-child(2) .slide-image { animation-delay: 5s; }
.slide:nth-child(3) .slide-image { animation-delay: 10s; }
.slide:nth-child(4) .slide-image { animation-delay: 15s; }

@keyframes simpleZoom {
    0% { transform: scale(1.05); }
    10% { transform: scale(1); }
    25% { transform: scale(1); }
    35% { transform: scale(1.05); }
    100% { transform: scale(1.05); }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.5));
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    animation: simpleContent 20s infinite;
}

.slide:nth-child(1) .slide-content { animation-delay: 0s; }
.slide:nth-child(2) .slide-content { animation-delay: 5s; }
.slide:nth-child(3) .slide-content { animation-delay: 10s; }
.slide:nth-child(4) .slide-content { animation-delay: 15s; }

@keyframes simpleContent {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    25% {
        opacity: 1;
        transform: translateY(0);
    }
    35% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}


.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

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

.intro-section {
    padding: 100px 0;
    background-color: whitesmoke;
}

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

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.intro-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.menu-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-heavy);
}

.menu-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.menu-content {
    padding: 25px;
    text-align: center;
}

.menu-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.menu-content p {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1.5;
}

.feature-section {
    padding: 6rem 0 3rem;
    background-color: #ffffff;
}

.feature-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.feature-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 2rem;
}

.feature-content p {
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.feature-image-section {
    padding: 2rem 0 5rem;
    background-color: #ffffff;
    text-align: center;
}

.feature-image {
    max-width: 100%;
    height: auto;
    display: inline-block;
    border-radius: 4px;
}

/* ===== STANDARDIZED BUTTONS ===== */
.primary-btn {
    padding: 12px 20px;
    background: transparent;
    color: #333;
    border: 1px solid rgba(184, 162, 122, 0.4);
    border-radius: 6px;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.primary-btn:hover {
    background: rgba(184, 162, 122, 0.1);
    color: #333;
    border-color: rgba(184, 162, 122, 0.6);
}

/* Footer */
      .footer {
        background-color: white;
        padding: 3rem 2rem;
        border-top: 2px solid var(--accent-gold);
        text-align: center;
        margin-top: 4rem;
      }

      .social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
      }
      
      .social-icon {
        color: var(--text-dark);
        font-size: 1.5rem;
        transition: color 0.3s ease;
      }
      
      .social-icon:hover {
        color: var(--accent-gold);
      }