/* =============================================
   PathRoamer — Home Page Styles
   ============================================= */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #FAF7F2 0%, #F0E8D8 50%, #E8D8C0 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, #1C2B3A 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero-image-block {
  position: absolute; right: 0; top: 0; bottom: 0; width: 52%;
  overflow: hidden;
}
.hero-image-block img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.88) saturate(1.1);
}
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 5%; max-width: 600px;
  animation: fadeUp 0.9s ease both;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196, 113, 74, 0.12);
  color: var(--terracotta);
  font-size: 0.78rem; font-weight: 500;
  padding: 0.4rem 1rem; border-radius: 40px;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(196, 113, 74, 0.25);
}
.hero-tag::before { content: '✦'; font-size: 0.65rem; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.08;
  color: var(--midnight);
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero p {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 440px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(217,201,168,0.6);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--midnight);
  display: block;
}
.stat-label { font-size: 0.8rem; color: var(--text-light); font-weight: 400; }

/* ── DESTINATIONS ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.dest-card {
  position: relative; overflow: hidden;
  border-radius: 18px; cursor: pointer;
}
.dest-card:first-child {
  grid-row: 1 / 3;
  border-radius: 22px;
}
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.82) saturate(1.1);
}
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,43,58,0.75) 0%, transparent 55%);
}
.dest-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.dest-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: white;
  margin-bottom: 0.25rem;
}
.dest-card:first-child .dest-name { font-size: 1.8rem; }
.dest-detail { font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.dest-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.95);
  color: var(--terracotta);
  font-size: 0.75rem; font-weight: 500;
  padding: 0.3rem 0.8rem; border-radius: 30px;
}

/* ── WHY US ── */
.why-section {
  background: var(--midnight);
  padding: 6rem 5%;
  position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,113,74,0.15), transparent 70%);
}
.why-section .section-tag { color: var(--gold-light); }
.why-section .section-title { color: white; }
.why-section .section-sub { color: rgba(255,255,255,0.55); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin-top: 3.5rem;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 2rem;
  transition: all 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(196,113,74,0.3);
}
.why-icon {
  width: 48px; height: 48px;
  background: rgba(196,113,74,0.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.2rem;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: white;
  margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-image-block { display: none; }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card:first-child { grid-row: auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .dest-grid, .why-grid { grid-template-columns: 1fr; }
}
