/* ==========================================================================
   CSS Variables & Typography
   ========================================================================== */
:root {
    /* Color Palette */
    --color-red: #A6192E;
    --color-gold: #C49C6C;
    --color-black: #000000;
    --color-black-light: #111111;
    --color-black-lighter: #222222;
    --color-white: #FFFFFF;
    --color-white-dim: #DDDDDD;

    /* Fonts */
    --font-stencil: 'Black Ops One', system-ui, sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
}

/* ==========================================================================
   Reset & Global Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography Classes */
.font-stencil {
    font-family: var(--font-stencil);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.font-body {
    font-family: var(--font-body);
}

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

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

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

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

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

h1,
h2,
h3,
h4 {
    margin-bottom: var(--space-sm);
    line-height: 1.1;
}

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

/* ==========================================================================
   Texture & Atmosphere (Gritty, Dark, Raw)
   ========================================================================== */
/* Subtle CSS Noise */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Vignette for dark cinematic feel */
.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
}

/* Blood Splatter overlay (using multiple radial gradients as abstract splatters) */
.blood-splatter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    opacity: 0.15;
    background:
        radial-gradient(circle at 10% 20%, var(--color-red) 0%, transparent 10%),
        radial-gradient(circle at 80% 90%, var(--color-red) 0%, transparent 15%),
        radial-gradient(circle at 90% 30%, var(--color-red) 0%, transparent 8%),
        radial-gradient(circle at 30% 80%, var(--color-red) 0%, transparent 12%);
    filter: blur(4px) contrast(200%);
}

.section-dark {
    background-color: var(--color-black);
    position: relative;
    z-index: 1;
}

.section-texture {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(166, 25, 46, 0.85)),
        url("assets/texture_bg.png") center/cover no-repeat;
    background-color: var(--color-black-light);
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

.section-texture-red {
    background: linear-gradient(to bottom, rgba(166, 25, 46, 0.9), rgba(0, 0, 0, 1));
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-stencil);
    font-size: 1.25rem;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Button distress effect */
.btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.2'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

.btn:active {
    transform: translateY(2px);
}

.btn-red {
    background-color: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

.btn-red:hover {
    background-color: transparent;
    color: var(--color-red);
    box-shadow: inset 0 0 10px rgba(166, 25, 46, 0.5);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

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

.btn-black {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.btn-black:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 1000;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--color-red);
}

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

.nav-brand {
    font-size: 2rem;
    text-shadow: 2px 2px 0px var(--color-red);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-white);
    font-family: var(--font-stencil);
    font-size: 1.2rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-red);
    transition: width 0.3s ease;
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    /* offset for nav */
    position: relative;
    overflow: hidden;
}

/* Background image handling for hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.95)),
        url("assets/hero_bg.png") center/cover no-repeat;
    background-color: #0a0a0a;
    z-index: -1;
}

.hero-container {
    max-width: 800px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Official Logo */
.official-logo {
    width: 700px;
    height: 700px;
    max-width: 90vw;
    max-height: 90vw;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: var(--space-md);
    box-shadow: 0 0 50px rgba(166, 25, 46, 0.8),
        0 0 30px rgba(196, 156, 108, 0.5);
    border: 3px solid var(--color-gold);
    /* Distressed border effect */
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.05' numOctaves='3' result='noise'/%3E%3CfeDisplacementMap in='SourceGraphic' in2='noise' scale='5' xChannelSelector='R' yChannelSelector='G'/%3E%3C/filter%3E%3Ccircle cx='50' cy='50' r='48' filter='url(%23noise)' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.05' numOctaves='3' result='noise'/%3E%3CfeDisplacementMap in='SourceGraphic' in2='noise' scale='5' xChannelSelector='R' yChannelSelector='G'/%3E%3C/filter%3E%3Ccircle cx='50' cy='50' r='48' filter='url(%23noise)' fill='black'/%3E%3C/svg%3E");
    mask-size: cover;
    -webkit-mask-size: cover;
}

