/* ===================================
   EVENTS PAGE STYLES - DJ TRIVIA NIGHT
   =================================== */

/* DJ Trivia Hero Section */
.christmas-hero {
    background: linear-gradient(135deg, #1a0033 0%, #2d0a4e 25%, #4a0e78 50%, #6b1fa1 75%, #8e24aa 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fireworks-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-snow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(255, 193, 7, 0.6) 0%, transparent 3%),
        radial-gradient(circle at 85% 30%, rgba(33, 150, 243, 0.5) 0%, transparent 2.5%),
        radial-gradient(circle at 45% 60%, rgba(76, 175, 80, 0.6) 0%, transparent 3%),
        radial-gradient(circle at 70% 80%, rgba(255, 87, 34, 0.5) 0%, transparent 2%),
        radial-gradient(circle at 25% 70%, rgba(233, 30, 99, 0.6) 0%, transparent 3%),
        radial-gradient(circle at 60% 15%, rgba(156, 39, 176, 0.5) 0%, transparent 2.5%),
        radial-gradient(circle at 90% 90%, rgba(0, 188, 212, 0.6) 0%, transparent 3%),
        radial-gradient(circle at 10% 50%, rgba(255, 152, 0, 0.5) 0%, transparent 2%);
    background-size: 100% 100%;
    opacity: 0.7;
    animation: triviaGlow 6s ease-in-out infinite;
}

@keyframes triviaGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.05) rotate(2deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.98) rotate(-1deg);
    }
    75% {
        opacity: 0.7;
        transform: scale(1.03) rotate(1deg);
    }
}

.christmas-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7b731 50%, #5f27cd 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5), 0 0 40px rgba(95, 39, 205, 0.3);
    animation: pulse-trivia-badge 2s ease-in-out infinite;
}

@keyframes pulse-trivia-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5), 0 0 40px rgba(95, 39, 205, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.7), 0 0 60px rgba(95, 39, 205, 0.5);
    }
}

.christmas-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.5), 0 0 30px rgba(255, 193, 7, 0.5);
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 4px 4px 10px rgba(0,0,0,0.5), 0 0 30px rgba(255, 193, 7, 0.5);
    }
    50% {
        text-shadow: 4px 4px 10px rgba(0,0,0,0.5), 0 0 50px rgba(255, 193, 7, 0.8), 0 0 70px rgba(156, 39, 176, 0.5);
    }
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    letter-spacing: 3px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.4), 0 0 20px rgba(255, 215, 0, 0.6);
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.hero-tagline {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
}

/* Offers Section */
.offers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8eaf6 100%);
}

.offers-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #6b1fa1;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.offer-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.offer-card:hover::before {
    left: 100%;
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
}

.offer-card.featured {
    border-color: #165b33;
    background: linear-gradient(135deg, #fff 0%, #f0f8f4 100%);
}

.offer-card.mega {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fffbea 0%, #fff5cc 100%);
    grid-column: span 1;
}

@media (min-width: 968px) {
    .offer-card.mega {
        grid-column: 1 / -1;
    }
}

.mega-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #c41e3a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    animation: glow-badge 2s ease-in-out infinite;
}

@keyframes glow-badge {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.8);
    }
}

.offer-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    display: block;
    animation: bounce-icon 2s ease-in-out infinite;
}

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

.offer-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.offer-description {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c41e3a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-details {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: #fff;
}

.nba-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4d7c 100%);
    color: #fff;
}

.nfl-section {
    background: linear-gradient(135deg, #165b33 0%, #1e7a4a 100%);
    color: #fff;
}

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

.league-logo {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.3);
}

.section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #fff;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.9);
}

/* Games Timeline */
.games-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.game-card {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border-left: 6px solid #ffd700;
    position: relative;
}

.game-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.game-card.featured-game {
    border-left-color: #c41e3a;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
    border: 3px solid #c41e3a;
    border-left-width: 6px;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #c41e3a 0%, #ff1744 100%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
}

.game-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.game-matchup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    gap: 20px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.team-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 5px;
}

.team-city {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.vs {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c41e3a;
    padding: 0 15px;
}

.game-network {
    font-size: 1rem;
    font-weight: 600;
    color: #165b33;
    margin: 15px 0;
    padding: 8px 15px;
    background: #e8f5e9;
    border-radius: 20px;
    display: inline-block;
}

.game-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c41e3a;
    margin-top: 10px;
}

