/* 
 * PROJECT: Luxury Nail Artistry & Academy
 * THEME: Quiet Luxury / Cashmere & Gold
 * AUTHOR: GitHub Copilot (Art Director Mode)
 */

:root {
    /* --- PALETTE: Cashmere & Gold --- */
    --color-bg-main: #F9F8F6;       /* Warm, broken white */
    --color-bg-secondary: #F2F0EB;  /* Soft putty/kit */
    --color-accent-gold: #C5A059;   /* Muted antique gold */
    --color-accent-gold-light: #D4B881; 
    --color-text-main: #1A1A1A;     /* Soft charcoal */
    --color-text-muted: #5A5A5A;
    --color-white: #FFFFFF;

    /* --- TYPOGRAPHY --- */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;

    /* --- SPACING & LAYOUT --- */
    --spacing-section: 8rem;
    --container-width: 1200px;
    --border-radius-soft: 4px;
    --border-radius-organic: 40% 60% 70% 30% / 40% 50% 60% 50%;

    /* --- EFFECTS --- */
    --shadow-card: 0 20px 40px -10px rgba(197, 160, 89, 0.15);
    --shadow-hover: 0 30px 60px -15px rgba(197, 160, 89, 0.25);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- TYPOGRAPHY STYLES --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 300;
    color: var(--color-text-main);
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

h3 {
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.text-gold {
    color: var(--color-accent-gold);
    font-style: italic;
}

/* --- UTILITIES --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    color: var(--color-text-main);
    border: 1px solid var(--color-accent-gold);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    border-radius: 25px 5px 25px 5px; /* Organic leaf shape */
}

.btn:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-white);
    box-shadow: var(--shadow-card);
}

/* --- NAVIGATION (Dynamic Glassmorphism) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(249, 248, 246, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    height: 90px;
    padding-top: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
    transition: all 0.4s ease;
    position: relative;
    top: 0px;
    
    /* Top State: White Organic Shape */
    background-color: rgba(255,255,255,0.95);
    border-radius: 50px 10px 50px 10px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.navbar.scrolled .logo img {
    /* Scrolled State: Normal */
    height: 80px;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.mobile-only {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-white); /* White at top */
}

.navbar.scrolled .bar {
    background-color: var(--color-accent-gold); /* Gold when scrolled */
}

.nav-link {
    text-decoration: none;
    color: var(--color-white); /* White at top */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 5px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--color-accent-gold); /* Gold when scrolled */
}

.navbar .btn {
    color: var(--color-white); /* White at top */
    border-color: var(--color-white);
    font-weight: 700;
    border-radius: 25px 5px 25px 5px; /* Organic leaf shape */
}

.navbar.scrolled .btn {
    color: var(--color-accent-gold); /* Gold when scrolled */
    border-color: var(--color-accent-gold);
}

.navbar .btn:hover {
    background-color: var(--color-white);
    color: var(--color-accent-gold);
    border-color: var(--color-white);
}

/* Animated Underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-white); /* White at top */
    transition: width 0.4s ease;
}

.navbar.scrolled .nav-link::after {
    background-color: var(--color-accent-gold); /* Gold when scrolled */
}

.nav-link:hover::after {
    width: 100%;
}

/* --- HERO SECTION --- */
.hero {
    margin-top: 0;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    justify-items: center;
    position: relative;
    background: linear-gradient(to right, #d2bd86 35%, #ffffff);
}

.hero-content-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 2;
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.5s; /* Delay for text appearance */
    grid-column: 1;
    padding-bottom: 15vh;
}

.hero-title {
    font-family: 'Cardo', serif;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    color: var(--color-white);
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 10px 20px rgba(0,0,0,0.2);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.hero-image-container {
    grid-column: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

.hero-socials {
    display: flex;
    gap: 2rem;
}

.social-icon {
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 32px;
    height: 32px;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: var(--color-accent-gold);
}

.btn-hero {
    border-color: white;
    color: white;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 25px 5px 25px 5px;
}

.btn-hero:hover {
    background: white;
    color: var(--color-accent-gold);
}

/* --- AUTHORITY / ABOUT SECTION --- */
.authority {
    padding: 0;
    background: linear-gradient(to right, #d2bd86 35%, #ffffff);
    position: relative;
    overflow: hidden;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    height: 100vh;
}

.authority-img-container {
    position: relative;
    height: 100%;
    background-color: var(--color-white);
    border-radius: 300px 60px 300px 60px; /* Organic leaf shape */
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.authority-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.authority-text-container {
    display: flex;
    align-items: center;
    padding: 2rem 5rem;
}

.authority-text {
    max-width: 600px;
}

.authority-text h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.authority-text h3 {
    font-size: 1.3rem;
}

.authority-text p {
    font-family: 'Cardo', serif;
    font-size: 1.1rem; /* Optional: slightly larger for readability with serif */
}

.authority-text b, 
.authority-text strong {
    font-weight: 700;
    color: var(--color-text-main);
}

.badge-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding-top: 2rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-accent-gold);
    line-height: 1;
}

.badge-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* --- MINI GALLERY SECTION --- */
.mini-gallery {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mini-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 50px 10px 50px 10px; /* Organic leaf shape */
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2); /* Light gold glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3; /* Consistent aspect ratio */
}

.mini-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.4); /* Stronger gold glow */
}

