.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.event-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 183, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--honey-gold);
    box-shadow: 0 10px 30px rgba(255, 183, 0, 0.3);
}

.event-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.15), rgba(255, 138, 0, 0.15));
    border-color: var(--honey-gold);
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--honey-gold);
    color: var(--warm-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.event-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.5rem;
    color: var(--honey-yellow);
    margin-bottom: 1rem;
    text-align: center;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    color: rgba(255, 244, 214, 0.7);
    font-size: 0.95rem;
}

.event-description {
    color: rgba(255, 244, 214, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.event-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Calendar Styles */
.calendar-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 183, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-header h3 {
    font-size: 1.5rem;
    color: var(--honey-yellow);
}

.calendar-nav {
    background: var(--honey-gold);
    color: var(--warm-black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.calendar-nav:hover {
    background: var(--honey-yellow);
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 700;
    color: var(--honey-gold);
    padding: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 244, 214, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--honey-beige);
}

.calendar-day:hover {
    background: rgba(255, 196, 0, 0.2);
    transform: scale(1.05);
}

.calendar-day.event-day {
    background: rgba(255, 183, 0, 0.2);
    border: 2px solid var(--honey-gold);
    font-weight: 700;
}

.calendar-day.featured-day {
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.3), rgba(255, 138, 0, 0.3));
    border: 2px solid var(--honey-orange);
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card.featured {
        grid-column: 1;
    }
    
    .calendar-day {
        font-size: 0.85rem;
    }
}
