/* Loader Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 300px;
    z-index: 2;
    animation: pulseLogo 2s infinite ease-in-out;
}

.loader-pulse {
    position: absolute;
    width: 400px;
    height: 200px;
    background: radial-gradient(circle, rgba(205, 32, 40, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: ripple 2s infinite ease-out;
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* CSS Variables & Core Styling */
:root {
    --primary-red: #CD2028;
    --dark-bg: #0d0d0d;
    --black: #000000;
    --white: #ffffff;
    --gray-light: #e0e0e0;
    --gray-dark: #333333;
    --gray-med: #555555;
    --transit: all 0.3s ease;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    text-transform: uppercase;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

/* Shared Buttons */
.btn-calendar {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transit);
    box-shadow: 0 4px 15px rgba(205, 32, 40, 0.4);
    border: 2px solid transparent;
}

.btn-calendar:hover {
    background-color: transparent;
    border-color: var(--primary-red);
    color: var(--primary-red);
    box-shadow: 0 0 15px var(--primary-red);
}

.btn-pulse {
    background: #fff;
    color: var(--primary-red);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transit);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-solid {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transit);
    font-size: 1rem;
    text-decoration: none;
}

.btn-hoverglow:hover {
    box-shadow: 0 0 20px var(--primary-red);
    transform: translateY(-2px);
}

.btn-outline {
    background: #8e8e8e;
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transit);
    font-size: 16px;
}

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

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

/* Header */
.header {
    background-color: var(--black);
    color: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transit);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
}

.header.sticky {
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 4%;
    max-width: none;
    margin: 0;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    height: 100px;
    width: auto;
    transition: var(--transit);
}

@media screen and (max-width: 1024px) {
    .header-logo {height: 80px;}
}

.header.sticky .header-logo {
    height: 75px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 700;
}

.logo-sub {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hall {
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1;
}

.city {
    font-size: 0.8rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transit);
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    bottom: 0;
    left: 50%;
    transition: var(--transit);
    transform: translateX(-50%);
}

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

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

.divider {
    color: #ccc;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
    /* offset header */
    background: url('/wp-content/uploads/2026/06/home-banner.webp') center/cover no-repeat;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%) scale(1.05);
    /* slightly zoomed for effect */
    transition: transform 10s ease-out;
    z-index: 1;
}

.hero:hover .hero-video {
    transform: translateX(-50%) translateY(-50%) scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    padding: 5px 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

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

/* Stats Section */
.stats-section {
    background: transparent;
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Dots texture as full background */
.stats-section::before,
.promo-section::before,
.info-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/wp-content/uploads/2026/06/dots.png') no-repeat center bottom/cover;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    filter: invert(1);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    padding: 0 20px;
}

.stat-box {
    text-align: center;
    padding: 50px 30px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: 1;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(205, 32, 40, 0.2), 0 0 20px rgba(205, 32, 40, 0.1);
    border-color: rgba(205, 32, 40, 0.5);
    background: rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.stat-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6)), var(--bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 0;
    transform: scale(1.1);
    pointer-events: none;
    border-radius: 16px;
}

/* .stat-box:nth-child(1)::after {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6)), url('/wp-content/uploads/2026/06/Jack_pot_winner.webp');
}

.stat-box:nth-child(2)::after {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6)), url('/wp-content/uploads/2026/06/12_559_93.webp');
}

.stat-box:nth-child(3)::after {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6)), url('/wp-content/uploads/2026/06/25_085_25_2.webp');
} */

.stat-box:hover::after {
    opacity: 1;
    transform: scale(1);
}

