/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red-primary: #ff0000;
    --red-dark: #cc0000;
    --red-darker: #990000;
    --black: #000000;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
    --white: #ffffff;
    --gray: #999999;
    --gray-light: #cccccc;
    
    --font-primary: 'Montserrat', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
    
    --shadow-small: 0 2px 8px rgba(255, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(255, 0, 0, 0.2);
    --shadow-large: 0 8px 32px rgba(255, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

body {
    animation: pageFadeIn 0.5s ease forwards;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.5));
    transition: transform var(--transition-normal);
    overflow: visible;
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.1);
}

.logo-text {
    font-family: 'Orbitron', 'Saira Condensed', sans-serif;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--red-primary);
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

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

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

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

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition-normal);
}

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

.nav-link:hover {
    color: var(--red-primary);
}

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

.nav-link.cta-nav {
    background: var(--red-primary);
    padding: 10px 20px;
    border-radius: 5px;
    transition: all var(--transition-normal);
}

.nav-link.cta-nav::after {
    display: none;
}

.nav-link.cta-nav:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 20px;
    width: 100%;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-logo-img {
    width: clamp(320px, 52vw, 600px);
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.8))
            drop-shadow(0 0 60px rgba(255, 0, 0, 0.4));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(255, 0, 0, 1))
            drop-shadow(0 0 80px rgba(255, 0, 0, 0.6));
}

.hero-logo-name {
    font-family: 'Orbitron', 'Saira Condensed', sans-serif;
    font-size: clamp(36px, 7vw, 90px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--red-primary);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.7),
                 0 0 40px rgba(255, 0, 0, 0.4);
    letter-spacing: 10px;
    animation: slideInFromRight 1s ease 0.5s backwards;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 2px;
    animation: fadeIn 1s ease 0.7s backwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red-primary);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all var(--transition-normal);
    animation: fadeInUp 1s ease 0.9s backwards;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.hero-cta:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--white);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    color: var(--red-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding: 0 30px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--red-primary);
}

.section-label::before {
    left: 0;
}

.section-label::after {
    right: 0;
}

.section-title {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--gray-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--black-light);
}

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

.about-text .lead {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    color: var(--red-primary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-text p {
    color: var(--gray-light);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.stat {
    text-align: center;
    padding: 40px 25px;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%);
    border-radius: 15px;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
}

.stat:hover::before {
    transform: translateX(100%);
}

.stat:hover {
    transform: translateY(-8px);
    border-color: var(--red-primary);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black-lighter) 100%);
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: var(--red-primary);
    margin-bottom: 12px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.4;
}

.about-image {
    position: relative;
}

.about-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--red-primary);
    box-shadow: var(--shadow-large);
    transition: transform var(--transition-normal);
}

.about-photo:hover {
    transform: scale(1.02);
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--black-lighter);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--red-primary);
    box-shadow: var(--shadow-large);
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--black);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--black-lighter);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-slow);
}

.gallery-placeholder svg {
    width: 100%;
    height: 100%;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-overlay span {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

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

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

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

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

/* ============================================
   EVENTS SECTION
   ============================================ */
.events {
    background: var(--black-light);
}

.events-category {
    margin-bottom: 80px;
}

.events-category:last-child {
    margin-bottom: 0;
}

.events-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--red-primary);
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--red-primary);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.event-card {
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%);
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red-primary), var(--red-dark));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

.event-card.upcoming:hover::before {
    transform: scaleX(1);
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: var(--red-primary);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.3);
}

.event-card-header {
    padding: 20px 25px 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.date-day {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.event-badge {
    background: var(--red-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.past-badge {
    background: linear-gradient(135deg, #555, #777);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.event-card-body {
    padding: 20px 25px 25px;
}

.event-details {
    flex: 1;
}

.event-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    line-height: 1.3;
}

.event-description {
    color: var(--gray-light);
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.event-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.event-time,
.event-location {
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-card.past {
    opacity: 0.75;
}

.event-card.past:hover {
    opacity: 1;
}


/* ============================================
   EVENT SPOTLIGHT
   ============================================ */
.event-spotlight {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.spotlight-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 0, 0, 0.15),
        0 25px 60px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(255, 0, 0, 0.12);
    cursor: pointer;
}

.spotlight-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.spotlight-inner:hover .spotlight-img {
    transform: scale(1.03);
}

.spotlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.4) 45%,
        transparent 75%
    );
    display: flex;
    align-items: flex-end;
    padding: 40px 48px;
    transition: background 0.4s ease;
}

.spotlight-inner:hover .spotlight-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.1) 80%
    );
}

