/* Event Calendar Styles */
.event-calendar {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.calendar-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2em;
    font-weight: 600;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #007cba;
}

.event-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    margin-right: 20px;
    text-align: center;
}

.event-month {
    font-size: 0.9em;
    font-weight: 600;
    color: #007cba;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-day {
    font-size: 1.8em;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.event-year {
    font-size: 0.8em;
    color: #666;
    margin-top: 2px;
}

.event-details {
    flex: 1;
    margin-right: 20px;
}

.event-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.event-location {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.95em;
}

.location-icon {
    margin-right: 8px;
    font-size: 1.1em;
}

.location-text {
    font-weight: 500;
}

.event-action {
    flex-shrink: 0;
}

.event-button {
    display: inline-block;
    padding: 10px 20px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.event-button:hover {
    background: #005a87;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.3);
}

.no-events {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ddd;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .event-calendar {
        padding: 15px;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .event-date {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .event-details {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .event-title {
        font-size: 1.1em;
    }
    
    .event-item.expanded {
        transform: scale(1.02);
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-item {
    animation: fadeInUp 0.6s ease forwards;
} 