.stat-box:hover::before {
    animation: shine 1.5s ease-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.stat-box:hover .stat-number {
    color: var(--primary-red);
    text-shadow: 0 0 15px rgba(205, 32, 40, 0.5);
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.stat-text {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* ─── RED-CTA SECTION ─── */
.red-cta {
    background: radial-gradient(ellipse at 60% 50%, #e8252e 0%, #b81c23 100%);
    padding: 100px 4% 150px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    position: relative;
    overflow: hidden;
    gap: 24px;
    min-height: 120px;
}

/* Subtle radial highlight center-right (matches the glow in the photo) */
.red-cta::before {
    content: '';
    position: absolute;
    right: 30%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 340px;
    height: 180px;
    background: radial-gradient(ellipse, rgba(255, 200, 180, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.cta-title {
    font-size: clamp(1.5rem, 2.8vw, 3.2rem);
    font-weight: 900;
    color: #FFD84D;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.01em;
}

.cta-sub {
    font-size: clamp(0.9rem, 2.4vw, 1.6rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    opacity: 0.95;
}

.red-cta .promo-cards-img {
    height: 420px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    position: absolute;
    filter: drop-shadow(0 8px 20px rgba(255, 255, 255, 0.35));
    bottom: -260px;
    opacity: 1;
    transform: none;
    right: 20%;
    z-index: -1;
}

/* Override btn-pulse for the CTA button to match the design photo */
.cta-learn-btn.btn-pulse {
    background: #ffffff;
    color: #b81c23;
    border: none;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    border-radius: 6px;
    /* Rectangular, not pill — matches the photo */
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    z-index: 2;
}

.cta-learn-btn.btn-pulse:hover {
    background: #f0f0f0;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Promo Section */
.promo-section {
    background-color: transparent;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 800px;
    /* Ensure segment is taller */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-headline {
    text-align: center;
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(205, 32, 40, 0.4);
    position: relative;
    z-index: 5;
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
}

.slider-arrow {
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary-red);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(205, 32, 40, 0.8);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

.promo-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 60px 100px;
    overflow-x: hidden;
    /* scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth; */
    position: relative;
    justify-content: center;
}


.promo-wrapper::-webkit-scrollbar {
    display: none;
}

.promo-card {
    flex: 0 0 calc((100% - 80px) / 3);
    /* height: 480px; */
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0.6;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: center;
    scroll-snap-align: center;
    flex-shrink: 0;
    filter: grayscale(80%);
    position: relative;
}

.promo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    border-radius: 12px;
}

.promo-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    z-index: 5;
    width: 100%;
}

.promo-cards-img {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 800px;
    height: auto;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-15deg);
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8));
}

.promo-card.active-card,
.promo-card:hover {
    opacity: 1;
    transform: scale(1.05);
    /* Reduced scale to prevent overlapping */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(205, 32, 40, 0.3);
    /* Softer red glow instead of solid border */
    z-index: 2;
    filter: grayscale(0%);
}

.slider-arrow:disabled,
.slider-arrow.is-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Left Right Section */
.play-win-section {
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background-color: #f7f7f7;
}

.play-win-section .promo-headline {
    color: var(--black);
    text-shadow: none;
}

/* Split Section */
.split-section {
    position: relative;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    overflow: hidden;
}

.split-img-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s ease;
}

.split-text-container {
    position: relative;
    width: 45%;
    margin-left: 50%;
    background-color: var(--white);
    color: var(--black);
    padding: 80px 60px;
    box-shadow: -10px 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 2;
}

.split-title {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--black);
}

.split-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--gray-med);
    line-height: 1.6;
}

/* Tracks */
.tracks-section {
    position: relative;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: #e8e8e8;
    overflow: hidden;
}

.tracks-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s ease;
}

.tracks-section:hover .tracks-img {
    transform: scale(1.05);
}

.tracks-text {
    position: relative;
    width: 45%;
    margin-left: 5%;
    background-color: var(--white);
    color: var(--black);
    padding: 80px 60px;
    box-shadow: 10px 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 2;
}

.tracks-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.tracks-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--gray-med);
    line-height: 1.6;
}

/* Info Cards */
.info-section {
    display: flex;
    gap: 40px;
    padding: 100px 5%;
    position: relative;
    justify-content: center;
}

.info-card {
    flex: 1;
    max-width: 650px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    padding: 80px 40px 60px;
    text-align: center;
    color: var(--white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: -2;
}

.info-card:first-child::before {
    background-image: url('/wp-content/uploads/2026/07/bbq-bites.webp');
}

.info-card.info-card-alt::before {
    background-image: url('/wp-content/uploads/2026/06/live_music.webp');
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: -1;
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 1);
}

