/* ============================================================
   index.css — Homepage specific styles
   Explore Punta Cana
   ============================================================ */

   /* ---- Hero ---- */
.hero {

  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/herobeach.webp');
  background-size: cover;
  background-position: center;
  min-height: 91vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 80% 50%, rgba(224,92,64,0.20) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(201,168,76,0.15) 0%, transparent 60%);
}
/* Wave at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--paper);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-lead {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: var(--fs-xs); color: rgba(255,255,255,0.6); margin-top: 1rem; font-style: italic; }

/* Hero stats panel */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-stat {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(4px);
}
.hero-stat:first-child { grid-column: 1 / -1; }
.hero-stat-icon  { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.hero-stat-num   { font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.hero-stat-label { font-size: var(--fs-xs); color: rgba(255,255,255,0.7); letter-spacing: 0.08em; margin-top: 0.3rem; display: block; }
.hero-stat-title { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--white); margin-bottom: 0.4rem; display: block; }
.hero-stat-desc  { font-size: var(--fs-sm); color: rgba(255,255,255,0.7); }

/* ---- Why Punta Cana strip ---- */
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-item {
  padding: 2.5rem 1.75rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.why-item:last-child { border-right: none; }
.why-icon  { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.why-title { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 700; margin-bottom: 0.3rem; color: var(--ink); }
.why-text  { font-size: var(--fs-sm); color: var(--mid); }

/* ---- Featured experiences ---- */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ---- Escapes grid (homepage categories) ---- */
.escapes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.escape-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.escape-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--ocean); }
.escape-icon  { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.escape-title { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 700; color: var(--ocean-dark); margin-bottom: 0.5rem; }
.escape-text  { font-size: var(--fs-sm); color: var(--mid); }

/* ---- Weather / best time band ---- */
.weather-section { background: var(--ocean-dark); color: var(--white); padding: 4rem 2rem; }
.weather-section .section-title { color: var(--white); }
.weather-section .section-subtitle { color: rgba(255,255,255,0.75); }
.months-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.month-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 1rem 0.5rem;
  text-align: center;
}
.month-card.best { background: rgba(201,168,76,0.25); border-color: var(--gold); }
.month-name { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 0.4rem; }
.month-temp { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 700; color: var(--gold); display: block; }
.month-icon { font-size: 1.25rem; display: block; margin-top: 0.4rem; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero          { min-height: auto; }
  .hero-stats    { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:first-child { grid-column: 1; }
  .why-strip     { grid-template-columns: repeat(2, 1fr); }
  .why-item      { border-bottom: 1px solid var(--border); }
  .experiences-grid, .escapes-grid { grid-template-columns: repeat(2, 1fr); }
  .months-grid   { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .hero h1       { font-size: var(--fs-2xl); }
  .hero-stats    { display: none; }
  .hero-cta      { flex-direction: column; align-items: flex-start; }
  .why-strip     { grid-template-columns: 1fr; }
  .experiences-grid, .escapes-grid { grid-template-columns: 1fr; }
  .months-grid   { grid-template-columns: repeat(3, 1fr); }
}
