body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1c1f26;
    color: white;
    text-align: center;
}

.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    background: url('/imagenes/perro-y-trufa-2.jpeg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
 ul {
    list-style: none;
 }

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.5;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20%;
}

.logo-container img {
    height: 80px;
}

.alojamiento-section {
    padding: 50px 20px;
    background-color: #2a2f38;
    text-align: center;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    text-align: center;
}

.amenities-list li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #e8e8e8;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

.btn-info {
    padding: 12px 25px;
    background-color: #f4b400;
    color: #1c1f26;
    font-weight: bold;
    border-radius: 25px;
    display: inline-block;
    transition: background-color 0.3s ease-in-out;
    text-transform: uppercase;
}

.btn-info:hover {
    background-color: #e1a700;
}

.btn-info-verde {
    padding: 12px 25px;
    background-color: #00f421;
    color: #1c1f26;
    font-weight: bold;
    border-radius: 25px;
    display: inline-block;
    transition: background-color 0.3s ease-in-out;
    text-transform: uppercase;
}

.btn-info-verde:hover {
    background-color: #00d91f;
}

.divider {
    width: 50%;
    height: 2px;
    margin: 30px auto;
    background-color: #00f421;
}

footer {
    padding: 20px;
    text-align: center;
    background-color: #1c1f26;
    color: #f4b400;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px auto;
    padding: 10px;
    max-width: 1200px;
}

.photo-grid {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-grid:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .album-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .album-grid {
        grid-template-columns: 1fr;
    }
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}


.map-container {
    width: 90%; /* Ajusta según el tamaño deseado */
    max-width: 800px; /* Tamaño máximo para pantallas grandes */
    height: 500px; /* Ajusta según el tamaño deseado */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Elimina contenido extra */
  }