/* Opción 3: Degradado en tonos azules */
.turs-navbar-blue {
  /* background-color: #336699 !important ; */
  background-color: #f7f9f9 !important ;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilos comunes */
.turs-brand-text {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  color: #080087;
}

.turs-nav-link {
  font-family: "Open Sans", sans-serif;
  transition: color 0.3s ease, background-color 0.3s ease;
  color: #080087 !important;
}

.turs-nav-link:hover,
.turs-nav-link.active {
  color: #000000 !important;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.swiper {
  width: 100%;
  max-width: 100%;
}
.swiper-slide {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  width: 100%;
  height: 750px;
  display: block;
  object-fit: cover;
}

.fix-footer {
  background-color: #222c89 !important ;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Para desplegar dropdown */
.dropdown:hover .dropdown-menu {
  display: block !important;
  margin-top: 0 !important;
}

/* Css para el submenu*/
/* CSS personalizado para un submenú de turismo */

.custom-dropdown {
  background: #ffffffd5;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.custom-dropdown .dropdown-item {
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  color: #333333;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-dropdown .dropdown-item:hover,
.custom-dropdown .dropdown-item:focus {
  background-color: #f0f0f0;
  color: #007bff;
}

/* Estilos de las tarjetas de destino/huatulco/servicio */
.card-custom {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}
.btn-custom {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.card-custom .btn-primary:hover {
  background-color: #007f6e; /* Oscurecimiento al pasar el cursor */
}

/* Galeria de detalles */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 100%;
}
.gallery-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.gallery-item:hover {
  transform: scale(1.05);
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.gallery-item h3 {
  font-size: 18px;
  margin: 10px 0;
}
.gallery-item p {
  font-size: 14px;
  color: #666;
  padding: 0 10px 15px;
}
