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

:root {
    --primary: #c9a227;
    --primary-dark: #b8911f;
    --primary-light: #d4b237;
    --accent: #8b1a1a;
    --accent-light: #a52525;
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #ffffff;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --gold: #c9a227;
    --red: #8b1a1a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s, visibility 0.6s;
    overflow: hidden;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.club-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: clubLightPulse 4s ease-in-out infinite;
}
.light-gold {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,162,39,0.25) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}
.light-red {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139,26,26,0.3) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    animation-delay: 1s;
}
.light-gold-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201,162,39,0.18) 0%, transparent 70%);
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}
.light-red-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(139,26,26,0.2) 0%, transparent 70%);
    top: 15%;
    right: 8%;
    animation-delay: 1.5s;
}
.light-gold-center {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation-delay: 0.5s;
    animation-duration: 5s;
}
.light-red-top {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(139,26,26,0.18) 0%, transparent 65%);
    top: -60px;
    right: 25%;
    animation-delay: 2.5s;
}
.club-beam {
    position: absolute;
    width: 3px;
    height: 120%;
    opacity: 0;
    filter: blur(6px);
    transform-origin: top center;
    animation: beamSweep 5s ease-in-out infinite;
}
.beam-1 {
    background: linear-gradient(to bottom, rgba(201,162,39,0.5), transparent 80%);
    top: -10%;
    left: 20%;
    transform: rotate(-15deg);
    animation-delay: 0s;
    animation-duration: 4.5s;
}
.beam-2 {
    background: linear-gradient(to bottom, rgba(139,26,26,0.45), transparent 80%);
    top: -10%;
    right: 22%;
    transform: rotate(12deg);
    animation-delay: 1.2s;
    animation-duration: 5s;
}
.beam-3 {
    background: linear-gradient(to bottom, rgba(201,162,39,0.35), transparent 75%);
    top: -10%;
    left: 45%;
    transform: rotate(3deg);
    animation-delay: 2.5s;
    animation-duration: 5.5s;
}
.beam-4 {
    background: linear-gradient(to bottom, rgba(139,26,26,0.3), transparent 75%);
    top: -10%;
    right: 40%;
    transform: rotate(-8deg);
    animation-delay: 3.5s;
    animation-duration: 4s;
}
@keyframes beamSweep {
    0%, 100% { opacity: 0; transform: rotate(var(--r, -15deg)) scaleY(1); }
    20% { opacity: 0.6; }
    50% { opacity: 0.9; transform: rotate(calc(var(--r, -15deg) + 20deg)) scaleY(1.05); }
    80% { opacity: 0.5; }
}
.club-spot {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    animation: spotPulse 3s ease-in-out infinite;
}
.spot-1 {
    background: radial-gradient(circle, rgba(201,162,39,0.4) 0%, transparent 70%);
    top: 30%;
    left: 15%;
    animation-delay: 0.8s;
}
.spot-2 {
    background: radial-gradient(circle, rgba(139,26,26,0.4) 0%, transparent 70%);
    bottom: 25%;
    right: 12%;
    animation-delay: 1.8s;
}
@keyframes spotPulse {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 0.7; transform: scale(1.3); }
}
.club-laser {
    position: absolute;
    height: 2px;
    width: 100%;
    opacity: 0;
    filter: blur(1px);
    animation: laserSweep 6s linear infinite;
}
.laser-gold {
    background: linear-gradient(90deg, transparent 0%, rgba(201,162,39,0.6) 30%, rgba(201,162,39,0.8) 50%, rgba(201,162,39,0.6) 70%, transparent 100%);
    top: 35%;
    transform: rotate(-8deg);
    animation-delay: 0.5s;
}
.laser-red {
    background: linear-gradient(90deg, transparent 0%, rgba(139,26,26,0.5) 30%, rgba(139,26,26,0.7) 50%, rgba(139,26,26,0.5) 70%, transparent 100%);
    top: 60%;
    transform: rotate(5deg);
    animation-delay: 2s;
}
@keyframes laserSweep {
    0% { opacity: 0; transform: rotate(-8deg) translateX(-30%); }
    15% { opacity: 0.7; }
    50% { opacity: 0.9; transform: rotate(8deg) translateX(30%); }
    65% { opacity: 0.6; }
    100% { opacity: 0; transform: rotate(-8deg) translateX(-30%); }
}
@keyframes clubLightPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.15); }
}
.preloader-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.preloader-logo {
    height: 100px;
    margin-bottom: 25px;
    animation: pulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(201,162,39,0.3));
}
.preloader-bar {
    width: 220px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}
