/* =========================================================
   LANDING PAGE — HERO PARALLAX + FADE TO WHITE
   DominicanToDo.com — By ScriptNow
   ========================================================= */

/* =========================================================
   HERO PARALLAX + FADE
========================================================= */

.hero-parallax {
  position: relative;
  width: 100%;
  height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #ffffff;
}

/* Fondo Parallax */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  will-change: transform;
}

/* Fade inferior hacia blanco */
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 10%,
    rgba(0,0,0,0.35) 40%,
    rgba(255,255,255,1) 92%
  );
}

/* Contenido HERO */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.hero-text {
  max-width: 680px;
}

.hero-eyebrow {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-content h1 span {
  color: #99c2ff;
}

.hero-sub {
  color: #f0f0f0;
  font-size: 1.1rem;
  margin-bottom: 22px;
  max-width: 540px;
}

/* BOTONES */
.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-block;
  padding: 13px 22px;
  color: white;
  background: #0055ff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #003ecc;
}

.btn-secondary {
  display: inline-block;
  padding: 13px 22px;
  color: #0055ff;
  background: #e8f0ff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.btn-secondary:hover {
  background: #d7e4ff;
}

/* Meta */
.hero-meta {
  display: flex;
  gap: 26px;
  margin-top: 10px;
  flex-wrap: wrap;
  color: #efefef;
  font-size: 0.9rem;
}

.hero-meta-label {
  font-weight: 700;
}

/* Indicador Scroll */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  color: white;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0.85;
  z-index: 4;
}

.hero-scroll-hint:hover {
  opacity: 1;
}

/* ============================================================
   SECTION: ¿POR QUÉ RD? — Modernizada, versión simple
   ============================================================ */

.section-why-modern {
  padding: 80px 0;
  background: #ffffff;
}

.why-modern-grid {
  margin-top: 40px;
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.why-modern-card {
  text-align: center;
  padding: 32px 24px;

  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

.why-icon {
  font-size: 3rem;
  color: #0055ff;
  margin-bottom: 18px;
}

.why-modern-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.why-modern-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.55;
}



/* ============================================================
   SECTION: CIUDADES — SLIDER BURBUJA PREMIUM
   ============================================================ */
/* CONTENEDOR PRINCIPAL */
.section-cities-widget {
  padding: 80px 0;
}

.cities-widget-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: 40px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* COLUMNA IZQUIERDA */
.cities-widget-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cities-widget-sub {
  color: #666;
  font-size: 1rem;
  margin-bottom: 24px;
}

.cities-widget-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.city-item {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  cursor: pointer;
  transition: 0.25s ease;
}

.city-item:hover {
  background: #eef4ff;
  border-color: #ccdfff;
  transform: translateX(4px);
}

.city-item.active {
  background: #0055ff;
  color: white;
  border-color: #0055ff;
}

.city-name {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

.city-desc {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* COLUMNA DERECHA */
.cities-widget-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.cities-widget-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}

.city-preview-overlay:hover {
  color: #cfe3ff;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .cities-widget-card {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   ACTIVIDADES
========================================================= */

.section-activities {
  padding: 80px 0;
  background: #f7faff;
}

.activities-grid {
  margin-top: 40px;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.activity-card {
  background: white;
  padding: 28px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.2s;
}

.activity-card:hover {
  transform: translateY(-4px);
}

.activity-card i {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #0055ff;
}

/* =========================================================
   CALENDARIO CTA
========================================================= */

.section-calendar {
  padding: 80px 0;
}

.calendar-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.calendar-bullets {
  margin: 16px 0;
  padding-left: 20px;
}

.calendar-bullets li {
  margin-bottom: 10px;
}

/* Calendar Preview */
.calendar-preview {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.calendar-preview-header {
  margin-bottom: 16px;
}

.preview-month {
  font-size: 1.5rem;
  font-weight: 700;
}

.preview-city {
  color: #333;
}

/* Day grid */
.calendar-preview-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.day-label {
  text-align: center;
  font-weight: 600;
}

.day {
  padding: 8px;
  text-align: center;
  border-radius: 6px;
  background: #f3f6fc;
}

.has-cruise {
  background: #cce0ff;
}

/* =========================================================
   SECCIÓN BLOG / GUÍA
========================================================= */

.section-blog {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-card {
  background: white;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* FIX Enlaces blog */
.blog-card a,
.blog-card h3,
.blog-card p {
  text-decoration: none !important;
  color: #1a1a1a;
}

.blog-card .blog-tag {
  display: inline-block;
  background: #0055ff;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.blog-link:hover {
  color: #0055ff !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 900px){

  .calendar-layout {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }
}

@media(max-width: 600px){

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-parallax {
    height: 80vh;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta {
    flex-direction: column;
  }
}
