/* ===========================
 *  PÁGINA DE RESERVAS
 = *========================== */

.reservation-page {
    padding: 90px 0 110px;
    background: #faf9f7;
}

/* ===========================
 *  CABECERA
 = *========================== */

.reservation-page .section-title {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.reservation-page .section-title h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.15;
    color: #222;
    margin-bottom: 25px;
}

.reservation-page .section-title > p:last-child {
    font-size: 1.15rem;
    color: #666;
}

/* ===========================
 *  GRID
 = *========================== */

.reservation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===========================
 *  TARJETAS
 = *========================== */

.reservation-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.07);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.reservation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* ===========================
 *  IMAGEN
 = *========================== */

.reservation-image {
    height: 300px;
    overflow: hidden;
}

.reservation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.reservation-card:hover .reservation-image img {
    transform: scale(1.04);
}

/* ===========================
 *  CONTENIDO
 = *========================== */

.reservation-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.reservation-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 15px;
}

.reservation-description {
    color: #666;
    margin-bottom: 25px;
}

/* ===========================
 *  INFORMACIÓN
 = *========================== */

.reservation-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 0;
    margin-bottom: 25px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: .95rem;
}

/* ===========================
 *  BOTONES
 = *========================== */

.reservation-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.reservation-buttons .button {
    width: 100%;
    text-align: center;
}

.button-secondary {
    background: transparent;
    color: #B58A52;
    border: 1px solid #B58A52;
}

.button-secondary:hover {
    background: #B58A52;
    color: white;
}

/* ===========================
 *  INFORMACIÓN FINAL
 = *========================== */

.reservation-note {
    max-width: 800px;
    margin: 80px auto 0;
    padding: 40px;
    text-align: center;
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
}

.reservation-note h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.reservation-note p {
    color: #666;
}

/* ===========================
 *  TABLET
 = *========================== */

@media (max-width: 1000px) {

    .reservation-grid {
        grid-template-columns: 1fr 1fr;
    }

}

/* ===========================
 *  MÓVIL
 = *========================== */

@media (max-width: 700px) {

    .reservation-page {
        padding: 60px 0 80px;
    }

    .reservation-grid {
        grid-template-columns: 1fr;
    }

    .reservation-image {
        height: 260px;
    }

    .reservation-content {
        padding: 25px;
    }

}