.hero-title {
    font-size: 7rem;
    text-shadow: 6px 6px 0px rgba(166, 25, 46, 0.6),
        -3px -3px 0px rgba(0, 0, 0, 0.9);
    margin-bottom: var(--space-sm);
    line-height: 0.9;
    letter-spacing: 2px;
}

.prize-banner {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 0.75rem 2rem;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    transform: rotate(-2deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    border: 2px solid #ff3333;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1) rotate(-2deg);
        box-shadow: 0 0 0 0 rgba(166, 25, 46, 0.7);
    }

    70% {
        transform: scale(1.05) rotate(-2deg);
        box-shadow: 0 0 0 15px rgba(166, 25, 46, 0);
    }

    100% {
        transform: scale(1) rotate(-2deg);
        box-shadow: 0 0 0 0 rgba(166, 25, 46, 0);
    }
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: var(--space-xl);
    background: transparent;
    padding: 0;
    border: none;
    text-align: center;
}

.event-date {
    font-size: 3.5rem;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0;
}

.event-location {
    font-size: 4.5rem;
    text-shadow: 4px 4px 0px rgba(166, 25, 46, 0.8), -2px -2px 0px rgba(0, 0, 0, 1);
    letter-spacing: 3px;
    line-height: 1;
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-bottom: 3px solid var(--color-gold);
    border-right: 3px solid var(--color-gold);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%) rotate(45deg);
    }

    40% {
        transform: translateY(-20px) translateX(-50%) rotate(45deg);
    }

    60% {
        transform: translateY(-10px) translateX(-50%) rotate(45deg);
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid var(--color-red);
}