.preloader-bar div {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
    border-radius: 3px;
    animation: loading 2.5s ease-in-out forwards;
}
@keyframes loading {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
}

/* Cheers Glasses */
.cheers-glasses {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    position: relative;
    height: 120px;
}
.glass {
    width: 80px;
    height: 120px;
    position: relative;
    transform-origin: bottom center;
}
.glass svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5)) drop-shadow(0 0 25px rgba(180,220,255,0.08));
}
.glass::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 35px;
    background: radial-gradient(ellipse, rgba(180,220,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: coldMist 3s ease-in-out infinite alternate;
}
@keyframes coldMist {
    0% { opacity: 0.2; transform: translateX(-50%) scale(1); }
    100% { opacity: 0.5; transform: translateX(-50%) scale(1.3); }
}

/* Condensation drops */
.condensation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.drop {
    position: absolute;
    width: 3px;
    height: 6px;
    background: rgba(200,230,255,0.35);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: drip 3s ease-in infinite;
}
.drop.d1 { left: 22%; top: 55%; animation-delay: 0s; }
.drop.d2 { left: 70%; top: 48%; animation-delay: 1.2s; }
.drop.d3 { left: 35%; top: 62%; animation-delay: 2.1s; }
@keyframes drip {
    0% { opacity: 0; transform: translateY(0) scaleY(1); }
    10% { opacity: 0.6; transform: translateY(0) scaleY(1); }
    80% { opacity: 0.3; transform: translateY(18px) scaleY(1.4); }
    100% { opacity: 0; transform: translateY(24px) scaleY(0.5); }
}

.glass-left {
    animation: clinkLeft 2.2s ease-in-out infinite;
    transform: rotate(-12deg);
}
.glass-right {
    animation: clinkRight 2.2s ease-in-out infinite;
    transform: rotate(12deg);
}
@keyframes clinkLeft {
    0%, 100% { transform: rotate(-12deg) translateX(0); }
    30% { transform: rotate(6deg) translateX(16px); }
    45% { transform: rotate(3deg) translateX(12px); }
    65% { transform: rotate(-15deg) translateX(-2px); }
}
@keyframes clinkRight {
    0%, 100% { transform: rotate(12deg) translateX(0); }
    30% { transform: rotate(-6deg) translateX(-16px); }
    45% { transform: rotate(-3deg) translateX(-12px); }
    65% { transform: rotate(15deg) translateX(2px); }
}

/* Clink sparks */
.clink-spark {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    pointer-events: none;
    z-index: 5;
}
.spark-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: sparkPop 2.2s ease-in-out infinite;
}
.spark-dot.s1 { width: 5px; height: 5px; top: 10px; left: 14px; background: var(--gold); animation-delay: 0s; }
.spark-dot.s2 { width: 3px; height: 3px; top: 3px; left: 22px; background: #fff; animation-delay: 0.05s; }
.spark-dot.s3 { width: 4px; height: 4px; top: 14px; left: 28px; background: var(--gold); animation-delay: 0.1s; }
.spark-dot.s4 { width: 3px; height: 3px; top: 1px; left: 18px; background: var(--red); animation-delay: 0.02s; }
.spark-dot.s5 { width: 2px; height: 2px; top: 16px; left: 10px; background: #fff; animation-delay: 0.08s; }
.spark-dot.s6 { width: 4px; height: 4px; top: 6px; left: 30px; background: var(--gold); animation-delay: 0.06s; }
.spark-dot.s7 { width: 2px; height: 2px; top: 18px; left: 20px; background: var(--red); animation-delay: 0.12s; }
@keyframes sparkPop {
    0%, 28%, 58%, 100% { opacity: 0; transform: scale(0) translateY(0); }
    35% { opacity: 1; transform: scale(2.5) translateY(-8px); }
    50% { opacity: 0.3; transform: scale(0.5) translateY(-16px); }
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease, opacity 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    transition: transform 0.08s ease;
    transform: translate(-50%, -50%);
}

.cursor.active {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    margin: 0 auto;
    border-radius: 3px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--light);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--dark);
}
.nav-admin {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--gray-light);
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}
.nav-admin:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,162,39,0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--light);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--darker);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-link {
    color: var(--light);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--gold);
}

.mobile-social {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.mobile-social a {
    color: var(--gray-light);
    font-size: 1.5rem;
    transition: var(--transition);
}

.mobile-social a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite;
}