.info-card:hover::before {
    transform: scale(1.08);
    /* slight zoom on hover */
}

.info-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.info-card p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.info-card .btn-outline {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.info-card .btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(205, 32, 40, 0.6);
}

/* Events Section */
.events-section {
    background-color: #1a1a1a;
    padding: 100px 0;
}

.events-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
    scrollbar-width: none;
}

.events-carousel::-webkit-scrollbar {
    display: none;
}

.event-item {
    min-width: 300px;
    flex: 1;
    scroll-snap-align: start;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transit);
    border-radius: 8px;
    overflow: hidden;
}

.event-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    transition: var(--transit);
}

.event-item:hover::after {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.event-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.5s ease;
}

.event-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.event-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    pointer-events: none;
    z-index: 2;
    width: calc(100% - 50px);
}

.event-info h4 {
    font-size: 1.1rem;
    font-weight: 400;
}

.event-info h3 {
    font-size: 1.8rem;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    word-break: break-word;
    -webkit-box-orient: vertical;
}

/* Weekly Events Grid */
.weekly-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 5% 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.weekly-card {
    background: transparent;
    transition: var(--transit);
}

.weekly-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.weekly-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.weekly-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

.weekly-card:hover .weekly-img-container {
    box-shadow: 0 15px 40px rgba(205, 32, 40, 0.3);
    border-color: rgba(205, 32, 40, 0.5);
    transform: translateY(-5px);
}

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

.weekly-info h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 5px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.weekly-info p {
    color: #888;
    font-size: 1.1rem;
    font-weight: 500;
}

.weekly-card:hover .weekly-info h3 {
    color: var(--primary-red);
}

.calendar-btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

/* Careers & Community Section */
.careers-community-section {
    background-color: #ffffff;
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.03) 2%, transparent 2%),
        radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.02) 5%, transparent 5%),
        radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.03) 3%, transparent 3%),
        radial-gradient(circle at 70% 10%, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.02) 4%, transparent 4%);
    background-size: 150px 150px;
    padding: 80px 5%;
    position: relative;
    border-bottom: 6px solid var(--primary-red);
}

.careers-community-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.red-cta-card {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
    flex: 1;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(205, 32, 40, 0.2);
    transition: var(--transit);
}

.red-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(205, 32, 40, 0.3);
}

.red-cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: none;
}

.red-cta-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.9;
}