/* NFL Schedule */
.nfl-schedule {
    max-width: 800px;
    margin: 0 auto;
}

.nfl-info-card {
    background: rgba(255,255,255,0.95);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.nfl-info-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 25px;
}

.nfl-info-card p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.nfl-note {
    font-weight: 600;
    color: #c41e3a;
    font-size: 1.15rem !important;
}

.nfl-channels {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.channel-badge {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4d7c 100%);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

/* Fireworks Features Section */
.fireworks-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-highlight {
    background: linear-gradient(135deg, #fff 0%, #fffbf5 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 3px solid #ffd700;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: #ff6b35;
}

.highlight-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.feature-highlight h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-highlight p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
}

/* Timeline Content Styles */
.timeline-content {
    text-align: left;
}

.timeline-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
}

.timeline-detail {
    font-weight: 600;
    color: #c41e3a;
    font-style: italic;
}

/* Venue Features */
.venue-features {
    padding: 80px 0;
    background: #f9f9f9;
}

.venue-features h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a5f;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

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

.feature-item {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #165b33;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Deal Reminder */
.deal-reminder {
    padding: 80px 0;
    background: linear-gradient(135deg, #6b1fa1 0%, #8e24aa 50%, #5f27cd 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.deal-reminder::before {
    content: '🎯';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.reminder-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.3);
    color: #fff;
}

.deal-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.deal-item {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.deal-item:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.25);
}

.deal-item.mega-deal {
    background: rgba(255,193,7,0.2);
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255,215,0,0.3);
}

.deal-label {
    font-size: 1.5rem;
    font-weight: 600;
}

.deal-value {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.deal-note {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-top: 30px;
    font-style: italic;
}

/* CTA Section */
.events-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0033 0%, #2d0a4e 50%, #4a0e78 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.events-cta::before {
    content: '🎤';
    position: absolute;
    font-size: 20rem;
    opacity: 0.03;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
}

.events-cta::after {
    content: '🎵';
    position: absolute;
    font-size: 20rem;
    opacity: 0.03;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
}

.events-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.3);
    color: #fff;
    position: relative;
    z-index: 1;
}

.events-cta p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.95);
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid #fff;
}

.btn-reserve {
    background: linear-gradient(135deg, #ff6b35 0%, #f7b731 100%);
    color: #fff;
    border-color: #ff6b35;
}

.btn-reserve:hover {
    background: #fff;
    color: #ff6b35;
    border-color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.btn-call {
    background: #fff;
    color: #6b1fa1;
}

.btn-call:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn-menu {
    background: transparent;
    color: #fff;
    border-color: #ffd700;
}

.btn-menu:hover {
    background: #ffd700;
    color: #1a0033;
    border-color: #ffd700;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.cta-note {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Header adjustments for mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        justify-content: flex-end;
    }

    .nav-list {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        width: 100%;
        padding: 12px 0;
    }

    .order-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
        display: block;
    }

    .header-content {
        gap: 20px;
    }

    /* Page specific styles */
    .christmas-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .offers-section h2 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .game-matchup {
        flex-direction: column;
        gap: 10px;
    }

    .vs {
        padding: 10px 0;
    }

    .reminder-content h2 {
        font-size: 2.5rem;
    }

    .events-cta h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .christmas-hero {
        padding: 100px 0 60px;
    }

    .christmas-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .offers-section h2 {
        font-size: 1.8rem;
    }

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

    .offer-card {
        padding: 30px 20px;
    }

    .offer-icon {
        font-size: 4rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .league-logo {
        font-size: 3rem;
    }

    .game-card {
        padding: 20px;
    }

    .team-name {
        font-size: 1.4rem;
    }

    .nfl-info-card {
        padding: 30px 20px;
    }

    .nfl-info-card h3 {
        font-size: 1.8rem;
    }

    .venue-features h2 {
        font-size: 2rem;
    }

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

    .reminder-content h2 {
        font-size: 2rem;
    }

    .deal-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .deal-label {
        font-size: 1.2rem;
    }

    .deal-value {
        font-size: 2rem;
    }

    .events-cta {
        padding: 60px 0;
    }

    .events-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 12px 30px;
        font-size: 1rem;
    }
}