@keyframes heroZoom {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(5, 5, 5, 0.9) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(139, 26, 26, 0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    display: flex;
    justify-content: center;
    padding: 10px 25px;
    background: rgba(5, 5, 5, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.5);
    border-radius: 30px;
    margin: 0 auto 35px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-logo {
    max-width: 350px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 0 40px rgba(139, 26, 26, 0.6)) drop-shadow(0 0 80px rgba(139, 26, 26, 0.3)) drop-shadow(0 0 120px rgba(201, 162, 39, 0.15));
    position: relative;
    z-index: 2;
}

.tagline {
    font-size: 1.2rem;
    color: var(--light);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 45px;
    text-shadow: 0 0 20px rgba(139, 26, 26, 0.3);
}

/* Countdown */
.opening-countdown {
    margin-bottom: 50px;
    padding: 30px 40px;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(139, 26, 26, 0.5);
    border-radius: 15px;
    display: inline-block;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(139, 26, 26, 0.2);
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 25px;
    background: rgba(139, 26, 26, 0.15);
    border: 1px solid rgba(139, 26, 26, 0.4);
    border-radius: 10px;
    min-width: 90px;
}

.countdown-item span {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.countdown-item label {
    font-size: 0.75rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.countdown-date {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(139, 26, 26, 0.4);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
    transform: translateY(-3px);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn-sm {
    padding: 12px 25px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: fadeInUp 1.5s ease-in-out infinite alternate;
}

.mouse {
    width: 30px;
    height: 48px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.4), 0 0 30px rgba(201, 162, 39, 0.15);
}

.wheel {
    width: 5px;
    height: 10px;
    background: var(--gold);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(201, 162, 39, 0.6);
}

@keyframes scrollWheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(14px); opacity: 0.2; }
}

.scroll-indicator span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

@keyframes fadeInUp {
    0% { opacity: 0.5; transform: translateX(-50%) translateY(5px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(-5px); }
}

/* Marquee */
.marquee-section {
    padding: 20px 0;
    background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
    overflow: hidden;
}

.marquee {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    padding: 0 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* About */
.about {
    background: var(--darker);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid var(--darker);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--gold);
    color: var(--dark);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(201, 162, 39, 0.4);
}

.experience-badge .number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-text {
    color: var(--gray-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(201, 162, 39, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

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

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Parallax Section */
.parallax-section {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    z-index: 0;
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.parallax-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--light);
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
}

.parallax-content p {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Services */
.services {
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(139, 26, 26, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(201, 162, 39, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    background: var(--red);
    color: var(--light);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gold);
    transform: rotateY(180deg);
}

.service-card:hover .service-icon-wrapper i {
    color: var(--dark);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--light);
}

.service-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-link:hover {
    gap: 15px;
}

/* Gallery */
.gallery {
    background: var(--darker);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--gray-light);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.gallery-overlay span {
    color: var(--light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--dark);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Events */
.events {
    background: var(--dark);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.event-card.featured {
    border-color: var(--gold);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 20px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.event-content {
    padding: 30px;
}

.event-date {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.event-date .day {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--light);
}

.event-content p {
    color: var(--gray-light);
    margin-bottom: 20px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-light);
}

.event-meta i {
    color: var(--gold);
}

/* Video Section */
.video-section {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 30px;
    transition: var(--transition);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.5); }
    50% { box-shadow: 0 0 0 20px rgba(201, 162, 39, 0); }
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.video-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--light);
}

/* Team */
.team {
    background: var(--darker);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.team-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    transition: var(--transition);
}

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

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(201, 162, 39, 0.9), transparent);
    display: flex;
    justify-content: center;
    gap: 15px;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-social a {
    color: var(--dark);
    font-size: 1.2rem;
    transition: var(--transition);
}

.team-social a:hover {
    transform: scale(1.2);
}

.team-card:hover .team-image {
    border-color: var(--primary-dark);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--light);
}

.team-card span {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(139, 26, 26, 0.1));
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.newsletter-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--light);
}

.newsletter-text p {
    color: var(--gray-light);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 3px;
    color: var(--light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

/* Contact */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

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

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--light);
}

.contact-details p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 5px;
    color: var(--light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a227' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select option {
    background: var(--dark);
    color: var(--light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map */
.map-section {
    height: 400px;
}

#map {
    width: 100%;
    height: 100%;
    background: var(--darker);
}

/* Footer */
.footer {
    background: var(--darker);
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-top {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-light);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--light);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-light);
}

