/* ═══════════════════════════════════════════
   LA PERGOLA — privatisations.css
═══════════════════════════════════════════ */

/* ─── Header solid (comme restaurant) ───── */
.header-priv {
  background: #fff;
}
.page-privatisations .nav-link {
  color: var(--black) !important;
}
.page-privatisations .nav-link:hover {
  color: var(--red) !important;
}
.nav-link-active {
  color: var(--black) !important;
  border-bottom: 2px solid var(--red);
  padding-bottom: calc(.5rem - 2px);
}

/* ─── Container commun ───────────────────── */
.pv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ════════════════════════════════════════
   1. TITRE + ACCROCHE
════════════════════════════════════════ */
.pv-hero {
  padding: 80px 40px 60px;
  text-align: center;
  background: #fff;
}
.pv-trait {
  width: 80px;
  height: 4px;
  background: #FFB81C;
  margin: 0 auto 24px;
}
.pv-title {
  font-family: var(--font-sans);
  font-size: 54px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
  letter-spacing: .04em;
  margin: 0 0 14px;
  line-height: 1;
}
.pv-subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #E63946;
  letter-spacing: .18em;
  margin: 0 0 36px;
}
.pv-accroche {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   2. PHOTO HERO FULLWIDTH
════════════════════════════════════════ */
.pv-photo-hero {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.pv-photo-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ════════════════════════════════════════
   3. BLOCS INFOS
════════════════════════════════════════ */
.pv-infos {
  background: #fff;
  padding: 70px 40px 80px;
}

/* Grands chiffres capacités */
.pv-cap-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 70px;
}
.pv-cap-card {
  text-align: center;
  padding: 0 60px;
}
.pv-cap-number {
  font-family: var(--font-sans);
  font-size: 80px;
  font-weight: 300;
  color: #E63946;
  line-height: 1;
}
.pv-cap-unit {
  font-size: 13px;
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 4px 0 10px;
}
.pv-cap-label {
  font-size: 12px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.pv-cap-divider {
  width: 1px;
  height: 80px;
  background: #E0E0E0;
  flex-shrink: 0;
}

/* Cards grille */
.pv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pv-card {
  background: #F9F9F9;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pv-card-top {
  width: 40px;
  height: 3px;
  background: #FFB81C;
  margin-bottom: 20px;
}
.pv-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.pv-card-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: #E63946;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin: 0 0 16px;
}
.pv-card-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #666;
  line-height: 1.85;
  margin: 0;
}
.pv-card-text em {
  color: #999;
  font-style: normal;
  font-size: 13px;
}

/* ════════════════════════════════════════
   4. GALERIE
════════════════════════════════════════ */
.pv-gallery {
  background: #fff;
  padding: 0 40px 80px;
}
.pv-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pv-gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* ════════════════════════════════════════
   5. FORMULAIRE
════════════════════════════════════════ */
.pv-form-section {
  background: #F9F9F9;
  padding: 80px 40px 100px;
  text-align: center;
}
.pv-form-intro {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #666;
  margin: 0 0 32px;
}
.pv-form-title {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
  letter-spacing: .04em;
  margin: 0 0 50px;
  line-height: 1;
}
.pv-form {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}
.pv-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pv-form-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pv-form-right {
  display: flex;
}
.pv-input,
.pv-textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #333;
  background: #fff;
  border: 2px solid #D0D0D0;
  border-radius: 8px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .25s;
  box-sizing: border-box;
}
.pv-input::placeholder,
.pv-textarea::placeholder {
  color: #999;
}
.pv-input:focus,
.pv-textarea:focus {
  border-color: #E63946;
}
.pv-textarea {
  flex: 1;
  resize: vertical;
  min-height: 180px;
}
.pv-form-submit {
  margin-top: 30px;
  text-align: center;
}
.pv-btn {
  display: inline-block;
  background: #E63946;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 50px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .3s, color .3s;
}
.pv-btn:hover {
  background: #FFB81C;
  color: #000;
}

/* ════════════════════════════════════════
   RESPONSIVE — Tablet
════════════════════════════════════════ */
@media (max-width: 1199px) {
  .pv-title { font-size: 42px; }
  .pv-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pv-gallery-item:last-child { grid-column: span 2; }
  .pv-form-grid { grid-template-columns: 1fr; }
  .pv-textarea { min-height: 160px; }
  .pv-cards-grid { grid-template-columns: 1fr 1fr; }
  .pv-cap-card { padding: 0 40px; }
}


@media (max-width: 768px) {
  /* Header */
  .page-privatisations .nav-toggle span {
    background: var(--black, #000);
  }

  /* Hero texte */
  .pv-hero {
    padding: 80px 1.25rem 50px;
    text-align: center;
  }
  .pv-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .pv-subtitle {
    font-size: .72rem;
  }
  .pv-accroche {
    font-size: .95rem;
  }

  /* Photo hero */
  .pv-photo-hero {
    height: 240px;
  }

  /* Capacités : empiler verticalement */
  .pv-cap-row {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .pv-cap-divider {
    width: 60px;
    height: 1px;
  }
  .pv-cap-number {
    font-size: 56px;
  }
  .pv-cap-card {
    padding: 0 1rem;
  }

  /* Cards infos : 1 colonne */
  .pv-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pv-card {
    padding: 28px 20px;
  }

  /* Galerie : 1 colonne */
  .pv-gallery {
    padding: 0 1.25rem 60px;
  }
  .pv-gallery-grid {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .pv-gallery-item {
    grid-column: span 1 !important;
  }
  .pv-gallery-item img {
    height: 220px;
  }

  /* Infos texte */
  .pv-infos {
    padding: 3rem 1.25rem;
  }
  .pv-info-block {
    margin-bottom: 2rem;
  }

  /* Formulaire */
  .pv-form-section {
    padding: 3rem 1.25rem 4rem;
  }
  .pv-form-title {
    font-size: 1.6rem;
  }
  .pv-form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pv-form-right {
    display: block;
  }
  .pv-textarea {
    min-height: 160px;
    height: 160px;
  }
  .pv-btn {
    width: 100%;
    padding: 14px 0;
  }

  /* Trait centré */
  .pv-trait {
    margin: 0 auto 24px;
  }
}

@media (max-width: 480px) {
  .pv-photo-hero { height: 180px; }
  .pv-gallery-item img { height: 180px; }
}
