/* Estilos Generales */
body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(to bottom, #000000 0%, #7a1b12 100%);
  color: #ffffff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Header */
header {
  width: 100%;
  background-color: #000000;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Logo */
.logo {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.navbar .logo {
  max-height: 100px;
  height: auto;
  transition: max-height 0.3s ease;
}

/* Sección Hero */
.hero-section {
  text-align: center;
  padding: 150px 20px 20px;
  color: #ffffff;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #dddddd;
}

/* Botones */
button {
  background-color: #70fdf6;
  color: #000000;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #ea4125;
  color: #ffffff;
  transform: scale(1.05);
}

/* Cards alojamiento */
.card {
  background-color: #000000;
  color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  box-shadow: 0 0 15px rgba(112, 253, 246, 0.25); /* toque turquesa */
  border: 1px solid #ea4125;
}

.card a {
  color: #70fdf6; /* turquesa botón "Pronto a la venta" */
  text-decoration: none;
  font-weight: bold;
}

.card a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* Estilos del botón de información y sold out */
.info-btn, .sold-out-btn {
  background-color: #70fdf6;
  color: #000000;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  width: calc(100% - 40px);
  margin: 0 auto;
  display: block;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.sold-out-btn {
  background-color: #7a7a7a;
  color: #ffffff;
  cursor: not-allowed;
}

.info-btn:hover {
  background-color: #ea4125;
  color: #ffffff;
  transform: scale(1.05);
}



/* Estilos de los paquetes */
.package-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
}

/* Card de alojamiento */
.card {
  background-color: #000000;
  color: #ffffff;
  border-radius: 10px;
  width: 300px;
  margin: 20px;
  box-shadow: 0 4px 15px rgba(112, 253, 246, 0.15); /* sombra turquesa */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid #ea4125;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(234, 65, 37, 0.35); /* sombra roja */
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.card-header {
  margin-bottom: auto;
}

/* Título del alojamiento */
.card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #70fdf6; /* turquesa Sunblast */
}

/* Descripción */
.card p {
  color: #dddddd;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Estilos del precio */
.price {
  font-size: 24px;
  font-weight: bold;
  background-color: #70fdf6;
  color: #000000;
  padding: 12px 20px;
  border-radius: 20px;
  margin: 40px auto 20px;
  position: relative;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  width: fit-content;
  position: relative;
}

/* Información general del festival */
.festival-info {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
  padding: 0 20px;
}


/* Estilos del footer */
footer {
  background-color: #000000;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  border-top: 4px solid #ea4125; /* rojo Sunblast */
}

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

/* Enlaces del footer */
.footer-text a {
  display: block;
  color: #70fdf6; /* turquesa Sunblast */
  text-decoration: none;
  padding: 5px 0;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-text a:hover {
  color: #ea4125;
}

/* Logo y texto footer */
.footer-logo p {
  margin: 0;
  padding-bottom: 5px;
  font-size: 16px;
  text-align: right;
  color: #ffffff;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

/* Estilos Responsive */
@media screen and (max-width: 768px) {
  .package-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo p,
  .footer-logo img {
    text-align: center;
    margin: 10px 0;
  }

  .pricing-and-reservation {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .price {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  .info-btn, .sold-out-btn {
    font-size: 14px;
    padding: 8px 15px;
  }

  header .logo {
    height: 40px;
  }
}


/* Visor de Fotos */
.photo-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  background-color: #000000;
}

.slider {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px 0;
}

.slides {
  position: relative;
  width: 100%;
  height: auto;
}

.slide-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: none;
  background-color: #1a1a1a;
}

.slide-img.active {
  display: block;
}

/* Botones de navegación */
.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  background-color: rgba(112, 253, 246, 0.85); /* turquesa translúcido */
  color: #000000;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 24px;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.prev-btn:hover, .next-btn:hover {
  background-color: #ea4125;
  color: #ffffff;
  transform: scale(1.1);
}

/* Detalles del Paquete */
.package-details {
  text-align: center;
  margin: 20px;
  z-index: 400;
  background-color: #000000;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(234, 65, 37, 0.2);
}

.package-details h1 {
  font-size: 26px;
  color: #70fdf6;
  margin-bottom: 20px;
}

.package-details .description {
  font-size: 16px;
  color: #dddddd;
  line-height: 1.6;
  text-align: justify;
}

/* Destacado */
.package-highlight {
  background-color: #70fdf6;
  color: #000000;
  padding: 15px;
  border-radius: 12px;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Incluye */
.package-includes {
  font-size: 14px;
  color: #ea4125;
  margin-top: 5px;
  font-weight: bold;
}

/* Etiqueta ubicación */
.location-tag {
  background-color: #000000;
  color: #70fdf6;
  font-size: 14px;
  padding: 5px 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 5px;
  font-weight: bold;
  border: 1px solid #70fdf6;
}

/* Botón experiencia (si aplica) */
.wine-experience-btn {
  background-color: #70fdf6;
  color: #000000;
  font-weight: bold;
}

.wine-experience-btn:hover {
  background-color: #ea4125;
  color: #ffffff;
}

/* Card especial (si se usa) */
.wine-experience-card {
  background-color: #ea4125;
  color: #ffffff;
  border-radius: 12px;
  width: 300px;
  margin: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wine-experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Mapa */
.map-section {
  text-align: center;
  margin: 40px 0;
}

.map-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Precios y reservas */
.pricing-and-reservation {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  gap: 10px; /* espaciado uniforme */
}

/* "Desde" */
.from-text {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ea4125;
  color: #ffffff;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 12px;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.reservation-buttons {
  display: flex;
  gap: 10px;
}

.reservation-btn {
  background-color: #70fdf6;
  color: #000000 !important;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  line-height: 1.5;
  border: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.reservation-btn:hover {
  background-color: #ea4125;
  color: #ffffff !important;
  transform: scale(1.05);
}

/* Asegura herencia del color en hijos, por si el texto está dentro de un <span> o similar */
.reservation-btn * {
  color: inherit !important;
}



.info-btn {
  background-color: #70fdf6;
  color: #000000 !important;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 20px;
  display: block;
  border-radius: 5px;
  margin: 10px auto;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: fit-content;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.info-btn:hover {
  background-color: #ea4125;
  color: #ffffff !important;
  transform: scale(1.05);
}

.info-btn * {
  color: inherit !important;
}
