/* ═══════════════════════════════════════════════════════════════════
   villages.css
   Styles spécifiques à : /villages-autour-du-verdon/
   Requiert styles.css (variables, nav, footer, reveal, boutons).
═══════════════════════════════════════════════════════════════════ */

/* ── PAGE HERO ─────────────────────────────────────────────────── */

.page-hero {
  position: relative;
  height : 90vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 0 2rem;
}
.page-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
.page-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 5px 9px 6px rgb(0 0 0);
}
.page-hero-content h1 em {
  font-style: italic;
  font-weight: 400;
}
.page-hero-content p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
  text-shadow: 2px 9px 9px rgb(0 0 0);
  font-weight: 500;
}

/* ── BREADCRUMB ─────────────────────────────────────────────────── */

.breadcrumb {
  padding: 1.2rem 2rem;
  background: var(--stone-light);
  font-size: 0.82rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--cyan);
}
.breadcrumb span {
  margin: 0 8px;
  opacity: 0.4;
}

/* ── INTRO VILLAGES ─────────────────────────────────────────────── */

.village-intro {
  position: relative;
  background: var(--stone-warm);
  padding: 5rem 2rem;
}
.village-intro::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--stone-500),
    var(--gold),
    var(--stone-500)
  );
}

/* ── VILLAGES GRID ──────────────────────────────────────────────── */

.villages {
  padding: 5rem 2rem;
  background: var(--warm-white);
}
.villages-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.villages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.villages-grid--two {
  grid-template-columns: repeat(2, 1fr);
}
.village-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s;
}
.village-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  border-color: var(--cyan-soft);
}
.village-img {
  height: 200px;
  overflow: hidden;
}
.village-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.village-card:hover .village-img img {
  transform: scale(1.05);
}
.village-body {
  padding: 1.5rem;
}
.village-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.village-body p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.village-distance {
  font-size: 0.78rem;
  color: var(--cyan-deep);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── MARCHÉS ────────────────────────────────────────────────────── */

.markets {
  padding: 5rem 2rem;
  background: var(--cream);
}
.markets-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.markets-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.market-item {
  background: var(--warm-white);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.market-item:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}
.market-day {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 70px;
}
.market-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.market-info p {
  font-size: 0.78rem;
  color: var(--text-mid);
}

/* ── PROGRAMME JOURNÉE ──────────────────────────────────────────── */

.prac-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.8rem;
  border-left: 3px solid var(--gold);
  transition: all 0.3s;
}
.prac-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}
.prac-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.prac-card p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── SECTION HELPERS ────────────────────────────────────────────── */

.sec-border {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.sec-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.sec-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 0.5rem auto 1rem;
  max-width: 200px;
}
.sec-line {
  flex: 1;
  height: 1px;
}
.sec-dot {
  font-size: 0.6rem;
}
.sec-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1rem;
}
.sec-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}
.icon-svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .villages-grid,
  .villages-grid--two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-hero {
    height: 90vh;
    min-height: 360px;
  }
  .markets-list {
    grid-template-columns: 1fr;
  }
}

/* ── TRAIN DES PIGNES ───────────────────────────────────────────── */

.train-pignes {
  padding: 5rem 2rem;
  background: var(--stone);
}
.train-pignes-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Infos pratiques */
.train-pignes-infos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0.5rem;
}
.tpi {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-mid);
}
.tpi svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.tpi--warn svg {
  stroke: #c0782a;
}
.tpi--warn span {
  color: #c0782a;
  font-weight: 600;
}

/* Étapes du trajet */
.train-pignes-stops {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tps-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.tps-card--end {
  border-color: var(--gold);
  border-width: 1.5px;
}
.tps-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tps-body h4 {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.tps-body p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}
.tps-arrow {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}
.tps-arrow svg {
  width: 18px;
  height: 18px;
  stroke: rgba(200, 169, 110, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .train-pignes-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* PARTIE LAVANDE */
.link-lavande {
  padding: 3rem 2rem;
  background: var(--lavande-bg);
}

.link-lavande .cta-btn {
  color: white;
}

.cta-savings svg {
  width: 18px;
  height: 18px;
  stroke: #b3f0ee;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