.footer-contact i {
    color: var(--gold);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-img-secondary {
        right: 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .parallax-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .tagline {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }
    
    .countdown-item span {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .parallax-content h2 {
        font-size: 2rem;
    }
    
    .parallax-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        padding: 6px 15px;
    }
    
    .hero-badge span {
        font-size: 0.75rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .event-image {
        height: 200px;
    }
    
    .event-content {
        padding: 20px;
    }
    
    .team-image {
        width: 150px;
        height: 150px;
    }
    
    .cheers-glasses {
        height: 90px;
    }
    .glass {
        width: 60px;
        height: 90px;
    }
    .preloader-logo {
        height: 75px;
    }
}

/* ===== PACKAGES SECTION ===== */
.section-subtitle {
    font-size: 1rem;
    color: var(--gray-light);
    margin-top: 10px;
    letter-spacing: 1px;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.package-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.package-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201,162,39,0.1) 0%, rgba(139,26,26,0.05) 100%);
}
.package-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
}
.package-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--gold);
    color: var(--dark);
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}
.package-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}
.package-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--light);
    margin-bottom: 15px;
}
.package-price {
    margin-bottom: 10px;
}
.package-price .price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--font-heading);
}
.package-price .per {
    font-size: 0.85rem;
    color: var(--gray-light);
}
.package-time {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.package-time i {
    color: var(--gold);
    margin-right: 5px;
}
.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex: 1;
}
.package-features li {
    padding: 8px 0;
    color: var(--gray-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.package-features li i.fa-check {
    color: var(--gold);
    font-size: 0.75rem;
}
.package-features li i.fa-star {
    color: var(--gold);
    font-size: 0.85rem;
}
.package-features li i.fa-info-circle {
    color: var(--gold);
    font-size: 0.75rem;
}
.morning-banner {
    margin-top: 50px;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(139,26,26,0.15) 0%, rgba(201,162,39,0.1) 100%);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 25px;
}
.morning-icon {
    width: 60px;
    height: 60px;
    background: rgba(201,162,39,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}
.morning-info h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.morning-info p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
}
.morning-info strong {
    color: var(--light);
}
.instant-info-banner {
    margin-top: 20px;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(255,165,0,0.1) 0%, rgba(255,165,0,0.03) 100%);
    border: 1px solid rgba(255,165,0,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 25px;
}

/* ===== CALENDAR ===== */
.calendar-wrapper {
    max-width: 800px;
    margin: 50px auto 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 35px;
}
.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.calendar-nav h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--light);
    letter-spacing: 2px;
}
.cal-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 8px;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}
.cal-nav-btn:hover {
    background: var(--gold);
    color: var(--dark);
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}
.cal-day-name {
    text-align: center;
    padding: 10px 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}
