:root {
    --bg: #0a0a0a;
    --bg-alt: #111111;
    --card: #161616;
    --border: #222222;
    --text: #f5f5f5;
    --text-muted: #cccccc;
    --accent: #d4af37;
    --accent-soft: rgba(212, 175, 55, 0.1);
    --accent-glow: rgba(212, 175, 55, 0.25);
    --gold-dark: #b8950b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-logo span {
    color: var(--text);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: color 0.4s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.nav-cta {
    background: transparent;
    color: var(--accent) !important;
    padding: 0.7rem 1.8rem;
    border: 1px solid var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.65rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent);
    color: var(--bg) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10000;
    position: relative;
}

.hamburger span {
    width: 24px;
    height: 1px;
    background: var(--text);
    transition: all 0.4s ease;
}

/* ===== PAGE HERO ===== */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('https://images.pexels.com/photos/30937363/pexels-photo-30937363.jpeg?auto=compress&w=1920&q=80') center/cover no-repeat,
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.85) 100%);
    opacity: 0.35;
    pointer-events: none;
}

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

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.page-hero h1 .gold {
    color: var(--accent);
    font-style: italic;
    background: linear-gradient(
        90deg,
        var(--accent) 0%,
        #f5e6a3 25%,
        var(--accent) 50%,
        #f5e6a3 75%,
        var(--accent) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.page-hero p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== SECTION STYLES ===== */
section {
    padding: 8rem 5%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header .overline {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
}

.section-header .gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 2rem auto 0;
}


/* ===== RULES GRID ===== */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.rule-item {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rule-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.rule-item .number {
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.rule-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rule-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

/* ===== FAQ ===== */
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== EVENTS LIST ===== */
.event-listing {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .event-listing {
        padding: 1.5rem;
        margin: 0 1rem 2rem;
    }
}

.event-listing:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.event-listing.featured {
    border-color: rgba(212, 175, 55, 0.2);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, var(--card) 100%);
}

.event-listing .badge {
    display: inline-block;
    background: transparent;
    color: var(--accent);
    padding: 0.4rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.55rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.event-listing h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-listing .event-date {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.event-listing .event-host {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.event-listing p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.event-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.event-details-grid .detail-group h5 {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
}

.event-details-grid .detail-group p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-pricing {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

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

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(212, 175, 55, 0.03) 50%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons a {
    min-width: 280px;
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--accent);
    color: var(--bg);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--gold-dark);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ===== FOOTER ===== */
footer {
    padding: 6rem 5% 2.5rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
    align-items: start;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    margin-top: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

.footer-col h4 {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: color 0.4s ease;
    font-weight: 300;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 5%;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 9999;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        font-size: 0.8rem;
        letter-spacing: 0.25em;
    }
    .hamburger {
        display: flex;
    }
    .rules-grid {
        grid-template-columns: 1fr;
    }
    .event-details-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        text-align: left;
    }
    .footer-brand p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    .footer-brand a {
        display: block;
        padding: 0.3rem 0;
    }
    .page-hero {
        min-height: 30vh;
        padding-top: 8rem;
    }
    .payment-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .payment-buttons a {
        width: 100% !important;
        height: 50px !important;
        min-height: 50px !important;
        max-height: 50px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }