body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1c1f26;
    color: white;
    overflow-x: hidden;
  }

  .hero {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 90%;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 16px;
}

  @media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .hero {
        height: 50vh;
    }

    .hero-content {
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-info {
        padding: 10px 20px;
        font-size: 14px;
    }

    .info-container h2 {
        font-size: 20px;
    }

    .info-container p {
        font-size: 14px;
    }

    .album-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas */
        gap: 5px;
    }
}

.video-container {
    width: 100%;
    max-width: 670px; /* Ancho máximo del video */
    margin: 0 auto; /* Centrar el video horizontalmente */
}

video {
    width: 100%; /* El video ocupa el 100% del contenedor */
    height: auto; /* Ajusta la altura automáticamente */
}

/* Menú de navegación */
#menu {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 10px 20px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.menu-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20%;
}

.logo-container img {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: rgb(200, 200, 200);
}

/* Estilo del botón de hamburguesa */
#menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 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);
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background-color: #1c1f26;
    color: #f4b400;
}

/* Estilo de la sección de información */
.info-section {
    padding: 50px 20px;
    background-color: #2a2f38;
    text-align: center;
}

.info-container {
    max-width: 800px;
    margin: 0 auto;
    color: white;
    animation: fadeIn 1.2s ease-in-out;
}

.info-container h2 {
    font-size: 24px;
    color: #f4b400;
    margin-bottom: 15px;
}

.info-container p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.divider {
    width: 50%;
    height: 2px;
    margin: 30px auto;
    background-color: #f4b400;
}

/* Botón de reserva */
.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;
}


.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);
}


/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background-color: #1c1f26;
    color: #f4b400;
}


.alojamiento-section {
    padding: 50px 20px;
    background-color: #2a2f38;
    text-align: center;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.amenities-list li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #e8e8e8;
    display: flex;
    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);
}


.enelmedio {
    text-align: center;
}



.amenities-list li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #e8e8e8;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
