/* CSS Stylesheet for Aura Beauty Parlour & Spa */

/* 13. Dynamic Theme Color Palette Variables (Rose Gold / Champagne Luxury) */
[data-theme="dark"] {
    --bg-dark: #0D0B0E;
    --bg-card: #17141A;
    --text-light: #F9F6F0;
    --text-muted: #B5A8B8;
    --accent-primary: #E0A96D; /* Warm Rose Gold / Champagne */
    --accent-glow: rgba(224, 169, 109, 0.22);
    --border: #2A242E;
    --nav-bg: rgba(13, 11, 14, 0.92);
    --input-bg: #110E13;
    --hero-overlay: linear-gradient(180deg, rgba(13,11,14,0.7) 0%, rgba(13,11,14,0.95) 100%);
}

[data-theme="light"] {
    --bg-dark: #FAF6F0;
    --bg-card: #FFFFFF;
    --text-light: #1C1720;
    --text-muted: #4A4050;
    --accent-primary: #C48247; /* Rich Metallic Rose Amber */
    --accent-glow: rgba(196, 130, 71, 0.15);
    --border: #E8DFEB;
    --nav-bg: rgba(250, 246, 240, 0.94);
    --input-bg: #F5EFE6;
    --hero-overlay: linear-gradient(180deg, rgba(250,246,240,0.3) 0%, rgba(250,246,240,0.6) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -0.3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    background: var(--nav-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    width: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.logo span {
    color: var(--accent-primary);
    font-weight: 400;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-primary), #FFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--accent-glow);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.theme-toggle {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--accent-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-call {
    background: var(--accent-primary);
    color: #000;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hamburger {
    display: none;
    font-size: 1.3rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

/* 1. Hero Showcase Section */
.hero {
    position: relative;
    min-height: 88vh;
    /* Clean & High-Res Spa Aesthetic Background Image */
    background-image: url('https://images.unsplash.com/photo-1675034743339-0b0747047727?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem 3rem;
    isolation: isolate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.badge {
    background: var(--accent-glow);
    color: var(--accent-primary);
    padding: 0.4rem 1.3rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent-primary);
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

.hero p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Light Theme Specific Enhancements for Hero Text */
[data-theme="light"] .hero h1 {
    color: #1a1613;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .hero p {
    color: #3b332c;
}

.hero-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.btn-primary {
    background: var(--accent-primary);
    color: #000;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-block;
}

.btn-secondary {
    border: 1.5px solid var(--accent-primary);
    color: var(--text-light);
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #1a1613;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Hero Stats Row & Glass Cards */
.hero-stats-row {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 2rem;
    margin-top: 3.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: blur(15px);
    padding: 1rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

[data-theme="light"] .stat-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(196, 130, 71, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

[data-theme="light"] .stat-number {
    color: #b45309;
    font-weight: 800;
}

[data-theme="light"] .stat-label {
    color: #475569;
    font-weight: 600;
}

/* Titles */
.sub-title {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.section-header {
    margin-bottom: 3rem;
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-top: 0.2rem;
}

.section-header p {
    color: var(--text-muted);
}

/* 2. About Us Bento Card Layout */
.about {
    padding: 6rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bento-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid var(--border);
}

.bento-card.main-story {
    grid-column: span 2;
}

.bento-badge {
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.bento-card h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.bento-icon {
    font-size: 1.8rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.bento-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.why-choose-list {
    list-style: none;
    margin-top: 1rem;
}

.why-choose-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.why-choose-list i {
    color: var(--accent-primary);
}

/* 3. Services / Tabbed Category Layout */
.services {
    padding: 6rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.service-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.service-tabs {
    display: flex;
    gap: 0.8rem;
    background: var(--bg-card);
    padding: 0.5rem;
    border-radius: 40px;
    border: 1px solid var(--border);
    overflow-x: auto;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.88rem;
    white-space: nowrap;
}

.tab-btn.active {
    background: var(--accent-primary);
    color: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.service-card:hover {
    border-color: var(--accent-primary);
}

.card-img {
    height: 230px;
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-img img {
    transform: scale(1.08);
}

.card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--accent-primary);
    padding: 0.2rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    border: 1px solid var(--accent-primary);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 14. Dual-Direction Moving Gallery */
.gallery-sec {
    padding: 5rem 0;
    background: var(--bg-card);
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.gallery-slider {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.track-left {
    animation: scrollLeft 25s linear infinite;
}

.track-right {
    animation: scrollRight 25s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    width: 280px;
    height: 190px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-280px * 4 - 1.5rem * 4)); }
}

@keyframes scrollRight {
    0% { transform: translateX(calc(-280px * 4 - 1.5rem * 4)); }
    100% { transform: translateX(0); }
}

/* 4. Pricing & Combos */
.pricing {
    padding: 6rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.price-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    position: relative;
}

.price-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 35px var(--accent-glow);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: #000;
    padding: 0.2rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 20px;
}

.price-card h3 {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.price-card ul li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card ul i {
    color: var(--accent-primary);
}

/* Contact & Form */
.contact-sec {
    padding: 6rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin: 0.2rem 0 1rem;
}

.info-item {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.info-item i {
    font-size: 1.4rem;
    color: var(--accent-primary);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.2rem;
}

.info-item p, .info-item a {
    color: var(--text-muted);
    text-decoration: none;
}

.contact-form-card {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 18px;
    border: 1px solid var(--border);
}

.contact-form-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-light);
    outline: none;
}

.form-response {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    display: none;
    font-size: 0.9rem;
    text-align: center;
}

/* Floating Actions */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
}

.floating-call {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background: var(--accent-primary);
    color: #000;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
}

/* Footer */
footer {
    background: var(--bg-dark);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.brand-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 1rem 0;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-primary);
    color: #000;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col a, .footer-col ul li {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.copyright {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .bento-grid, .services-grid, .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card.main-story {
        grid-column: span 2;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.7rem 4%;
    }

    .hamburger { 
        display: block; 
    }

    .logo {
        font-size: 1.2rem;
        gap: 5px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .btn-call {
        padding: 0.45rem 0.8rem;
        font-size: 0.78rem;
    }

    .theme-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .nav-actions {
        gap: 6px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        flex-direction: column;
        padding: 1.5rem 0;
        gap: 1.2rem;
        text-align: center;
        border-bottom: 2px solid var(--accent-primary);
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .nav-links.active { 
        display: flex; 
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .bento-grid, .services-grid, .pricing-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .bento-card.main-story {
        grid-column: span 1;
    }
}

@media (max-width: 400px) {
    .btn-call span {
        display: none;
    }
    .logo {
        font-size: 1rem;
    }
}

/* 2. Light Theme - Zero Blur / Super Sharp Image Overlay */
[data-theme="light"] .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45) !important; /* Soft minimal tint so text is readable */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 1;
}

/* 3. Dark Theme - Sharp Contrast Overlay */
[data-theme="dark"] .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 11, 14, 0.45) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 1;
}

/* 4. Text Sharpness Fixes */
[data-theme="light"] .hero h1 {
    color: #0f0c08 !important;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.15) !important;
}

[data-theme="light"] .hero p {
    color: #211c16 !important;
    font-weight: 600 !important;
}
/* Mobile Screens (768px and below) */
@media (max-width: 768px) {

    /* Book Glow Button ko Mobile par zabardasti Hide karne ke liye */
    .btn-call {
        display: none !important;
    }

    /* Right side controls (Theme Toggle + Hamburger) ko clean ek line me rakhne ke liye */
    .nav-controls {
        display: flex !important;
        align-items: center;
        gap: 0.8rem;
    }

    /* Hamburger icon ko visible karne ke liye */
    .hamburger-btn {
        display: block !important;
    }
}