@import url("../css/styles.css");

.header{
    background: url('../img/headers/accomodations.webp') center/cover no-repeat;
}
.title{
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.caracteristics{
    font-size: clamp(.99rem, 1.4vw, 1.1rem);
}

.hotel-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: .5rem;
    overflow: hidden;
    max-width: 370px;
    width: 100%;
    height: 490px;
    justify-content: center;
    transition: 0.15s ease;
}

.hotel-card:hover{
    transform: scale(1.03);
}

.info{
    padding: 0 2rem;
}

.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-card .px-1 {
    flex-grow: 1;
}

.reserva {
    background: var(--dark-blue);
    text-decoration: none;
    color: white;
    text-align: center;
    width: 80%;
    margin: auto;
    padding: .5rem 0;
    border-radius: .5rem;
    margin-top: auto;
    margin-bottom: 2rem;
    transition: 0.15s ease;
}

.reserva:hover {
    background: var(--medium-blue);
}
