:root {
    /* Palette inspirée de fonciere-bonneau.com : bleu nuit + or + blanc cassé */
    --ffc-blue: #0d1b2e;
    --ffc-gold: #b59f52;
    --ffc-grey: #f6f7f9;
    --ffc-white: #ffffff;
  }
  


/* --- LANG SWITCHER --- */
.lang-dropdown {
  margin-left: 1rem;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  z-index: 1000;
  font-family: 'Open Sans', sans-serif;
}

.lang-dropdown .dropbtn {
  background-color: var(--ffc-blue);
  color: var(--ffc-white);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 0.35rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.lang-dropdown .dropbtn:hover {
  background-color: #081526;
}

.lang-dropdown .dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  background-color: white;
  min-width: 140px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-radius: 0.4rem;
  overflow: hidden;
}

.lang-dropdown .dropdown-content a {
  color: var(--ffc-blue);
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
}

.lang-dropdown .dropdown-content a:hover {
  background-color: var(--ffc-grey);
}

.lang-dropdown:hover .dropdown-content {
  display: block;
}



.logo-img {
  height: 70px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .lang-dropdown {
    left: 1.5rem !important;
    right: auto !important;
  }

  .lang-dropdown .dropdown-content {
    left: 0 !important;
    right: auto !important;
  }
}



  @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Playfair+Display:wght@600;700&display=swap');
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--ffc-blue);
    background-color: var(--ffc-white);
    line-height: 1.65;
  }

nav {
  transition: top 0.3s;
  position: fixed;     /* reste fixé en haut */
  top: 0;
  left: 0;
  width: 100%;
  background: #f3f4f6;
  box-shadow: 0 2px 6px rgb(0 0 0 / 5%);
  z-index: 999;
}

  
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;   /* marge à gauche et à droite */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
}

nav ul {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;      /* ⚠️ idem pour la liste */
}


nav ul {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;  /* empêche aussi les retours ligne ici */
}

@media (max-width: 768px) {
  .nav-inner {
    flex-wrap: nowrap;
    overflow-x: auto; /* permet le scroll horizontal */
  }

  nav ul {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-left: 1rem;
  }

  nav ul li {
    flex-shrink: 0;
  }
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ffc-blue);
  z-index: 1001;
  margin-left: auto; /* aligne à droite */
}

/* BOUTON HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ffc-blue);
  z-index: 1001;
  margin-left: auto;
  margin-right: 1rem;
}

/* MENU MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none !important;   /* Fermé par défaut */
    flex-direction: column;
    background-color: #f3f4f6;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  nav ul.open {
    display: flex !important;   /* Ouvert quand toggle */
  }

  nav ul li {
    text-align: center;
    padding: 0.7rem 0;
  }

  .nav-inner {
    flex-wrap: nowrap;
    align-items: center;
  }

  .logo-img {
    height: 50px;
    margin-left: 1rem;
  }
}







  /* logo + liens */
  .logo { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--ffc-blue); }
  nav ul        { list-style: none; display: flex; gap: 2rem; margin: 0; padding: 0; }
  nav a         { text-decoration: none; font-size: .95rem; font-weight: 600; color: var(--ffc-blue); text-transform: uppercase; transition: color .2s; }
  nav a:hover,
  nav a.active  { color: var(--ffc-gold); }
  

  /* ===== HERO ===== */
  /* ===== HERO plein écran façon Foncière Bonneau ===== */
.hero {
  position: relative;
  padding-top: 80px; 
  min-height: 50vh; /* occupe toute la hauteur de la fenêtre */
  background: url('images/fond.png') no-repeat center / cover;
  /* remplacez par votre image (vue aérienne de Paris ou autre) */
}


/* voile sombre transparent */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* contenu centré verticalement et horizontalement */
.hero-content {
  position: relative;
  z-index: 1;                 /* au‑dessus du voile */
  top: 40%;
  transform: translateY(-40%);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.hero-content {
  top: 40%;
  transform: translateY(-40%);
}
/* hero : laisse 80 px pour la nav, puis centre verticalement */
.hero {
  padding-top: 80px;                    /* hauteur de la nav */
  display: flex;
  align-items: center;                  /* centre vertical */
  justify-content: center;              /* centre horizontal */
}

/* hero-content : n’a plus besoin de positionnement absolu */
.hero-content {
  position: relative;   /* ou supprimez simplement la ligne position:... */
}


.hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2vw + 1.5rem, 2rem);
  font-weight: 400;
  line-height: 1.35;
  color: #ffffff;
}


/* rond “scroll” animé (facultatif) */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
}
.hero-scroll:hover { opacity: 0.7; }
.hero-scroll svg { stroke: #ffffff; }
.hero::after { pointer-events: none; }  /* le voile ne bloque plus les clics */
.hero-scroll { z-index: 10; }           /* bouton au‑dessus de tout */

  .etapes-intro {
  background: white; /* identique au fond des étapes */
  padding: 2rem 1rem 0;
  text-align: center;
}

.etapes-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  color: var(--ffc-blue);
}