.cal-day {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--gray-light);
    position: relative;
    transition: var(--transition);
}
.cal-day.empty {
    background: transparent;
}
.cal-day.past {
    opacity: 0.3;
}
.cal-day.today {
    background: rgba(201,162,39,0.2);
    border: 1px solid var(--gold);
}
.cal-day.today .cal-date {
    color: var(--gold);
    font-weight: 700;
}
.cal-day.available {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
}
.cal-day.available:hover {
    background: rgba(201,162,39,0.1);
    border-color: rgba(201,162,39,0.3);
    transform: scale(1.05);
}
.cal-day.occupied {
    background: rgba(139,26,26,0.15);
    border: 1px solid rgba(139,26,26,0.3);
    cursor: default;
}
.cal-day.instant {
    background: rgba(255,165,0,0.08);
    border: 1px solid rgba(255,165,0,0.3);
}
.cal-day.instant:hover {
    background: rgba(255,165,0,0.15);
    border-color: rgba(255,165,0,0.5);
}
.cal-date {
    font-weight: 600;
    font-size: 0.9rem;
}
.cal-day.occupied .cal-date {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
}
.cal-booked-name {
    font-size: 0.55rem;
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-light);
}
.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}
.legend-dot.available {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.legend-dot.occupied {
    background: rgba(139,26,26,0.3);
    border: 1px solid rgba(139,26,26,0.5);
}
.legend-dot.instant {
    background: rgba(255,165,0,0.3);
    border: 1px solid rgba(255,165,0,0.5);
}
.legend-dot.today {
    background: rgba(201,162,39,0.3);
    border: 1px solid var(--gold);
}

/* ===== BOOKING MODALS ===== */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.booking-modal.active {
    display: flex;
}
.booking-modal-content {
    background: var(--darker);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.booking-form-modal {
    max-width: 600px;
}
.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gray-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.modal-close-btn:hover {
    color: var(--light);
    background: rgba(255,255,255,0.1);
}
.booking-modal-content h2 {
    font-family: var(--font-heading);
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.modal-subtitle {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.modal-subtitle strong {
    color: var(--gold);
}
.modal-info {
    color: var(--gray-light);
    font-size: 0.85rem;
    line-height: 1.6;
}
.modal-min-advance {
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-align: center;
}
.booking-form-modal label {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.booking-form-modal input,
.booking-form-modal select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--light);
    font-size: 0.9rem;
    transition: var(--transition);
    margin-bottom: 15px;
    font-family: var(--font-body);
}
.booking-form-modal input:focus,
.booking-form-modal select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(201,162,39,0.15);
}
.booking-form-modal input::placeholder {
    color: rgba(255,255,255,0.3);
}
.booking-form-modal select option {
    background: var(--darker);
    color: var(--light);
}
.booking-success {
    text-align: center;
}
.success-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.success-note {
    color: var(--gray-light);
    font-size: 0.85rem;
    margin-top: 15px;
}
#successInfo {
    color: var(--light);
    font-size: 0.95rem;
    line-height: 1.8;
}
.success-advance {
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 20px 0;
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: left;
}
.success-advance i {
    color: var(--gold);
    margin-right: 8px;
}
.success-rules {
    background: rgba(139,26,26,0.1);
    border: 1px solid rgba(139,26,26,0.3);
    border-radius: 10px;
    padding: 12px 20px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--red);
    text-align: left;
}
.success-rules i {
    margin-right: 8px;
}
.booking-addons-section {
    margin: 20px 0 15px;
    padding: 20px;
    background: rgba(201,162,39,0.05);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 10px;
}
.booking-addons-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.booking-addons-label i {
    margin-right: 6px;
}
.booking-addon-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.booking-addon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.booking-addon:hover {
    border-color: rgba(201,162,39,0.3);
    background: rgba(201,162,39,0.05);
}
.booking-addon input[type="checkbox"] {
    display: none;
}
.addon-check {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
}
.booking-addon input[type="checkbox"]:checked + .addon-check {
    background: var(--gold);
    border-color: var(--gold);
}
.booking-addon input[type="checkbox"]:checked + .addon-check::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--dark);
}
.addon-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.addon-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light);
}
.addon-price {
    color: var(--gold);
    font-weight: 700;
}
.addon-desc {
    font-size: 0.75rem;
    color: var(--gray-light);
}
.booking-rules {
    margin: 15px 0 20px;
    padding: 12px 18px;
    background: rgba(139,26,26,0.1);
    border: 1px solid rgba(139,26,26,0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.booking-rules i {
    color: var(--red);
    margin-right: 8px;
}
.instant-banner {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 18px;
    background: rgba(255,165,0,0.1);
    border: 1px solid rgba(255,165,0,0.4);
    border-radius: 10px;
    margin-bottom: 20px;
}
.instant-banner i {
    font-size: 1.3rem;
    color: #ffa500;
    margin-top: 2px;
    flex-shrink: 0;
}
.instant-banner strong {
    color: #ffa500;
    display: block;
    margin-bottom: 4px;
}
.instant-banner p {
    color: var(--gray-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}
.instant-form-note {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: rgba(255,165,0,0.1);
    border: 1px solid rgba(255,165,0,0.4);
    border-radius: 10px;
    margin-bottom: 15px;
}
.instant-form-note i {
    font-size: 1.5rem;
    color: #ffa500;
}
.instant-form-note strong {
    display: block;
    color: #ffa500;
    font-size: 0.85rem;
    margin-bottom: 4px;
}
.instant-phone {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light);
    text-decoration: none;
    padding: 8px 18px;
    background: #ffa500;
    border-radius: 8px;
    transition: var(--transition);
}
.instant-phone:hover {
    background: #e69500;
    transform: scale(1.03);
}
.price-instant-note {
    padding: 8px 12px;
    background: rgba(255,165,0,0.1);
    border: 1px solid rgba(255,165,0,0.2);
    border-radius: 6px;
    font-size: 0.8rem;
    color: #ffa500;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
}
.price-instant-note i {
    margin-right: 5px;
}
.booking-price-summary {
    margin: 15px 0 20px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--gray-light);
}
.price-row.price-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light);
}
.price-row.price-total span:last-child {
    color: var(--gold);
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}
.price-row.price-advance {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}
.price-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 8px 0;
}

/* ===== END RESPONSIVE ===== */