.section-title {
    font-size: 4.5rem;
    margin-bottom: var(--space-lg);
    text-shadow: 3px 3px 0px #000;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: var(--space-md);
    color: var(--color-white-dim);
    border-left: 4px solid var(--color-gold);
    padding-left: 1.5rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-text {
    font-size: 1.1rem;
    color: #bbb;
    text-align: left;
    padding-left: 1.5rem;
}



/* ==========================================================================
   Tickets Section
   ========================================================================== */
.ticket-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.ticket-card {
    background-color: var(--color-white-dim);
    padding: 2.5rem 1.5rem;
    flex: 1 1 300px;
    max-width: 400px;
    position: relative;
    color: var(--color-black);
    border: 4px solid var(--color-black);
    box-shadow: 10px 10px 0px var(--color-black);
    display: flex;
    flex-direction: column;
}

.ticket-card.premium {
    background-color: var(--color-black-lighter);
    color: var(--color-white);
    border-color: var(--color-gold);
    box-shadow: 10px 10px 0px var(--color-black),
        0 0 30px rgba(196, 156, 108, 0.3);
}

.ticket-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.pricing-tier {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px dotted rgba(0, 0, 0, 0.2);
}

.ticket-card.premium .pricing-tier {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.ticket-card.platinum .pricing-tier {
    border-bottom-color: rgba(0, 0, 0, 0.2);
}

.pricing-tier:last-of-type {
    border-bottom: none;
}

.tier-title {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.tier-price {
    font-size: 2.8rem;
    line-height: 1;
}

.tier-fees {
    font-size: 0.9rem;
    font-weight: bold;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.ticket-card.platinum {
    background: linear-gradient(135deg, var(--color-gold) 0%, #ffe6a0 50%, var(--color-gold) 100%);
    color: var(--color-black);
    border-color: var(--color-red);
    box-shadow: 10px 10px 0px var(--color-red),
        0 0 35px rgba(166, 25, 46, 0.4);
}

.ticket-card .btn {
    margin-top: auto;
}

.ticket-features {
    list-style: none;
    margin-bottom: 2rem;
    margin-top: 1rem;
    text-align: left;
}

.ticket-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ticket-card.premium .ticket-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-features li::before {
    content: '❯';
    color: var(--color-red);
    margin-right: 10px;
    font-weight: bold;
}

.ticket-card.premium .ticket-features li::before {
    color: var(--color-gold);
}

.vip-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 2px solid var(--color-gold);
    padding: var(--space-lg) var(--space-md) var(--space-sm);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 0;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid #333;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

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

.footer-bottom {
    margin-top: var(--space-md);
    color: #666;
    font-size: 0.9rem;
}

/* ==========================================================================
   Animations & GSAP Setup Classes
   ========================================================================== */
.reveal-up,
.reveal-scroll {
    opacity: 0;
    visibility: hidden;
    /* Prevent flash of unstyled content */
}

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

    .section-title {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    /* Simple mobile handled here initially */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .official-logo {
        width: 300px;
        height: 300px;
    }

    .event-date {
        font-size: 2rem;
    }

    .event-location {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-wrapper {
    background-color: rgba(0, 0, 0, 0.85);
    border: 3px solid var(--color-gold);
    padding: 3rem;
    box-shadow: 10px 10px 0px var(--color-black), 0 0 20px rgba(196, 156, 108, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.fighter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section-title {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--color-red);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.form-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-stencil);
    color: var(--color-white);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select {
    padding: 0.8rem;
    background-color: var(--color-black);
    border: 1px solid #444;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 8px rgba(196, 156, 108, 0.5);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    width: 20px;
    height: 20px;
    accent-color: var(--color-red);
}

.checkbox-group label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: normal;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .form-grid,
    .form-grid-3,
    .form-grid-4 {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Merch Section
   ========================================================================== */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.merch-card {
    background-color: var(--color-black-lighter);
    border: 2px solid var(--color-black);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.merch-card:hover {
    border-color: var(--color-red);
    box-shadow: 0 0 15px rgba(166, 25, 46, 0.5);
    transform: translateY(-5px);
}

.merch-image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: var(--color-black);
    border: 1px dashed #444;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Gritty overlay for placeholder */
.merch-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
    pointer-events: none;
}

.merch-icon {
    font-size: 4rem;
    color: #555;
    font-family: var(--font-stencil);
}

.merch-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.merch-price {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.merch-card .btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
}

/* ==========================================================================
   Newsletter / Email Signup
   ========================================================================== */
.newsletter-section {
    background: linear-gradient(rgba(166, 25, 46, 0.95), rgba(0, 0, 0, 0.95));
    padding: 3rem 1rem;
    border-top: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1.2rem;
    font-size: 1.1rem;
    border: 2px solid var(--color-black);
    border-right: none;
    background: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-body);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    background: #f0f0f0;
}

.newsletter-form .btn {
    border-radius: 0;
    border: 2px solid var(--color-black);
    margin: 0;
}

@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        border-right: 2px solid var(--color-black);
        border-bottom: none;
    }
}

/* ==========================================================================
   Fighter Callout Section
   ========================================================================== */
.fighter-callout {
    background: url("assets/fighter_action.png") center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 6rem 1rem;
    text-align: center;
    border-top: 4px solid var(--color-gold);
    border-bottom: 4px solid var(--color-gold);
}

.fighter-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

.fighter-callout .container {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(17, 17, 17, 0.9);
    border-left: 4px solid var(--color-red);
    padding: 1.5rem;
    text-align: left;
}

.faq-q {
    font-family: var(--font-stencil);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.faq-a {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-white-dim);
    line-height: 1.6;
}

/* ==========================================================================
   Venue & Map Section
   ========================================================================== */
.venue-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    background: var(--color-black-lighter);
    border: 2px solid #333;
}

@media (max-width: 768px) {
    .venue-container {
        grid-template-columns: 1fr;
    }
}

.venue-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.venue-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.venue-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) contrast(100%);
    /* Make google map dark mode */
}
/* Logo Animation */
.official-logo {
    animation: slowBreath 6s ease-in-out infinite alternate;
}

@keyframes slowBreath {
    0% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(166, 25, 46, 0.6), 0 0 20px rgba(196, 156, 108, 0.4);
    }
    100% {
        transform: scale(1.03);
        box-shadow: 0 0 60px rgba(166, 25, 46, 1), 0 0 35px rgba(196, 156, 108, 0.7);
    }
}

/* Mobile typography adjustments for new sizing */
@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    .section-title {
        font-size: 3rem;
    }
    .event-date {
        font-size: 2.5rem;
    }
    .event-location {
        font-size: 2rem;
    }
    .official-logo {
        width: 300px;
        height: 300px;
    }
}
