/* Ajustes mínimos solo para la página de reservas */

main {
    padding-top: 0;
}

#reservas {
    scroll-margin-top: 110px;
}

.reservas-content--single {
    grid-template-columns: 1fr;
    justify-items: center;
}

.reservas-simple {
    width: min(720px, 100%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reservas-simple .reservation-actions {
    align-items: center;
}

.reservas-simple .reservation-notice {
    text-align: center;
}

@media (max-width: 768px) {
    main {
        padding-top: 0;
    }

    #reservas {
        scroll-margin-top: 100px;
    }
}

.text-center {
    text-align: center;
}

.reservas-social {
    padding: 1.5rem 0 0.5rem;
    background: #fff;
}

.reservas-social .social-links {
    display: flex;
    justify-content: center;
    gap: 1em;
    list-style: none;
    padding: 0;
    margin: 1em 0 0;
}

.reservas-social .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    color: #ab192d;
    border: 1px solid #ab192d;
    transition: background 0.3s, color 0.3s;
}

.reservas-social .social-links a:hover {
    background: #ab192d;
    color: #fff;
}

.reservas-social .social-links svg {
    fill: currentColor;
}

footer {
    display: block;
    background-color: #fff;
    padding: 1em;
    border-top: 1px solid #eee;
    color: #ab192d;
    text-align: center;
}
