/* ═══ VERDON GÎTES — equipements.css ═══
   Page /equipements-gites-verdon/
   Requiert styles.css
   ══════════════════════════════════════════════════ */

/* ── HERO ───────────────────────────────────────────── */
.eq-hero {
  position: relative;
  min-height: 500px;
  max-height: 760px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.eq-hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.eq-hero:hover .eq-hero-bg {
  transform: scale(1);
}

.eq-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 14, 11, 0.84) 0%,
    rgba(18, 14, 11, 0.48) 48%,
    rgba(18, 14, 11, 0.16) 100%
  );
}

.eq-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 1.5rem 3.5rem;
}

.eq-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.eq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46, 196, 196, 0.14);
  border: 1px solid rgba(46, 196, 196, 0.28);
  color: var(--cyan-bright);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.eq-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 0.9rem;
}

.eq-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.74);
  max-width: 680px;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}

.eq-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}

.eq-hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 50px;
  backdrop-filter: blur(3px);
}

.eq-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.eq-hero-cta .btn-cyan,
.eq-hero-cta .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── RESPONSIVE HERO ────────────────────────────────── */
@media (max-width: 960px) {
  .eq-hero {
    min-height: 460px;
    height: 62vh;
  }
}

@media (max-width: 600px) {
  .eq-hero {
    min-height: 430px;
    height: auto;
  }

  .eq-hero-content {
    padding: 0 1rem 2.5rem;
  }

  .eq-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .eq-hero-sub {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .eq-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

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

.breadcrumb {
  padding: 1.2rem 2rem;
  background: var(--stone-light);
  font-size: 0.82rem;
  color: var(--text-light);
}
.breadcrumb a {
  color: var(--cyan-deep);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--aqua);
}
.breadcrumb span {
  margin: 0 8px;
  opacity: 0.4;
}

/* ── SECTION HEADS ──────────────────────────────────── */
.eq-section-head {
  margin-bottom: 2.5rem;
}
.eq-section-sub {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
}

/* ── ÉQUIPEMENTS COMMUNS ────────────────────────────── */
.eq-common {
  background: var(--cream);
  padding: 5rem 1.5rem;
}
.eq-common-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.eq-common-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.eq-common-card {
  background: white;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 2px 14px rgba(45, 37, 32, 0.05);
  border: 1px solid rgba(46, 196, 196, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.eq-common-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(45, 37, 32, 0.08);
}
.eq-common-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.eq-common-card h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.eq-common-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── DIFFÉRENCES PAR GÎTE ───────────────────────────── */
.eq-diffs {
  background: var(--warm-white);
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(45, 37, 32, 0.06);
}
.eq-diffs-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.eq-gite-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.eq-gite-card {
  background: white;
  border-radius: 22px;
  padding: 1.75rem;
  box-shadow: 0 3px 18px rgba(45, 37, 32, 0.06);
  border: 1px solid rgba(45, 37, 32, 0.05);
  border-top: 3px solid var(--gc);
}
.eq-gite-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(45, 37, 32, 0.07);
}
.eq-gite-num {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gc);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.eq-gite-card-head > div:nth-child(2) {
  flex: 1;
}
.eq-gite-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.2rem;
}
.eq-gite-tag {
  font-size: 0.72rem;
  color: var(--text-light);
}
.eq-gite-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.eq-gite-link:hover {
  opacity: 0.7;
}

.eq-gite-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.eq-gite-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.55;
  padding: 5px 0;
  border-bottom: 1px solid rgba(45, 37, 32, 0.05);
}
.eq-gite-list li:last-child {
  border-bottom: none;
}

.li-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke-width: 2;
}
.eq-gite-list li.plus .li-icon {
  stroke: #16a34a;
}
.eq-gite-list li.neutral .li-icon {
  stroke: var(--text-light);
}
.eq-gite-list li.minus .li-icon {
  stroke: #dc2626;
}

.eq-gite-sdb {
  font-size: 0.78rem;
  color: var(--text-light);
  background: var(--stone);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  line-height: 1.65;
}
.eq-gite-sdb strong {
  color: var(--text-mid);
}

/* ── CHECKLIST ──────────────────────────────────────── */
.eq-checklist {
  background: var(--cream);
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(45, 37, 32, 0.06);
}
.eq-checklist-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.eq-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.eq-check-col {
  background: white;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 2px 14px rgba(45, 37, 32, 0.05);
}
.eq-check-fourni {
  border-top: 3px solid var(--cyan);
}
.eq-check-prevoir {
  border-top: 3px solid var(--gold);
}

.eq-check-col h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.eq-check-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.eq-check-col ul li {
  font-size: 0.84rem;
  color: var(--text-mid);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.55;
}
.eq-check-fourni ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}
.eq-check-prevoir ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── CTA ────────────────────────────────────────────── */
.eq-cta {
  background: var(--stone);
  padding: 4rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(45, 37, 32, 0.07);
}
.eq-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.eq-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.eq-cta p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.eq-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 960px) {
  .eq-common-grid {
    grid-template-columns: 1fr 1fr;
  }
  .eq-gite-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .eq-checklist-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .eq-hero-content {
    padding: 6rem 1.5rem 3.5rem;
  }
  .eq-hero-cta {
    display: none;
  }

  .eq-common-grid {
    grid-template-columns: 1fr;
  }
  .eq-gite-card-head {
    flex-wrap: wrap;
  }
}
