﻿/* SECCIÓN AGENDA */
.agenda-section {
    background-color: #e7dac2;
    width: 100%;
    position: relative;
    padding-bottom: 5rem;
    background-image: url('/images/fondos/fondo_agenda.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

/* Título de la agenda */
.agenda-title {
    font-family: 'Rokkitt', serif;
    font-weight: inherit;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: #891332;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

/* Imagen roja horizontal */
.agenda-full-width-image {
    width: calc(100% + 4rem);
    height: auto;
    margin-left: -2rem;
    margin-right: -2rem;
    max-width: none;
}

/* Contenedor de lista de eventos */
.agenda-list {
    background-image: url('/images/seccion_agenda/fondo_fechas.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Imagen de línea divisoria */
.agenda-line-image {
    width: calc(100% + 8rem);
    height: auto;
    margin-left: -4rem;
    margin-right: -4rem;
    max-width: none;
}

/* Tarjeta de evento */
.agenda-card {
    width: 100%;
}

/* Estructura interna: fecha + ciudad | venue | botón */
.agenda-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

/* Izquierda: fecha y ciudad */
.agenda-fecha {
    font-family: 'Rokkitt', serif;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 140px;
}

.fecha-columna {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 2rem;
}

.agenda-day {
    font-size: clamp(2rem, 7vw, 7rem);
    line-height: 1;
}

.agenda-month {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
}

.agenda-city {
    margin-left: 6rem;
    font-size: clamp(1.3rem, 4vw, 2rem);
    font-weight: 600;
}

/* Centro: venue */
.agenda-venue {
    flex: 1;
    text-align: center;
    font-size: clamp(1.3rem, 4vw, 2rem);
    font-weight: bold;
    font-family: 'Rokkitt', serif;
    color: #891332;
}

/* Derecha: botón */
.agenda-button {
    font-family: 'Rokkitt', serif;
    background-color: black;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .agenda-button:hover {
        background-color: white;
        color: black;
        border: 2px solid black;
    }

/* Estilos para franjas vacías */
.agenda-card.empty {
    color: #ccc;
}

/* -------------------------------------- */
/* RESPONSIVE - TABLET / MÓVIL */
/* -------------------------------------- */
@media (max-width: 768px) {
    .agenda-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .agenda-list {
        margin-top: 0rem;
        margin-bottom: -2rem;
    }

    .agenda-fecha {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .agenda-city {
        margin-top: 2rem;
        margin-left: 1rem;
        font-size: clamp(1.2rem, 4vw, 1.4rem);
    }

    .agenda-venue {
        text-align: left;
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    .agenda-button {
        align-self: flex-start;
        font-size: clamp(1rem, 5vw, 1.1rem);
        padding: 0.7rem 1.5rem;
        margin-top: 0.5rem;
        margin-bottom: -1rem;
    }

    .agenda-line-image {
        margin-top: 1rem;
        width: calc(100% + 6rem);
        margin-left: -3rem;
        margin-right: -3rem;
    }

    .agenda-title {
        margin-top: 0rem;
    }
}