.card-action {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.btn-white-red {
    background-color: var(--white);
    color: var(--primary-red);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: var(--transit);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-white-red:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.footer-action {
    justify-content: space-between;
}

.cares-logo-svg {
    height: 70px;
    width: auto;
    opacity: 0.95;
    transition: var(--transit);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.red-cta-card:hover .cares-logo-svg {
    transform: scale(1.05);
    opacity: 1;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    position: relative;
    padding: 80px 0 0;
}

.footer-bottom-border {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4% 40px;
    max-width: none;
    margin: 0;
    gap: 30px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

/* .footer-logo {
    flex: 1;
} */

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

.footer-logo .address {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-top: 0;
    display: block;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    font-size: initial;
    list-style-type: none;
    margin: 50px auto;
}

.footer-links li {
    line-height: 1.5;
    position: relative;
}

.footer-links li:not(:last-child):before {
    content: '';
    position: absolute;
    top: 50%;
    width: 1px;
    right: -20px;
    height: 18px;
    background-color: #ccc;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer-links li a {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transit);
}

.footer .footer-links li a:hover, .footer .footer-links li a[aria-current="page"] {
    color: var(--primary-red);
}

.footer-links li a:hover {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.link-column h4 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.link-column h4 a {
    color: var(--white);
    margin-bottom: 0;
}

.link-column a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: var(--transit);
}

.link-column a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.footer-bottom-black {
    background-color: var(--black);
    height: 10px;
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 4%;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-med);
    font-size: 0.85rem;
    max-width: 1400px;
    margin: 0 auto;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: var(--gray-med);
    text-decoration: none;
    transition: var(--transit);
}

.legal-links a:hover {
    color: var(--white);
}

@media (max-width: 1440px) {
    .footer-content{
        flex-direction: column;
        gap: 0px;
    }
    .footer-logo-img{
        margin-bottom: 0;
    }
    .footer-links{
        gap: 16px;
    }
    .footer-links li:not(:last-child):before {
        right: -8px;
        height: 15px;
    }
    .footer-links li a,
    .link-column a{
        font-size: 0.8rem;
    }
    .link-column a{
        font-size: 0.8rem;
    }
}



@media (max-width: 768px) {
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-links{
        gap: 8px;
        margin: 0;
    }
    .footer-links li:not(:last-child):before {
        display: none;
    }
    .legal-links {
        justify-content: center;
    }
    .footer-content{
        gap: 20px;
    }

   .nav-links .nav-link{color: var(--black);}
}

/* Animations Trigger Classes */
.scroll-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-sides .slide-left,
.slide-in-sides .slide-right {
    opacity: 0;
    transition: all 1s ease-out;
}

.slide-in-sides .slide-left {
    transform: translateX(-50px);
}

.slide-in-sides .slide-right {
    transform: translateX(50px);
}

.slide-in-sides.visible .slide-left,
.slide-in-sides.visible .slide-right {
    opacity: 1;
    transform: translateX(0);
}

.stagger-fade .info-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.stagger-fade.visible .info-card:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-fade.visible .info-card:nth-child(2) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Design */
@media (max-width: 1200px) {
    .promo-card {
        flex: 0 0 calc((100% - 50px) / 2);
    }
}
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .split-section,
    .tracks-section {
        padding: 50px 5%;
        flex-direction: column;
        min-height: auto;
    }

    .split-section {
        padding-top: 0;
    }

    .split-img-container,
    .tracks-img {
        position: relative;
        width: 100%;
        min-height: 400px;
        border-radius: 8px 8px 0 0;
    }

    .split-text-container,
    .tracks-text {
        width: 100%;
        margin: 0;
        padding: 40px 30px;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .tracks-text {
        order: 2;
    }

    .tracks-img {
        order: 1;
    }

    .red-cta .promo-cards-img {
        height: 320px;
        bottom: -200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fcfcfc;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;

    }
    /* .menu-toggle svg{width:36px; height:auto;} */

    .divider {
        display: none;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-box {
        padding: 30px 20px;
    }

    .promo-wrapper {
        flex-direction: row;
        padding: 40px 20px;
        gap: 20px;
    }

    .promo-card {
        flex: 0 0 85%;
        /* height: 350px; */
    }
    
    .promo-card.active-card, .promo-card:hover {transform: scale(1);}
    .promo-headline {
        font-size: 2.5rem;
        padding-inline: 5%;
    }

    .promo-cards-img {
        width: 400px;
        bottom: -100px;
        right: -100px;
    }
    .left-arrow {left: 5%;}
    .right-arrow {right: 5%;}

    .weekly-events-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 10%;
    }

    .info-section {
        flex-direction: column;
    }

    .info-card {
        border-right: none;
        border-bottom: none;
    }

    .footer-links {
        flex-direction: column;
    }

    .careers-community-container {
        flex-direction: column;
        gap: 20px;
    }

    .red-cta {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px 28px;
        gap: 18px;
    }

    .red-cta::before {
        display: none;
    }

    .promo-cards-img {
        height: 80px;
        margin-bottom: 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-sub {
        font-size: 0.95rem;
    }

    .red-cta .promo-cards-img {
        height: 220px;
        bottom: -150px;
        right: 0;
    }
}

@media (max-width: 575px) {

    .hero br,
    .split-section br {
        display: none;
    }
}

.footer-bottom-border{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: auto;
    background: #000000;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-inline: 20px;
}
.footer-bottom-border p{
    display: inline-block;
    font-size: 16px;
    text-align: center;
}
.footer-bottom-border p a{
    color: var(--white);
}

/* Calendar Detail */
.gcal-detail, .gcal-detail .hero-content {
    color: var(--gcal-title);
}
.gcal-detail {
    --gcal-pill-bg: #f5f5f2;
    --gcal-pill-idle: #828282;
    --gcal-card-bg: #f5f5f2;
    --gcal-title: #3e3e3e;
    --gcal-text: #1d1b20;
    --gcal-radius-card: 12px;
    --gcal-radius-btn: 8px;
    background-color: #ecebe7;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.gcal-detail:before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/wp-content/uploads/2026/06/bg_dots.png') repeat top center;
    background-size: 300px auto;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
    background-size: cover;
}
.gcal-detail .gcal__inner {
    gap: 20px;
    z-index: 1;
    display: flex;
    padding: 0 5%;
    margin: 0 auto;
    max-width: 1400px;
    flex-flow: column;
    position: relative;
}
.gcal-detail .hero-content {
    padding: 0;
}
.gcal-detail .hero-content .hero-title {
    font-size: 2.5rem;
    margin-bottom: 5px;
}
.gcal-detail .hero-content .hero-tag {
  font-size: 1.2rem;
  font-weight: 600;
}
.gcal-detail p:not(.hero-tag) {
    font-size: 1rem;
    font-weight: 500;
}
.gcal-detail .gcal-single__back a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: var(--transit);
    border: 2px solid transparent;
    background-color: var(--primary-red);
}
.gcal-detail .gcal-single__back a:hover {
    color: var(--primary-red);
    background-color: var(--white);
    border-color: var(--primary-red);
}
@media only screen and (max-width: 992px) {
    .gcal-detail .hero-content .hero-title {
        font-size: 1.8rem;
    }
}

/* Promotion Card */
.gcal-card {
  background: #000;
  border: 1px solid var(--primary-red);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  transition: var(--transit);
  height: 100%;
}
.gcal-card:hover {
  /* transform: translateY(-6px); */
  box-shadow: 0 16px 34px rgba(205, 32, 40, 0.20);
}
.gcal-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 646 / 315;
  overflow: hidden;
}
.gcal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gcal-card__body {
  flex: 1;
  padding: 26px 30px 32px;
  display: flex;
  flex-direction: column;
}
.gcal-card__eyebrow {
  color: var(--primary-red);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}
.promo-card .gcal-card__eyebrow {
    text-align: left;
}
.gcal-card__title {
  color: var(--gcal-title);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15px;
  line-height: 1.1;
  text-transform: none;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.gcal-card__sub, .gcal-card__time {
  color: var(--gcal-text);
  font-size: 0.875rem;
  font-weight: 500;
}
.gcal-card__desc {
    margin-top: 15px;
    font-weight: 400;
    line-height: 1.45;
    font-size: 0.875rem;
    color: var(--gcal-text);
}
.gcal-card__btn, .gcal-single__btn {
    z-index: 1;
    font-weight: 800;
    margin-top: 22px;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 1.0625rem;
    font-family: inherit;
    letter-spacing: 0.9px;
    text-decoration: none;
    align-self: flex-start;
    background: transparent;
    color: var(--primary-red);
    text-transform: uppercase;
    transition: var(--transit);
    border: 1.5px solid var(--primary-red);
}
.gcal-card__btn:hover, .gcal-single__btn:hover {
    color: var(--white);
    background: var(--primary-red);
    box-shadow: 0 0 15px rgba(205, 32, 40, 0.5);
}
/* 404 Page */
.not-found {
  width: 100%;
  text-align: center;
  padding-top: 240px;
  padding-bottom: 130px;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.not-found .not-found-title {
  line-height: 1;
  font-size: 200px;
}
.not-found .not-found-subtitle {
  font-size: 20px;
  text-transform: none;
}
.not-found .not-found-desc {
  font-size: 16px;
  margin: 20px auto 10px;
}
.not-found .btn-calendar {
  text-transform: uppercase;
}
.not-found ~ .footer {
  padding-top: 35px;
}
@media screen and (max-width: 991.98px) {
    .not-found {padding-top: 120px;padding-bottom: 80px;}
    .not-found .not-found-title {font-size: 150px;}
}
/* 404 Page */
.wpcf7-form.init iframe{width: 100%;}