.spotlight-content {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    width: 100%;
}

.spotlight-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-primary);
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.spotlight-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex: 1;
}

.spotlight-meta span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.spotlight-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red-primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.45);
}

.spotlight-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
}

.spotlight-details-hint {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 7px 14px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.spotlight-inner:hover .spotlight-details-hint {
    color: var(--white);
    background: rgba(255, 0, 0, 0.18);
    border-color: rgba(255, 0, 0, 0.45);
    box-shadow: 0 0 16px rgba(255, 0, 0, 0.2);
}

.spotlight-btn-mobile {
    display: none;
}

@media (max-width: 768px) {
    .event-spotlight {
        padding: 24px 16px 32px;
    }

    .spotlight-inner {
        border-radius: 18px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        min-height: 460px;
    }

    .spotlight-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .spotlight-overlay {
        position: absolute;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.97) 0%,
            rgba(0, 0, 0, 0.65) 45%,
            rgba(0, 0, 0, 0.1) 80%
        );
        padding: 24px 22px;
        align-items: flex-end;
    }

    .spotlight-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }

    .spotlight-label {
        font-size: 10px;
        letter-spacing: 2.5px;
        padding: 6px 14px;
    }

    .spotlight-meta {
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex: unset;
        width: 100%;
    }

    .spotlight-meta span {
        font-size: 15px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.92);
    }

    .spotlight-details-hint {
        top: 14px;
        left: 14px;
        font-size: 11px;
        padding: 7px 14px;
    }

    .spotlight-btn-desktop {
        display: none;
    }

    .spotlight-btn-mobile {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 14px;
        letter-spacing: 1.5px;
        border-radius: 12px;
        margin-top: 6px;
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--red-darker), var(--red-primary));
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-text {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    color: var(--red-primary);
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.cta-arrow {
    transition: transform var(--transition-normal);
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--black);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-intro h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--red-primary);
}

.contact-intro p {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.8;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: var(--red-primary);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.2);
}

.method-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-bottom: 20px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.method-icon svg {
    width: 36px;
    height: 36px;
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.method-details h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

.method-details a,
.method-details p {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.method-details a:hover {
    color: var(--red-primary);
}

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

.social-section h4 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%);
    border-radius: 15px;
    color: var(--white);
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: all var(--transition-normal);
    text-decoration: none;
    min-width: 140px;
}

.social-link span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.social-link:hover {
    background: var(--red-primary);
    transform: translateY(-5px);
    border-color: var(--red-primary);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    background: var(--black-lighter);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-primary);
    background: var(--black-light);
}

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

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red-primary);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
}

.submit-button:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.submit-arrow {
    transition: transform var(--transition-normal);
}

.submit-button:hover .submit-arrow {
    transform: translateX(5px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(to bottom, var(--black) 0%, var(--black-light) 100%);
    padding: 60px 0 0;
    border-top: 2px solid var(--red-primary);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
}

.footer-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo & Tagline - Centered */
.footer-brand-center {
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.5));
    border-radius: 3px;
}

.footer-logo .logo-text {
    font-family: 'Orbitron', 'Saira Condensed', sans-serif;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--red-primary);
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7),
                 0 0 25px rgba(255, 0, 0, 0.4);
}

.footer-tagline {
    color: var(--gray-light);
    font-size: 16px;
    font-style: italic;
    letter-spacing: 1px;
}

/* Navigation & Contact Row - Centered */
.footer-info-row {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--red-primary);
    transform: scale(1.05);
}

.footer-links li {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.8;
}

/* Social Media - Centered */
.footer-social-center {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-lighter);
    border-radius: 12px;
    color: var(--white);
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--red-primary);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--red-primary);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

/* Footer Bottom - Centered */
.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

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

.footer-divider {
    color: var(--gray);
    font-size: 14px;
}

