/* 
    Créditos: Cristhian Yalle 
    Descripción: Estilos responsivos para el sitio web de la comunidad de desarrolladores Grupo Yalle.
    Fecha: 2025-06-15
    Licencia: MIT License
    Este archivo contiene estilos CSS para hacer que el sitio web sea responsivo y se adapte a diferentes tamaños de pantalla.
*/


/* Eventos */
.events-section {
    padding: 80px 40px;
}

.events-container {
    max-width: 1000px;
    margin: 0 auto;
}

.event {
    display: flex;
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-right: 4px solid #5bdafd;
}

.event:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
}

.event-date {
    background-color: #ff8eff;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.event-day {
    font-size: 36px;
    font-weight: bold;
}

.event-month {
    font-size: 18px;
    text-transform: uppercase;
}

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

.event-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff8eff;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
}

.event-description {
    line-height: 1.6;
}