* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 200vh;
  font-family: 'Poppins', sans-serif;
  background-color: #F8F9F9; /* Fondo claro */
  color: #333;
}


  /* estilo de la barra de navegacion */
  
  /* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.nav-transparent {
  background: transparent;
}

.nav-transparent .nav-links a {
  color: white;
}

.nav-scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-scrolled .nav-links a {
  color: #333;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  color: #FF5733;
}

.nav-links a:hover {
  color: #FFC300;
}

.highlight-btn {
  background: #FFC300;
  color: white !important;
}

.highlight-btn:hover {
  background: #FF5733;
  color: white !important;
}


  .logo-container {
    width: 70px;
    height: 70px;
    order: -1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-container img {
    width: 85px;
    height: 85px;
    object-fit: contain;
  }

  .menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #333;
  }

  .nav-transparent .menu-btn {
    color: white;
  }

  @media (max-width: 768px) {
    .menu-btn {
      display: block;
    }

    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: white;
      flex-direction: column;
      padding: 1rem;
      gap: 1rem;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
      display: flex;
    }

    .nav-links a {
      width: 100%;
      text-align: center;
      color: #333 !important;
    }
  }

  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
  }
  /* fin del codigo */



 .arrow-down-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Arial', sans-serif;
}

.arrow-down-container p {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.arrow-down {
  position: relative;
  width: 24px;
  height: 24px;
  border: 3px solid #ffbd59; /* Color del borde */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounce 1.5s infinite;
}

.arrow-down::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-left: 3px solid #ffbd59;
  border-bottom: 3px solid #ffbd59;
  transform: rotate(-45deg);
  bottom: 4px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(6px);
  }
  60% {
    transform: translateY(3px);
  }
}

  /* fin */


  #map {
    height: 60vh; /* Altura del mapa */
    width: 100%;
  }

  

  /* Background Section */
.background-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url('path-to-party-pattern.png') center/cover no-repeat;
}

.overlay-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.position-absolute {
    z-index: 1; /* Asegura que el contenido esté por encima de la imagen de fondo */
}




/* Gallery Styles */
.gallery-item img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* fin de codigo */







/* Estilos generales */
.background-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Ocupa toda la altura de la ventana */
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantiene las proporciones */
  z-index: -1; /* Mueve la imagen al fondo */
}

/* Contenedor superpuesto */
.overlay-content {
  background: rgba(0, 0, 0, 0.6); /* Crea una superposición oscura */
  padding: 2rem; /* Espaciado interno */
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8); /* Mejora la legibilidad del texto */
}

/* Estilo para la imagen destacada */
.rounded-img {
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Sombra para la imagen */
}

/* Respuesta para dispositivos pequeños */
@media (max-width: 768px) {
  .overlay-content {
      padding: 1rem;
  }

  h1.display-4 {
      font-size: 2rem; /* Ajusta el tamaño del título en pantallas pequeñas */
  }

  .fw-bold.fs-3 {
      font-size: 1.5rem;
  }
}



/* comentarios */
.comment-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.comment-card {
  width: 250px;
  border-radius: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  background-color: #f8f9fa;
}
.profile-pic {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-bottom: 10px;
}



.payment-container {
  background-color: #8f8239; /* Fondo negro */
  color: #fff; /* Texto blanco */
  padding: 30px 0; /* Espaciado arriba y abajo */
  text-align: center;
}
.payment-title {
  font-size: 1.5rem; /* Tamaño del texto del título */
  font-weight: bold;
  margin-bottom: 20px;
}



.cotizacion-section {
  position: relative;
  background: url('https://source.unsplash.com/1600x600/?event,tent') no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  color: white;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8f8239;
}

.cotizacion-box {
  position: relative;
  z-index: 2;
  border: 2px solid white;
  padding: 20px;
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.cotizacion-box h2 {
  font-size: 24px;
  font-weight: bold;
}

.cotizacion-box .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}

.cotizacion-box .divider::before,
.cotizacion-box .divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: white;
  margin: 0 10px;
}

.divider i {
  font-size: 20px;
}



.benefits-section {
  background: #8f8239;
  padding: 50px 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.benefit-item {
  text-align: center;
  padding: 20px;
}

.benefit-item i {
  font-size: 50px;
  color: #ffffff;
}

.benefit-item h4 {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 10px;
}

.benefit-item p {
  font-size: 16px;
  color: #ffffff;
}

.cat {
  background-image: url('imagenes/logos/F3.png'); /* Cambia la URL para personalizar la imagen de fondo */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 90vh;
  padding: 50px 0;
  width: 100%; /* Asegura que no haya desbordamiento horizontal */
  overflow: hidden; /* Evita que elementos internos causen desbordamiento */
  box-sizing: border-box; /* Garantiza que el padding no afecte el ancho */
}

.scrollspy-example-2{
  height: 70vh;
}





/* Estilos para los enlaces rápidos */
.footer-links a {
  position: relative;
  text-decoration: none;
  color: #f8f9fa;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Efecto de subrayado con animación */
.footer-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #8f8239;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #8f8239;
  transform: translateX(5px);
}

.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}