.footer-credit {
    color: var(--red-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all var(--transition-normal);
    letter-spacing: 1px;
}

.footer-credit:hover {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--red-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-medium);
}

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

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Scroll animation trigger */
[data-aos] {
    opacity: 0;
    transition: all var(--transition-slow);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 968px) {
    .logo {
        gap: 8px;
        margin-left: 10px;
    }

    .logo-icon {
        width: 110px;
        height: auto;
    }

    .logo-text {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 30px;
        transition: right var(--transition-slow);
        backdrop-filter: blur(10px);
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 10px 0;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

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

    .footer-info-row {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    section {
        padding: 60px 0;
    }

    .hero-logo-img {
        width: clamp(240px, 80vw, 400px);
    }

    .hero-logo-name {
        font-size: 32px;
        letter-spacing: 6px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        font-size: 14px;
        padding: 14px 32px;
    }
}

@media (max-width: 600px) {
    .event-card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .event-card-body {
        text-align: center;
    }

    .event-info {
        justify-content: center;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 14px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   EVENT CARD — CLICKABLE UPCOMING
   ============================================ */
.event-card.upcoming {
    cursor: pointer;
    position: relative;
}

.event-card-pulse {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red-primary);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    animation: cardPulse 2s infinite;
    z-index: 2;
}

@keyframes cardPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.event-card-footer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 25px;
    background: linear-gradient(90deg, rgba(255,0,0,0.08), rgba(255,0,0,0.14));
    border-top: 1px solid rgba(255, 0, 0, 0.18);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-primary);
    transition: all var(--transition-normal);
}

.event-card.upcoming:hover .event-card-footer-cta {
    background: linear-gradient(90deg, rgba(255,0,0,0.18), rgba(255,0,0,0.28));
    color: var(--white);
    gap: 12px;
}

.event-card.upcoming:hover .event-card-footer-cta svg {
    transform: translateX(4px);
    transition: transform var(--transition-normal);
}

/* ============================================
   EVENT DETAIL MODAL
   ============================================ */
.event-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.event-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.event-modal {
    position: relative;
    background: #0e0e0e;
    border-radius: 20px;
    overflow: hidden;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    /* Prevent scroll from chaining to the page behind (iOS scroll leak fix) */
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow:
        0 0 0 1px rgba(255, 0, 0, 0.08),
        0 40px 100px rgba(0, 0, 0, 0.9),
        0 0 80px rgba(255, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(50px) scale(0.94);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    opacity: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--red-primary) transparent;
}

.event-modal::-webkit-scrollbar { width: 4px; }
.event-modal::-webkit-scrollbar-track { background: transparent; }
.event-modal::-webkit-scrollbar-thumb { background: var(--red-primary); border-radius: 2px; }

.event-modal-overlay.open .event-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Close button */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(8px);
}

.modal-close:hover {
    background: var(--red-primary);
    border-color: var(--red-primary);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* Banner image */
.modal-image-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.modal-banner {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 6s ease;
}

.event-modal-overlay.open .modal-banner {
    transform: scale(1.04);
}

.modal-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(14,14,14,1) 100%
    );
}

.modal-image-title {
    position: absolute;
    bottom: 28px;
    left: 32px;
    right: 32px;
}

.modal-event-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-primary);
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.35);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.modal-title-over-img {
    font-size: clamp(24px, 5vw, 38px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal-title-over-img span {
    color: var(--red-primary);
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.7), 0 2px 20px rgba(0,0,0,0.8);
}

/* Modal body */
.modal-body {
    padding: 28px 32px 36px;
}

.modal-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 24px;
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.modal-meta-svg {
    color: var(--red-primary);
    flex-shrink: 0;
}

.modal-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,0,0,0.25), transparent);
    margin: 22px 0;
}

/* Description */
.modal-description {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-description p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.modal-description strong {
    color: var(--white);
    font-weight: 700;
}

.modal-hype {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 16px 20px;
    background: rgba(255, 0, 0, 0.07);
    border-left: 3px solid var(--red-primary);
    border-radius: 0 8px 8px 0;
}

/* Contact row */
.modal-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.modal-contact-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

.modal-contact-phone {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.modal-contact-phone:hover {
    color: var(--red-primary);
}

/* Ticket button */
.modal-ticket-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding: 20px 32px;
    background: var(--red-primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow:
        0 6px 30px rgba(255, 0, 0, 0.45),
        0 0 0 0 rgba(255, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.modal-ticket-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
    transition: opacity 0.3s ease;
}

.modal-ticket-btn:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(255, 0, 0, 0.65),
        0 0 60px rgba(255, 0, 0, 0.25);
}

.modal-ticket-btn:hover svg {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.modal-ticket-btn svg {
    transition: transform 0.3s ease;
}

.modal-ticket-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 12px;
    font-style: italic;
}

/* Modal responsive */
@media (max-width: 600px) {
    .event-modal-overlay {
        padding: 0;
        align-items: stretch;
    }

    .event-modal {
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        max-height: var(--modal-win-h, 100vh);
        height: var(--modal-win-h, 100vh);
        transform: translateY(100%);
    }

    .event-modal-overlay.open .event-modal {
        transform: translateY(0);
    }

    .modal-body {
        padding: 22px 20px calc(32px + env(safe-area-inset-bottom));
    }

    .modal-image-title {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .modal-meta-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}
