/* ============================================================
   Page "Contact" — hero dédié (le formulaire réutilise les
   styles existants .contact-form / .contact-card de style.css)
   ============================================================ */

/* ── NAVBAR transparente sur le hero, blanche au scroll ──
   Comportement identique au reste du site (classe .sticky ajoutée par js/scripts.js) */
.navbar{
  position: fixed !important;
}

.cpg-hero{
  min-height: clamp(460px, 26vw, 580px);
  padding: 100px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(13,69,132,0.85) 0%, rgba(9,32,64,0.78) 100%),
    url('../images/projets/Projet-Tourbillon.webp');
  background-size: cover;
  background-position: center 50%;
}
.cpg-hero h1{
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.cpg-hero p{
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 720px){
  .cpg-hero{ padding: 70px 20px 56px; }
  .cpg-hero h1{ font-size: 1.7rem; }
}
