/* 
    Divya Spa - Premium Theme 
    Colors: Dark Burgundy, Black, Gold
*/

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --burgundy: #4a0410;
    --burgundy-light: #6b0c1e;
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --text-main: #f0f0f0;
    --text-muted: #aaaaaa;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 15px;
}

.gold-text {
    color: var(--gold);
}

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

.mt-4 { margin-top: 2rem; }

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

.section {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f3e5ab 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.glow-effect {
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
    100% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.7); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    margin: 5px 0;
    transition: 0.4s;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('../images/hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,5,5,0.9) 0%, rgba(74,4,16,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Trust Strip */
.trust-strip {
    background: var(--burgundy);
    border-bottom: 1px solid var(--gold);
    border-top: 1px solid var(--gold);
    padding: 15px 0;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.trust-text {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: block;
}

.image-accent {
    position: absolute;
    inset: -15px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
    transform: translate(20px, 20px);
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-img-wrapper {
    height: 240px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.card-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    padding: 40px 30px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.feature-box:hover {
    background: rgba(74,4,16,0.3);
    border-color: var(--gold);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    color: var(--white);
    margin-bottom: 15px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Ambience Banner */
.ambience-banner {
    padding: 120px 0;
    position: relative;
    background: url('../images/hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.banner-content {
    position: relative;
    z-index: 10;
}

.banner-title {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.banner-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 40px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(255, 255, 255, 0.05);
}

.testimonials-grid::-webkit-scrollbar {
    height: 6px;
}

.testimonials-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.testimonial-card {
    background: transparent;
    padding: 30px 40px;
    border-radius: 0;
    position: relative;
    border-top: none;
    border-left: 2px solid var(--gold);
    flex: 0 0 calc(50% - 15px);
    scroll-snap-align: center;
    text-align: left;
    min-width: 350px;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 85%;
        min-width: unset;
        padding: 25px 20px;
    }
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    z-index: 0;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.client-name {
    color: var(--white);
    margin-bottom: 5px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.stars {
    color: var(--gold);
    font-size: 1rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(to bottom, var(--bg-dark), var(--burgundy));
    border-top: 1px solid rgba(212,175,55,0.2);
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-tagline {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gold);
    color: #000;
    text-align: center;
    padding: 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}

/* Animations */
.reveal-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s ease-out;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: 0.8s ease-out;
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: 0.8s ease-out;
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: 0.8s ease-out;
}

.reveal-bottom.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-image-wrapper {
        margin-bottom: 30px;
    }
    .image-accent {
        display: none;
    }
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        border-left: 1px solid rgba(212, 175, 55, 0.1);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .nav-links a {
        font-size: 1.2rem;
    }
    .nav-cta {
        margin-top: 20px;
    }
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: 2.8rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .trust-container {
        justify-content: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    /* Mobile First Requirements applied */
    .mobile-sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 60px; /* space for sticky cta */
    }
    .section-title {
        font-size: 2.3rem;
    }
    .banner-title, .cta-title {
        font-size: 2.5rem;
    }
}
