.hero-parallax {
  position: relative;
  min-height: 95vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* efecto parallax simple */
  display: flex;
  align-items: center;
  
}




body {
    
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1e2226;
}
   

:root {
    --bg-color: #9b9541;
    --web-color: #40B2D2;
  
   
}



.productos-items{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    grid-gap:1rem;
    justify-content:center;


}

.bg-body-tertiary {
    background-color:#9b9541;
}
.custom-navbar {
    background-color: #3498db; 
}
.navbar-brand img {
    opacity: 1; 
    position: relative; 
    margin-bottom: 10px;
    background-color: white;
}




/* ----------------------------------------------CSS DE LOS SERVICIOS --------------------------------------------------------------------*/
.servicios-container {
    background-color: #1e2226;
    padding: 20px;
    color: white;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: center;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 18px;
    padding: 10px;
    width: 100%;
}

.service-item i {
    font-size: 36px;
    margin-bottom: 8px;
    color: white;
}

.service-item span {
    font-size: 15px;
    margin-bottom: 8px;
    color: white;
}

.titulo-producto {
    font-size: 40px;
    font-weight: bold;
    color: #ffbf00;
    text-align: center;
    margin-bottom: 30px;
}


.titulo-producto2 h1 {
    font-size: 40px;
    font-weight: bold;
    color: #ffbf00;
    text-align: center;
    margin-bottom: 30px;
}


.beneficios-container {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px;
    background-color: #332600;
    width: 100%;
    max-width: 400px;
    color:white;
}


/* ----------------------------------------------CSS DEl reseñas --------------------------------------------------------------------*/

.reseñas-section {
  background-color: #1e2226;
}

.reseña-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  height: 100%;
}

.reseña-card:hover {
  transform: translateY(-8px);
}

.reseña-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #fff;
}

.reseña-nombre {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  color: #ffffff;
}

.reseña-estrellas {
  color: #ffc107;
  font-size: 20px;
  margin: 5px 0;
}

.reseña-texto {
  font-size: 15px;
  color: #ddd;
  line-height: 1.5;
}

/* ----------------------------------------------CSS DEl footer --------------------------------------------------------------------*/
.cm-footer {
  background: radial-gradient(circle at top, #20142f 0%, #08070b 55%, #040307 100%);
  color: #f5f1ff;
  padding: 24px 40px 18px;
  width: 100%;
  font-family: Arial, sans-serif;
  border-top: 1px solid rgba(247, 227, 138, 0.35);
}

.cm-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cm-footer-block {
  flex: 1 1 200px;
}

/* Marca */
.cm-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cm-footer-logo-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cm-footer-logo {
  max-width: 46px;
  max-height: 46px;
}

.cm-footer-title {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.cm-footer-subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: #d0c4ff;
}

/* Dirección */
.cm-footer-address p {
  margin: 2px 0;
}

.cm-footer-small {
  font-size: 0.8rem;
  color: #a49ac4;
}

/* Contacto y redes */
.cm-footer-contact {
  text-align: right;
}

.cm-footer-label {
  margin: 0 0 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.82rem;
  color: #f7e38a;
}

.cm-footer-contact p {
  margin: 2px 0;
}

.cm-footer-contact a {
  color: #f7e38a;
  text-decoration: none;
}

.cm-footer-contact a:hover {
  color: #ffe99a;
}

/* Íconos sociales */
.cm-footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 6px;
}

.cm-footer-social a {
  font-size: 1.5rem;
  color: #d4a000;
  transition: transform 0.25s ease, color 0.25s ease;
}

.cm-footer-social a:hover {
  transform: translateY(-2px) scale(1.1);
  color: #ffe99a;
}

/* Franja inferior */
.cm-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 14px;
  padding-top: 8px;
  font-size: 0.82rem;
  color: #a49ac4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.cm-footer-bottom-separator {
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .cm-footer {
    padding: 20px 20px 16px;
  }

  .cm-footer-inner {
    align-items: flex-start;
  }

  .cm-footer-contact {
    text-align: left;
  }

  .cm-footer-social {
    justify-content: flex-start;
  }
}


.beneficios-container {
   
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 10px;
    gap: 10px;
  margin: 20px;
}



.beneficios-container p {
    margin: 0;
    word-break: break-word;
}


/* ----------------------------------------------CSS DEl LANDING --------------------------------------------------------------------*/


.container-landing {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 50px;
   
    margin: 0 auto;
    max-width: 800px;
      
}
.img_container {
    flex: 1;
    width: 100%;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    
}

