/* - Overnight Amacuzac - Estilo CSS - */
/* - Este archivo contiene los estilos para la página de Overnight Amacuzac, incluyendo la sección de héroe, detalles de actividades, precios y paquetes. */

/*- Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Estilo del textbox */
.hero-textbox {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.5s ease-out forwards;
}

.hero-textbox h1 {
  position: relative;
  font-size: 11em;
  color: var(--clr-naranja);
  letter-spacing: 3px;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
}

.hero-textbox .subtitulo-hero {
position: absolute;
  left: 50px;
  bottom: 25%;     
  font-family: var(--ff-cursive);
  font-size: 11rem;
  color: var(--azul-brillante);
  letter-spacing: 2px;
  white-space: nowrap;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
}
.hero-textbox p {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 2px;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}
.hero-textbox span {
  color: var(--azul-brillante);
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 2px;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

/* Animación */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* - Sección de descripción de actividades - */
.container-desc {
  background-color: #f8f9f8; /* fondo claro pero no blanco puro */
  color: #1e1e1e; /* texto oscuro para buena legibilidad */
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  font-family: 'Segoe UI', sans-serif;
}

.act-desc-textbox1,
.act-desc-textbox2 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.desc-box {
  flex: 1 1 45%;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.desc-box:hover {
  transform: translateY(-4px);
}

.desc-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #004f4a; /* color institucional suave */
}

.desc-box p,
.desc-box li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.desc-box ul {
  padding-left: 1.2rem;
  list-style: disc;
}

/* Responsivo */
@media (max-width: 768px) {

/* - Foto hero -- */  
.hero-section {
  height: 70vh;
}

  .desc-box {
    flex: 1 1 100%;
  }

  .btn-reservar {
    flex-direction: column;
    gap: 1rem;
  }
}

/* - Sección de precios */
.precios-section {
  padding: 4rem 2rem;
  text-align: center;
  background:var(--clr-claro2);
}

.precios-section h2 {
  font-size: 4rem;
  font-family: var(--ff-titles);
  margin-bottom: 2rem;
  color: var(--clr-naranja);
  letter-spacing: 2px;
  text-shadow: 
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.precio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.precio-card {
  width: 90%;
  background: #cbede1;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.precio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(1, 126, 124, 0.359);
}

.precio-card h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--clr-naranja);
  font-family: var(--ff-primario);
  letter-spacing: 2px;
  text-shadow: 
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.precio-card .detalle {
  font-size: 1rem;
  color: var(--azul-Secundario);
  margin-bottom: 1rem;
}

.precio-card .precio {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--azul-Secundario);
  text-shadow: 
    -1px -1px 0 #1bc3c9,
     1px -1px 0 #1bc3c9,
    -1px  1px 0 #1bc3c9,
     1px  1px 0 #1bc3c9;
}

/* Card destacada */
.precio-card.destacado {
  background: rgba(57, 194, 201, 0.2);
  border: 2px solid #70c29b;
}

/* Botón */
.btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}


/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Botón de WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

.btn-whatsapp img {
  width: 20px;
  height: 20px;
}


/* - Sección de paquetes */
.container-packages {
  padding: 4rem 2rem;
  text-align: center;
}

.container-packages h2 {
  font-size: 3rem;
  color: #1c3a2e;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.container-packages p {
  max-width: 600px;
  margin: 0 auto 1rem;
  color: #4a6359;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 1.5px;

}

.container-packages span {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--azul-primario);
  font-size: 2.2rem;
  letter-spacing: 2px;
  text-shadow: 
    -.5px -.5px 0 #000,
     .5px -.5px 0 #000,
    -.5px  .5px 0 #000,
     .5px  .5px 0 #000;
}

.packages-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.packages-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.packages-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.packages-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 1rem 1.25rem;
}

.card-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--clr-naranja);
}

.card-content p {
  font-size: 1rem;
  color: var(--azul-Secundario);
}

.card-content b {
  color: var(--azul-primario);
  font-size: 1.8rem;
  text-shadow: 
    -.5px -.5px 0 #000,
     .5px -.5px 0 #000,
    -.5px  .5px 0 #000,
     .5px  .5px 0 #000;
}

/* Animación sutil de entrada */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 768px) {

/* - Sección hero -- */  
.hero-section {
  height: 60vh;
}

.hero-textbox h1 {
    font-size: 5em;
    left: 10%;
  }
  .hero-textbox .subtitulo-hero {
    font-size: 5em;
    left: 25%;
    bottom: 18%;
  }
  .hero-textbox p {
    font-size: 1.3em;
  }
  .hero-textbox span {
    font-size: 1.8em;
  }

   /*-- Seccion de precios --*/
   .precios-section {
    padding: 3rem 1rem;
   }
  .precios-section h2 {
    font-size: 3rem;
  }
    /*-- Contenido de las tarjetas de precios --*/
  .precio-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .precio-card {
    width: 65%;
  }
  .precio-card h3 {
    font-size: 2rem;
  }
  .precio-card p {
    font-size: 1.2em;
  }
  .precio-card .precio {
    font-size: 1.8em;
  }
  .btn-box {
    flex-direction: column;
    gap: 1rem;
  }
  /*-- Sección Paquetes --*/
  .container-packages h2 {
    font-size: 2rem;
  }
  .container-packages p {
    font-size: 1.2rem;
  }
  .container-packages span {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  /*-- Seccion Hero --*/
  .hero-section {
  height: 50vh;
  }
  
  .hero-textbox h1 {
    font-size: 3.5em;
    left: 10%;
  }
  .hero-textbox .subtitulo-hero {
    font-size: 3.5em;
    left: 23%;
    bottom: 43%;
  }
  .hero-textbox p {
    font-size: 1.3em;
  }
  .hero-textbox span {
    font-size: 1.5em;
  }

    /*-- Seccion de precios --*/
  .precios-section h2{
    font-size: 2.5rem;
    }
    .precio-card {
    width: 80%;
    }
  .precio-card h3 {
    font-size: 1.8em;
  }
  
  .precio-card .precio {
    font-size: 1.8em;
  }
  .btn-box {
    flex-direction: column;
    gap: 1rem;
  }
    /*-- Seccion de información --*/
  .container-desc {
    padding: 2rem 1rem;
  }

    /*-- Seccion de paquetes --*/
  .packages-textbox h2 {
    font-size: 2rem;
  }
  .packages-textbox p {
    font-size: 1.2rem;
  }
  .packages-textbox span {
    font-size: 1.5rem;
  }

}