.mini-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mini-gallery-item:hover img {
    transform: scale(1.05);
}

/* Custom crop for first item to hide ring */
.gallery-item-1 img {
    object-position: 50% 20%;
    transform: scale(1.1);
}

.gallery-item-1:hover img {
    transform: scale(1.15);
}

.gallery-action {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-subtle {
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--color-text-light);
    font-size: 0.8rem;
    padding: 0.8rem 2.5rem;
    border-radius: 50px 10px 50px 10px; /* Consistent organic shape */
    transition: all 0.3s ease;
}

.btn-subtle:hover {
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
    background: transparent;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.15);
    transform: translateY(-2px);
}

/* Mobile responsiveness for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 1.5rem;
    }
}

/* --- SALON SECTION (Redesigned) --- */
.salon {
    padding: var(--spacing-section) 0;
    background-color: var(--color-white);
}

.salon-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.salon-header-center p {
    margin-top: 1.5rem;
    color: var(--color-text-muted);
    font-family: 'Cardo', serif;
    font-size: 1.1rem;
}

.salon-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #d2bd86 0%, #ffffff 100%);
    
    padding: 3rem 2rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border-radius: 50px 10px 50px 10px; /* Organic leaf shape */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.25);
    border-color: var(--color-accent-gold);
}

.feature-icon {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    display: inline-flex;
    padding: 1.2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--color-white);
    color: var(--color-accent-gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Subtle shadow for visibility on white */
    transform: translateY(-5px);
}

.feature-card h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-main);
    letter-spacing: 0.02em;
}

.feature-card p {
    font-family: 'Cardo', serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.gold-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent-gold);
    border-radius: 50%;
    margin-right: 15px;
    display: inline-block;
    flex-shrink: 0;
}

/* Salon Gallery Collage */
.salon-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius-soft);
    box-shadow: var(--shadow-card);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.main-img {
    grid-column: 1 / 3; /* Spans full width */
    grid-row: 1 / 2;
    border-radius: 100px 100px 4px 4px; /* Arch top */
}

.sub-img-1 {
    border-radius: 4px 4px 4px 50px;
}

.sub-img-2 {
    border-radius: 4px 4px 50px 4px;
}

/* --- MAIN GALLERY SECTION (Infinite Horizontal Scroll) --- */
.main-gallery {
    padding: var(--spacing-section) 0;
    background-color: var(--color-white);
    overflow: hidden; /* Hide scrollbar */
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    margin-top: 3rem;
}

.marquee-container {
    width: 100%;
    overflow-x: auto; /* Allow JS scrolling */
    overflow-y: hidden;
    white-space: nowrap;
    position: relative;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab; /* Indicate draggable/scrollable */
}

.marquee-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.marquee-container:active {
    cursor: grabbing;
}

.marquee-content {
    display: inline-flex;
    /* Animation removed for JS control */
}