.rowlanding {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 0 auto;
    margin-top: 20px;
    width: 100%;
   
}
.img_landing {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.TituloLanding {
    text-align: center;
    margin-bottom: 20px;
}

.TituloLanding h1 {
    font-size: 36px;
    font-weight: bold;
    color: #a39c30; 
    margin-bottom: 10px;
}

.TituloLanding h2 {
   
    color: #a39c30;
    margin-bottom: 20px;
}

.textlanding{
   
    margin: 30px 30px 30px 30px;
    margin-bottom: 0;
}
.probanding{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
  


}


section {
    display: flex;
    flex-direction: column;
    align-items: center;
}



@media (min-width: 768px) {
    .container-landing {
        flex-direction: row;
        justify-content: space-between;
    }

    .TituloLanding {
        flex-basis: 100%;
        margin-bottom: 40px;
    }

    .text_container, .form_container {
        flex-basis: 45%;
    }
}

/*** ----------------------------------------------CSS DE navvar --------------------------------------------------------------------*/

.background-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
    position: relative;
    z-index: 0;
}

.navbar-nav .nav-item .nav-link:hover {
  
    text-shadow: 0 0 10px white;
}


/* Navbar sobre fondo con blur + semi opaco */
.navbar-custom {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    padding: 10px 20px;
    z-index: 1000;
}

/* Asegura que el navbar esté sobre el overlay */
.navbar {
    position: relative;
    z-index: 2;
}

/* Enlaces del menú */
.nav-link {
    color: white !important;
    margin-right: 15px;
    font-size: 1.25rem;
    font-weight: bold; /* Añadido */
}


.nav-item {
    margin-right: 30px; /* Espacio entre los enlaces */
}


/* Enlace activo resaltado */
.nav-link.active {
    font-weight: bold;
    border-bottom: 2px solid white;
   
}

/* Botón de reserva */
.btn-reserva {
    background-color: #a39c30;
    color: white;
    font-weight: bold;
    border-radius: 20px;
    padding: 8px 16px;
    transition: 0.3s ease;
    margin-right: 30px;
    font-size: 1.5rem;
}

.btn-reserva:hover {
    background-color: #918b2c;
    color: #fff;
}

.divider-gold {
    width: 150px; /* puedes ajustar el tamaño */
    height: 3px;
    margin-left: 40%;
    background-color: #a39c30; /* dorado */
    margin-bottom: 20px;
    margin-top:10px;
}

.button-background{

    position: absolute; 
    bottom: 20px; 
    left: 50%;
    transform: translateX(-50%);
}



@keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }

}
  
  /* ANIMACIÓN DE SALIDA */
@keyframes slideUp {
    from {
      transform: translateY(0);
      opacity: 1;
    }
    to {
      transform: translateY(-100%);
      opacity: 0;
    }

}
  
  /* Aplica al navbar */
.navbar-animate {
    animation: slideDown 0.6s ease-out forwards;
}

  
  





  /* ----------------------------------------------CSS DEl Carrusel habitaciones --------------------------------------------------------------------*/
/* Fondo general de tarjetas */
.card {
  background-color: #1e2226;
  color: #f0e6d2; /* beige claro */
  border: 1px solid #2d2f34;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Efecto hover elegante */
.card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* Carrusel más limpio */
.card .carousel-inner {
  max-height: 220px;
}
.card .carousel-inner img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-bottom: 2px solid #f0e6d2;
}

/* Botones del carrusel en dorado suave */

/* Títulos */
.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #f9d47a; /* dorado */
}

/* Texto descriptivo */
.card-text {
  font-size: 0.95rem;
  color: #cfcfcf;
  flex-grow: 1;
}

/* Botón primario estilizado */
.card .btn-primary {
  background-color: #f9d47a;
  color: #1e2226;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
}

.card .btn-primary:hover {
  background-color: #d4b64c;
  color: #fff;
}

/* GALERIAAAAAAAAAAAAA PROOOOOOOOOOO GALERIIAAAAAAAAAAAAAAAAAAAAAAAAAAAA*/
.galeria {
    padding: 40px;
    
    text-align: center;
}

.galeria-titulo {
    font-size: 28px;
    color: #a39c30;
    margin-bottom: 30px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.galeria-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.03);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}




.cm-contact-section {
  background: radial-gradient(circle at top, #2a1a39 0%, #120c18 55%, #08060c 100%);
  color: #f5f1ff;
  padding: 60px 20px;
  border-top: 1px solid rgba(247,227,138,0.25);
}

.cm-contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #f7e38a;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cm-contact-line {
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.5;
  color: #e1d8ff;
}

.cm-label {
  color: #f7e38a;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.cm-link {
  color: #f7e38a;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}
.cm-link:hover {
  color: #ffe99a;
}

.cm-contact-social {
  display: flex;
  gap: 20px;
}

.cm-contact-social a {
  font-size: 1.8rem;
  color: #d4a000;
  transition: transform 0.3s ease, color 0.3s;
}

.cm-contact-social a:hover {
  transform: scale(1.2);
  color: #ffe99a;
}

.cm-map-wrapper {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .cm-contact-title {
    text-align: center;
  }

  .cm-contact-line {
    text-align: center;
  }

  .cm-contact-social {
    justify-content: center;
  }
}
