/* ===== Events Page Header ===== */
.events-header {
    background: linear-gradient(135deg, #2d1f3d 0%, #1a1a2e 100%);
}

/* ===== Featured Event ===== */
.featured-event {
    padding: 80px 0;
    background: var(--white);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.featured-event-card {
    display: flex;
    gap: 40px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.event-date-badge {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.event-date-badge .day {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.event-date-badge .month {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-event-content {
    flex: 1;
}

.event-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.featured-event-content h2 {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.featured-event-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.event-details {
    display: flex;
    gap: 32px;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
}

.detail-icon {
    font-size: 20px;
}

/* ===== Karaoke Section ===== */
.karaoke-section {
    padding: 100px 0;
    background: var(--secondary);
    color: var(--white);
    overflow: hidden;
}

.karaoke-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.karaoke-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.karaoke-content .section-label {
    color: var(--accent);
}

.karaoke-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.karaoke-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
}

.info-icon {
    font-size: 32px;
}

.info-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.info-item span {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Karaoke Visual Card */
.karaoke-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 320px;
    height: 400px;
    background: linear-gradient(180deg, #1a0a2e 0%, #2d1f3d 50%, #0a0a1e 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,0,128,0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(0,255,255,0.15) 0%, transparent 40%);
}

.neon-text {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #ff00ff;
    text-shadow:
        0 0 10px #ff00ff,
        0 0 20px #ff00ff,
        0 0 40px #ff00ff,
        0 0 80px #ff00ff;
    position: relative;
    z-index: 1;
    animation: neonPulse 2s ease-in-out infinite;
}

.neon-subtext {
    font-size: 18px;
    color: #00ffff;
    text-shadow:
        0 0 10px #00ffff,
        0 0 20px #00ffff;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.microphone {
    font-size: 80px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
    animation: micBounce 1s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes micBounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* ===== Private Events ===== */
.private-events {
    padding: 100px 0;
    background: var(--off-white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.event-type-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.event-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.event-type-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.event-type-card h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.event-type-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.cta-section p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-outline-dark {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .karaoke-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .karaoke-visual {
        order: -1;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-event-card {
        flex-direction: column;
        padding: 32px;
        gap: 24px;
    }

    .event-date-badge {
        width: 80px;
        height: 80px;
    }

    .event-date-badge .day {
        font-size: 32px;
    }

    .featured-event-content h2 {
        font-size: 32px;
    }

    .event-details {
        flex-direction: column;
        gap: 16px;
    }

    .karaoke-content h2 {
        font-size: 36px;
    }

    .visual-card {
        width: 280px;
        height: 350px;
    }

    .neon-text {
        font-size: 36px;
    }

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

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