/* ===== Hero (bandeau d'accueil) ===== */
.home .entry-header {
  background: linear-gradient(135deg, #0f5fbf 0%, #0c4a94 55%, #1fa87a 100%);
  padding: 72px 24px 56px;
  text-align: center;
  margin: 0 0 0;
}
.home .entry-title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.home .entry-header .hero-tagline {
  color: #eaf3ff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Titres de section ===== */
.entry-content > h2,
.entry-content > .wp-block-heading {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 40px 0 20px;
  position: relative;
  padding-bottom: 10px;
}
.entry-content > h2::after,
.entry-content > .wp-block-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #0f5fbf, #1fa87a);
}

/* ===== Cartes destinations ===== */
.voyage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 8px 0 40px;
}
.voyage-card {
  display: block;
  padding: 26px;
  border: 1px solid #e1e8f0;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 40, 70, 0.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.voyage-card:hover,
.voyage-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15, 40, 70, 0.14);
  border-color: #b8d4f5;
}
.voyage-card-title {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #12233c;
}
.voyage-card-excerpt {
  margin: 0;
  color: #55606e;
  line-height: 1.5;
}

/* ===== Apparition au defilement ===== */
.voyage-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.voyage-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .voyage-reveal { opacity: 1; transform: none; transition: none; }
  .voyage-card:hover { transform: none; }
}
