/* Reset & Base */
:root {
    --bg-color: #0b0b0b;
    /* Deep Charcoal/Near Black */
    --text-color: #eaeaea;
    /* Slightly softer white */
    --accent-color: #d4af37;
    /* Champagne Gold */
    --accent-hover: #bfa145;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --spacing-container: 140px 20px;
    --transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    /* Cinematic Easing */
    --transition-hover: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Film Grain Overlay */
.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
.logo,
.footer-brand {
    font-family: var(--font-serif);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.4s ease;
}

/* Typography Refinements */
.section-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--accent-color);
    opacity: 0.9;
    letter-spacing: -0.02em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.5s ease, padding 0.5s ease;
}

.navbar.scrolled {
    background-color: rgba(11, 11, 11, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
}

.logo {
    font-size: 1.4rem;
    letter-spacing: 3px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    transition: opacity 0.3s ease, color 0.3s ease;
}

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

.cta-button-small {
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.cta-button-small:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1);
    transition: transform 3s ease-out;
    /* Initial load zoom handled by JS class or default CSS animation if preferred */
    animation: cinematicZoom 30s infinite alternate cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes cinematicZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 11, 11, 0.2), rgba(11, 11, 11, 0.8));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 1rem;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 2rem;
    font-weight: 300;
    /* Lighter weight */
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 3rem;
    opacity: 0.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-primary {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 1rem 3.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.5s ease;
}

.cta-button-primary:hover {
    background-color: var(--accent-color);
    color: #0b0b0b;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Sections General */
.section {
    padding: var(--spacing-container);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    /* Minimal gap for luxury grid feel */
}

.category-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    filter: brightness(0.6) desaturate(20%);
}

.category-card:hover img {
    transform: scale(1.04);
    filter: brightness(0.4) desaturate(0%);
}

.category-info {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    z-index: 10;
    width: 80%;
}

.category-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 300;
    transform: translateY(0);
    transition: transform var(--transition-hover);
}

.category-info p {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    letter-spacing: 0.5px;
    color: #f0f0f0;
}

.category-card:hover .category-info h3 {
    transform: translateY(-5px);
}

.category-card:hover .category-info p {
    transform: translateY(0);
    opacity: 1;
}

/* Booking Preview - Calm Interaction */
.steps-grid {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.step-card {
    flex: 1;
    padding: 0;
    /* Minimal padding */
    background: transparent;
    opacity: 0.4;
    transition: opacity 1s ease;
    text-align: left;
}

.step-card.active-step {
    opacity: 1;
}

.step-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.step-card p {
    font-size: 1rem;
    opacity: 0.5;
    max-width: 250px;
}

/* Venue Showcase - Cinematic Scroll */
.venue-showcase {
    padding-right: 0;
    /* Allow scroll to hit edge */
    overflow: hidden;
}

.venue-scroll {
    display: flex;
    overflow-x: auto;
    gap: 5vw;
    padding-bottom: 4rem;
    padding-left: 5vw;
    scrollbar-width: none;
    scroll-behavior: smooth;
    /* Basic smooth scroll */
}

.venue-item {
    min-width: 70vw;
    height: 70vh;
    position: relative;
    flex-shrink: 0;
}

.venue-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.1s linear;
    /* For JS parallax */
}

.venue-caption {
    position: absolute;
    bottom: -3rem;
    /* Out of image */
    left: 0;
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--text-color);
    opacity: 0.5;
    transition: opacity 1s ease;
}

.venue-item:hover .venue-caption {
    opacity: 1;
}

/* Footer */
.footer {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-brand {
    font-size: 3rem;
    margin-bottom: 3rem;
    letter-spacing: 5px;
    color: var(--text-color);
    opacity: 0.9;
}

.footer-links a {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 1.5rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.3s;
}

.stagger-3 {
    transition-delay: 0.5s;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .steps-grid {
        flex-direction: column;
        opacity: 1;
    }

    .step-card {
        opacity: 1;
        margin-bottom: 2rem;
    }

    .venue-item {
        min-width: 90vw;
        height: 50vh;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 400px;
    }
}