.etapes-intro h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--ffc-gold);
  margin: 1rem auto 0;
}

  /* ===== SECTIONS GENERALES ===== */
  section {
    padding: 4.5rem 1rem 5rem;
  }
  section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin: 0 0 2.5rem;
    position: relative;
  }
  section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--ffc-gold);
    margin: 1rem auto 0;
  }
  
  /* ===== CONTACT ===== */
  #contact { background: var(--ffc-grey); }
  
  .form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: var(--ffc-white);
    border-radius: 0.75rem;
    padding: 2.2rem 2.75rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  }
  .field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.35rem;
  }
  .field label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--ffc-blue);
  }
  .field input[type='text'],
  .field input[type='email'],
  .field textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #cbd0d8;
    border-radius: 0.45rem;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
  }
  .field textarea { resize: vertical; min-height: 140px; }
  .submit-btn {
    background: var(--ffc-blue);
    color: var(--ffc-white);
    border: none;
    font-size: 1rem;
    padding: 0.85rem 1.85rem;
    border-radius: 0.45rem;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .submit-btn:hover { background: #081526; }
  
  @media (max-width: 640px) {
    nav ul { gap: 1rem; }
    .hero p { font-size: 1rem; }
  }

  /* ===== SECTION  “NOS  MÉTIERS”  ===== */
.metiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem 2rem;
    text-align: center;
  }
  
  .metier-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    opacity: 0.45;               /* gris léger comme la référence */
  }
  
  .metier h3 {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
  }
  
  .metier-sep {
    width: 100%;
    height: 2px;
    background: var(--ffc-gold); /* reprend ta variable dorée */
    border: 0;
    margin: 1.75rem 0;
  }
  
  .metier p {
    max-width: 60ch;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .vendre-cta {
    text-align: center;
    margin-top: 2rem;
  }
  .vendre-cta p {
    font-size: 1rem;
    max-width: 60ch;
    margin: 0 auto;
  }
/* 1) Tout centrer */
/* wrapper : contenu toujours centré et limité */
.wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center; /* centre tous les <p>, <ul>, etc. */
}

/* chaque section reprend le centrage textuel */
section {
  padding: 4rem 0;
  text-align: center;
}

/* limiter la largeur des paragraphes pour la lisibilité */
section p {
  margin: 0 auto 1.5rem;
  max-width: 60ch;
}

/* centrer les listes */
section ul,
section ol {
  margin: 1rem auto 1.5rem;
  display: inline-block;
  text-align: left;  /* gardez puces sur la gauche */
}

/* 2) Icônes sur les titres */
/* usage : <h2 class="with-icon approche">Votre titre</h2> */
.with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2rem;
  position: relative;
  margin-bottom: 1rem;
}

/* Exemple d’icônes par section : 
   Remplacez les URLs par vos SVG ou emojis préférés. */
.with-icon.approche::before {
  content: url('https://unpkg.com/lucide-static@0.276.0/icons/compass.svg');
  width: 24px; height: 24px;
}
.with-icon.activites::before {
  content: url('https://unpkg.com/lucide-static@0.276.0/icons/tools.svg');
  width: 24px; height: 24px;
}
.with-icon.patrimoine::before {
  content: url('https://unpkg.com/lucide-static@0.276.0/icons/home.svg');
  width: 24px; height: 24px;
}
.with-icon.vendre::before {
  content: url('https://unpkg.com/lucide-static@0.276.0/icons/handshake.svg');
  width: 24px; height: 24px;
}
.with-icon.metiers::before {
  content: url('https://unpkg.com/lucide-static@0.276.0/icons/bar-chart-3.svg');
  width: 24px; height: 24px;
}

/* filet doré (optionnel) sous chaque h2 */
.with-icon::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--ffc-gold);
  margin: .75rem auto 0;
}
/* titre avec icône + trait alignés */
.with-icon {
  display: inline-flex;       /* alignement horizontal icône + texte + trait */
  align-items: center;
  gap: 0.5rem;                /* espace entre icône et texte */
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2rem;
  color: var(--ffc-blue);
  margin-bottom: 2rem;
}

.with-icon::before {
  /* icône compass (par exemple) */
  content: url('https://unpkg.com/lucide-static@0.276.0/icons/compass.svg');
  width: 24px;
  height: 24px;
}

.with-icon::after {
  /* trait doré, juste à droite du titre */
  content: '';
  display: inline-block;
  width: 60px;
  height: 2px;
  background: var(--ffc-gold);
  margin-left: 1rem;          /* écart entre texte et trait */
}
  

.after-paragraph-img {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 1.5rem auto;
  object-fit: cover;
  border-radius: 8px; /* optionnel, pour un effet arrondi */
}
.processus {
  background: white;
  padding: 5rem 1rem;
  text-align: center;
}

.processus h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.processus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.etape {
  max-width: 200px;
}

.etape-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.etape h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ffc-blue);
}

.cond {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}


#processus .metier-icon {
  width: 100px;
  height: 100px;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}
#processus h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
#processus {
  background-color: #f9f9f9;
  padding: 5rem 1rem;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #e5e5e5;
}





/* MODIF VISUELLE DE LA BARRE DE NAVIGATION */
nav {
  background-color: #5f646d;
  padding: 0.5rem 0;
}


nav a {
  color: #081526;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: var(--ffc-gold);
  border-bottom: 2px solid var(--ffc-gold);
  padding-bottom: 0.3rem;
}


/* Logo centré au-dessus du menu */
.logo-top {
  width: 100px; /* ou plus si tu veux */
  height: auto;
  object-fit: contain;
  border-radius: 12px; /* optionnel, à enlever si tu veux les coins normaux */
  box-shadow: none; /* ou garde une ombre si tu veux du relief */
}


.logo-img-centered {
  width: 120px;     /* ← ici tu augmentes la taille du logo */
  height: auto;
  object-fit: contain;
  border-radius: 12px; /* si tu veux des coins arrondis */
}





/* Centrage horizontal du menu */
.nav-inner {
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}


nav ul {
  justify-content: center;
}

