/* Events Page CSS */

.ev-hero {
    min-height: 60vh;
    padding-bottom: 20px;
}

.ev-active-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.5);
    color: #2ecc71;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 30px;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.2);
}

.ev-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2ecc71;
    display: inline-block;
    animation: ev-pulse-anim 1.5s infinite;
}

@keyframes ev-pulse-anim {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

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

.ev-day-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--ancient-gold), var(--dark-gold));
    color: #1a0f05;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.ev-card {
    position: relative;
    padding-top: 40px !important;
}

.ev-card-month {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    text-transform: uppercase;
}

.ev-card p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}
.ev-card p strong {
    color: #e5c77e;
}

.ev-active {
    border-color: #2ecc71 !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.9), inset 0 0 30px rgba(46, 204, 113, 0.1) !important;
}
.ev-active::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #2ecc71, transparent);
    border-radius: 18px;
    z-index: -1;
    opacity: 0.5;
    animation: ev-glow 3s infinite alternate;
}

@keyframes ev-glow {
    0% { opacity: 0.2; }
    100% { opacity: 0.6; }
}

@media(max-width: 960px) {
    .ev-weekly-grid { grid-template-columns: 1fr; }
}