.marquee-item {
    width: 400px; /* Fixed width for consistency */
    height: 500px; /* Fixed height */
    margin-right: 2rem;
    border-radius: 50px 10px 50px 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.marquee-item:hover {
    transform: scale(1.02);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-accent-gold);
    border-radius: 50%;
    color: var(--color-accent-gold);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

.gallery-nav:hover {
    background: var(--color-accent-gold);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.gallery-nav.prev {
    left: 30px;
}

.gallery-nav.next {
    right: 30px;
}

.gallery-footer {
    text-align: center;
    margin-top: 4rem;
}

/* Responsive Marquee */
@media (max-width: 768px) {
    .marquee-item {
        width: 280px;
        height: 350px;
        margin-right: 1rem;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-nav.prev {
        left: 10px;
    }

    .gallery-nav.next {
        right: 10px;
    }
}

/* --- DUAL OFFER SECTION --- */
.offer {
    padding: var(--spacing-section) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offer-card {
    position: relative;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.offer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26,26,26,0.8), rgba(26,26,26,0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    transition: background 0.5s ease;
}

.offer-card:hover .offer-bg {
    transform: scale(1.05);
}

.offer-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.offer-title {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.offer-desc {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-slide {
    border-color: var(--color-white);
    color: var(--color-white);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 50px 10px 50px 10px;
}

.offer-card:hover .btn-slide {
    opacity: 1;
    transform: translateY(0);
    background-color: var(--color-white);
    color: var(--color-text-main);
}

.offer-card:hover .offer-desc {
    /* Optional: slight lift for description too */
    transform: translateY(-5px);
    transition: transform 0.5s ease;
}

/* --- TRAINING LIST (Minimal) --- */
.training {
    padding: var(--spacing-section) 0;
    background-color: var(--color-bg-main);
}

.course-list {
    list-style: none;
    margin-top: 3rem;
}

.course-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    transition: padding 0.3s ease;
}

.course-item:hover {
    padding-left: 1rem;
    padding-right: 1rem;
    background: rgba(197, 160, 89, 0.05);
}

.course-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text-main);
}

.course-meta {
    font-size: 0.9rem;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- CONTACT SECTION --- */
.contact {
    padding: var(--spacing-section) 0;
    background-color: var(--color-text-main); /* Dark footer area */
    color: var(--color-bg-main);
}

.contact h2, .contact p {
    color: var(--color-bg-main);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 0;
    color: var(--color-white);
    font-family: var(--font-sans);
    margin-bottom: 2rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--color-accent-gold);
}

.contact-form button {
    background: var(--color-accent-gold);
    color: var(--color-text-main);
    border: none;
    padding: 1rem 3rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    font-weight: 600;
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    /* Navigation */
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--color-accent-gold);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--color-accent-gold);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 2rem;
        flex-direction: column;
        background-color: var(--color-bg-main);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 140px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .nav-links.active {
        left: 0;
    }

    .navbar .nav-link {
        color: var(--color-accent-gold);
        font-size: 1.5rem;
    }

    /* Mobile List Button */
    .mobile-only {
        display: block;
        margin-top: 1rem;
    }

    .navbar .nav-links .btn-mobile-list {
        color: var(--color-accent-gold);
        border-color: var(--color-accent-gold);
        font-size: 1.2rem;
        padding: 1rem 3rem;
    }

    .navbar .nav-links .btn-mobile-list:hover {
        background-color: var(--color-accent-gold);
        color: var(--color-white);
    }
    
    /* Hide navbar button when menu is open */
    .hamburger.active ~ .btn {
        display: none;
    }

    .navbar .btn {
        display: inline-block; /* Show button on mobile */
        padding: 0.5rem 1rem; /* Smaller padding */
        font-size: 0.75rem; /* Smaller font */
        margin-right: 1rem; /* Space between button and hamburger */
        margin-left: auto; /* Push to right */
        order: 2; /* Place before hamburger */
    }

    .hamburger {
        order: 3; /* Place after button */
        margin-left: 0;
    }

    .logo {
        order: 1;
    }

    .navbar {
        height: 100px;
        padding-top: 0;
        /* justify-content: space-between; - handled by margin-left: auto on btn */
        padding-right: 1.5rem; /* Add padding for hamburger */
    }
    
    .logo img {
        height: 70px;
        /* Restore top state styles for mobile */
        background-color: rgba(255,255,255,0.95);
        border-radius: 30px 6px 30px 6px;
        padding: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .navbar.scrolled .logo img {
        height: 50px;
    }

    /* Hero Section */
    .hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
        padding-top: 120px; /* Space for navbar */
        padding-bottom: 0;
        background: linear-gradient(to bottom, #d2bd86 0%, #ffffff 100%);
        align-items: center;
        justify-items: center;
    }

    .hero-content-overlay {
        grid-column: 1;
        order: 1;
        padding-bottom: 2rem;
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-image-container {
        grid-column: 1;
        order: 2;
        height: 50vh;
        width: 100%;
        align-items: flex-end;
        justify-content: center;
    }
    
    .hero-img {
        max-height: 100%;
        max-width: 100%;
    }

    /* Authority Section */
    .authority-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .authority-img-container {
        height: 400px;
        width: 100%;
        border-radius: 0 0 100px 100px; /* Simple curve at bottom */
        order: -1;
    }
    
    .authority-text-container {
        padding: 1rem 1.5rem;
    }
    
    .authority-text {
        max-width: 100%;
    }
    
    .badge-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Salon Section Mobile */
    .salon-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .salon-gallery {
        grid-template-rows: repeat(2, 180px); /* Smaller height for mobile */
    }

    /* Offer Section */
    .offer-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

/* --- MUSIC PLAYER --- */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: 1px solid var(--color-accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
    transition: all 0.3s ease;
    color: var(--color-accent-gold);
}

.music-control:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
    background: var(--color-accent-gold);
    color: var(--color-white);
}

.music-control.playing {
    border-color: var(--color-accent-gold);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(197, 160, 89, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}
