* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
}
body::before {
  content: "";
  background-image: url('/static/img/dji_fly_20230711_174052_291_1689395541244_photo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed; /* Fijo para que no se desplace con el scroll */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  -webkit-transform: translateZ(0); 
  -webkit-backface-visibility: hidden;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5); /* Capa negra con 50% de opacidad */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
    background: linear-gradient(to bottom, rgba(201, 228, 184, 0.664), #4fbdbda6);
    display: flex;
    height: 80px;
    position: relative;
    color: rgb(0, 0, 0);
    padding: 10px;
    text-align: center;
    z-index: 1000;
}
.arriba{
    display: flex;
    align-items: center;
    height: 70px;
    justify-content: space-between;
}
.arriba img {
    max-height: 60px;
    border-radius: 50%;
}

.titulo {
    flex-grow: 100;
    font-size: 2.8em;
    text-align: left;
    margin: auto 10px;
    color: rgb(10, 63, 56)
}


nav {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 150px;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: auto ;
    margin-right: auto;
    flex-grow: 1;
}

.menu .links {
    font-size: 1.25em;
    text-align: center;
}
.menu .links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin: 0 10px;
}
.user-options {
    display: flex;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 20px; 
}
.cerrar_sesion{
    width: 200px;
}
.user-options img {
    width: 30px;
    margin-right: 10px;
}
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px; 
}
.menu-checkbox {
    display: none;
}

/* Estilo del contenedor de iconos de navegación */
.nav-iconos {
    color: #000000;
    display: flex;
    align-items: center;
    position: absolute;
    right: 20px;
}

/* Íconos generales */
.nav-iconos i {
    display: inline-block;
    font-size: 35px;
    color: #000000; /* Color blanco para contrastar con el fondo */
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-iconos i:hover {
    color: #214d28; /* Color cálido que combina con la estética de La Kumbre */
}

/* Estilo del dropdown del usuario */
.nav-user-dropdown {
    margin-left: 20px;
    position: relative;
}
/* Inicialmente ocultamos el menú */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #47636ed5; /* Fondo elegante */
    color: white;
    min-width: 160px;
    right: 0;
    top: 35px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 10px 0;
}

/* Cuando se activa con JavaScript, se muestra */ 
.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    transition: background 0.3s ease;
}

.dropdown-content a i {
    margin-right: 8px;
}

.dropdown-content a:hover {
    background-color: #42b98c;
    color: #35535f;
}

/* Estilo para el contenedor del usuario */
.nav-user-dropdown {
    color: #000000;
    position: relative;
    cursor: pointer;
}

/* Mostrar dropdown al pasar el mouse */
.nav-user-dropdown:hover .dropdown-content {
    display: block;
}

/* Carrito de reservas */
.cart-icon-container {
    position: relative;
}

.cart-icon-container a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    position: relative;
}

#contador-carrito {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #81e4bb; 
    color: rgb(0, 0, 0);
    font-size: 12px;
    font-weight: bold;
    padding: 3px 7px;
    border-radius: 50%;
}

/* Icono de menú responsive */
#menu-icon {
    font-size: 26px;
    display: none; /* Se oculta en pantallas grandes */
}

/* Responsive para móviles */
@media (max-width: 1180px) {
    #menu-icon {
        display: block;
    }

    .nav-iconos {
        gap: 10px;
    }
    .nav-iconos {
        color: #000000;
        display: flex;
        align-items: center;
        position: absolute;
        right: 60px;
    }
    .nav-iconos i {
        display: inline-block;
        font-size: 25px;
        margin-top: 11px;
    }
    
}
@media (max-width: 768px) {
    body {
        background-size: cover; /* Para dispositivos móviles */
        background-position: center center;
    }
}
@media (max-width: 1125px) {
    header{
        height: 80px;
    }
    .arriba{
        font-size: 0.9em;
    }
    .titulo{
        font-size: 1.5em;
    }
    nav {
        flex-direction: column;
        align-items: center;
    }
    .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: linear-gradient(to bottom, #c1e1c1, #a8d5a8);
    position: absolute;
    top: 80px;
    left: 0;
    padding: 15px 0;
    z-index: 1001;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
}

.menu .logo {
    text-align: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.menu .logo:hover {
    transform: scale(1.05);
}

.menu .links {
    text-align: center;
    padding: 10px 0;
    width: 90%;
}

.menu .links a {
    display: block;
    padding: 12px;
    margin: 8px 0;
    color: #2a6e55;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.menu .links a:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    border-left: 3px solid #2a6e55;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.menu-checkbox:checked ~ .menu {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pequeña animación para el botón del menú (asumiendo que tienes uno) */
.menu-button {
    transition: transform 0.3s ease;
}

.menu-checkbox:checked ~ .menu-button {
    transform: rotate(90deg);
}

/* Efecto de ondulación para los enlaces cuando se pulsan */
.menu .links a:active {
    background-color: #e8f5e8;
    transform: scale(0.98);
}

/* Si quieres añadir algún efecto a cada elemento del menú cuando aparece */
.menu .links a {
    animation: slideIn 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--item-index, 0));
    opacity: 0;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
    .menu-icon {
        display: block;
    }
    .user-options {
        position: absolute;
        top: 20px;
        right: 50px;
    }
}
/* centro */

.contenedor-carrusel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carrusel {
    display: flex;
    white-space: nowrap;
    transition: transform 0.5s ease-in-out;
}
.fotos{
    min-width: 100%;
    display: flex;
}
.fotos img{
    width: 33.50%;
    height: 250px;
}
.container {
    display: flex;
    flex-direction: row;
    height: 300px;
    width: 100%;
}
.controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.control {
    background-color: #00000000;
    width: 30px;
    color: #15792e91;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 50%;
}
@media(max-width:950px){
    .container{
        height: 200px;
    }
}
@media(max-width:606px){
    .container{
        height: 100px;
    }
    .fotos img{
        height: 150px;
    }
}




.section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    background-color: #fff; 

}

.title {
    color: #000000;
    font-size: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.title h1 {
    font-size: 1.6rem;
    margin: 0 10px;
}

.section img {
    width: 250px;
    height: 230px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.section h2 {
    font-size: 1.4rem;
    margin: 5px 0;
    color: rgb(211, 185, 69);
}

@media (max-width: 1000px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .section {
        flex-direction: row;
        height: auto;
        gap: 10px;
    }

    .title h1 {
        font-size: 1.5rem;
    }

    .section img {
        width: 150px;
        height: 150px;
    }

    .section h2 {
        font-size: 1.5rem;
    }
}   








/* footer */
body {
    padding-bottom: 0px; 
}



  
  
/* Nuevo estilo para el footer */
footer {
    width: 100%;
    background: linear-gradient(to bottom, rgb(201, 228, 184), #4fbdbd);
    color: #000000;
    padding: 30px 20px;
    height:auto;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-item {
    flex-basis: 22%;
    margin-bottom: 10px;
}

.footer-item h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-item p, .footer-item ul {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-item a {
    text-decoration: none;
    color: #000000;
}

.footer-item a:hover {
    color: #213501;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
}
@media (max-width: 768px) {
    .swal-mobile-container {
      z-index: 9999;
      margin-top: 0 !important;
    }
    .swal2-popup {
      font-size: 0.8rem !important;
      max-width: 90vw;
    }
  }
/* Media queries para responsividad */
@media (max-width: 800px) {
    .footer-item {
        flex-basis: 45%;
    }
}

@media (max-width: 600px) {
    .footer-item {
        flex-basis: 100%;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}