/* hotel.css */

/* Estilos para o banner do Hotel Eco Chalé */
.hoteis-page .hotel-banner {
    background-image: url('../images/Capa_-_Site.webp'); 
}

/* Estilos para o banner do hotel */
.hotel-banner {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 50px 0;
    height: 200px;
}

.hotel-banner h1 {
    font-size: 3em;
    margin: 50px;
    text-shadow: 0.1em 0.1em 0.2em black
}

/* Estilos para o conteúdo do hotel */
.hotel-content {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.hotel-description {
    display: grid;
    grid: 600px / 1fr 1fr;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.hotel-text {
    flex: 1;
    
}

.hotel-text h2 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.hotel-text h2::after {
    content: '';
    display: block;
    width: 180px;
    height: 5px;
    background-color: #FFC600;
    position: absolute;
    left: 0;
    bottom: 0;
}

.hotel-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blue-box {
    background-color: #054e72;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 5px 5px 0 0; /* Adicionado borda arredondada superior */
    margin-bottom: 0; /* Removido o espaço em branco */
    margin-top: 10px;
}

.hotel-gallery h2 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: white;
}

.hotel-gallery h2::after {
    content: '';
    display: block;
    width: 230px;
    height: 5px;
    background-color: #FFC600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.large-image {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.large-image img {
    width: 100%;
    height: auto;
    border-radius: 0 0 5px 5px; /* Adicionado borda arredondada inferior */
}

.thumbnails {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 0; /* Removido espaço extra */
}

.thumbnails img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

.hotel-map {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    margin-bottom: 20px;
}

.hotel-map h2 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.hotel-map h2::after {
    content: '';
    display: block;
    width: 150px;
    height: 5px;
    background-color: #FFC600;
    position: absolute;
    left: 0;
    bottom: 0;
}

.hotel-description h2, .hotel-map h2 {
    color: #0072CE;
    margin-top: 30px;
}

.hotel-gallery h2 {
    color: white;
    margin-top: 0; /* Ajustado para remover espaço extra */
}

.hotel-description p, .hotel-description li, .hotel-gallery p, .hotel-map p {
    color: #666;
}

.hotel-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

@media (max-width: 768px) {

    .package-banner {
        background-image: url('../images/Capa\ -\ Site\ Celular.webp');
    }

    .hotel-description {
        grid: 600px / 1fr 
    }

    .hotel-gallery {
        order: -1; /* Garantir que a galeria venha antes no fluxo */
    }

    .hotel-text {
        flex: none;
        width: 85%;
    }
    .hotel-banner h1 {
        font-size: 2em; /* Reduzir o tamanho da fonte */
        margin: 30px;
    }   
    
    .large-image img {
        width: 100%; /* Garantir que a imagem ocupe toda a largura disponível */
    }
}

@media (max-width: 425px) {
    .package-banner {
        background-image: url('../images/Capa_-_Site.webp');
    }
}