@charset "UTF-8";
.admin-logout-fixed {position: fixed; top: 12px; right: 12px; z-index: 1400; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; pointer-events: auto;}
.user-info-badge{background:#1abc9c;color:#fff;padding:4px 10px;border-radius:20px;font-size:.7rem;font-weight:600;display:inline-flex;align-items:center;gap:6px;}
.btn-admin, .btn-user-logout, .btn-settings { background: #e8f7f3; border: 1px solid #bfeee3; color: #0d8b73; padding: 6px 10px; border-radius: 8px; cursor: pointer; font-weight: 600; font-size:.75rem; display:inline-flex; align-items:center; gap:4px; }
.btn-settings svg{width:14px;height:14px;display:block;}
.btn-settings{padding:6px 8px;}
/* Lien d'évitement (accessibilité). Si tu veux le désactiver totalement: ajouter body .skip-link{display:none!important;} */
.skip-link {
  position:absolute; top:0; left:0;
  background:#1abc9c; color:#fff; font-weight:600;
  padding:10px 14px; border-radius:0 0 8px 0; text-decoration:none;
  z-index:50; /* réduit pour ne pas passer au-dessus des dropdowns */
  opacity:0; pointer-events:none; transition:opacity .15s;
}
.skip-link:focus, .skip-link:active, .skip-link:focus-visible {
  opacity:1; pointer-events:auto;
  outline:2px solid #fff; outline-offset:2px;
}
/* Version masquée hors focus (fallback anciens navigateurs) */
.skip-link:not(:focus):not(:active):not(:focus-visible){
  width:1px; height:1px; padding:0; margin:0; overflow:hidden; clip:rect(0 0 0 0); clip-path:inset(50%); white-space:nowrap; border:0;
}

/* ======= STYLES GÉNÉRAUX ======= */
body {
     font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
     background: linear-gradient(120deg, #f7f9fa 0%, #eaf6f6 60%, #d4f1f4 100%);
     color: #2c3e50;
     margin: 0;
     padding: 0;
     /* Empêche les débordements horizontaux sur mobile */
     overflow-x: hidden;
}

/* Médias fluides pour le responsive */
img, video { max-width: 100%; height: auto; }

/* Palette or/ambre (inspirée du visuel) */
:root {
  --gold: #c7ae33;
  --gold-2: #e0b14c;
  --amber: #f1c40f;
  --bronze: #b07a2a;
  --onyx: #2c3e50;
}
/* Sélecteur de langue */


.lang-btn {
  background: #ffffff;
  border: 1px solid #000000;
  padding: 4px 12px;
  border-radius: 90px;
  font-size: 0.9rem;
  color: #003bc4;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  min-width: 70px;
  justify-content: center;
}

.lang-btn:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.lang-flag {
  font-size: 1.1rem;
  display: inline-block;
}a

.lang-code {
  font-weight: 700;
  letter-spacing: 1px;
}

.lang-arrow {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
  display: inline-block;
}

.lang-btn[aria-expanded="true"] .lang-arrow {
  transform: rotate(180deg);
}

/* ✅ FORCER LE MASQUAGE DU MENU LANGUE */
.lang-menu[hidden] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.lang-menu:not([hidden]) {
  display: block !important;
  animation: langMenuAppear 0.2s ease forwards;
}

@keyframes langMenuAppear {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lang-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  text-decoration: none;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.lang-link:hover {
  background: #f1f5f9;
  color: #1d4ed8;
}

.lang-link.active {
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 600;
}

.lang-link::before {
  content: attr(data-flag);
  font-size: 1.2rem;
}

/* Sur mobile, adapter la position */
@media (max-width: 640px) {
  .lang-selector {
    margin-right: 8px;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
    min-width: 60px;
  }

  .lang-code {
    display: none;
  }

  .lang-menu {
    min-width: 140px;
  }
}

/* ======= ANIMATION DE CHARGEMENT ======= */
.loading-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #1abc9c 0%, #117a6a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Logo pulsant */
.loading-logo {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  animation: logoFloat 3s ease-in-out infinite;
}

.logo-pulse {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  animation: logoPulse 2s ease-in-out infinite;
}

/* Spinner triple anneaux */
.loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
}

.spinner-ring {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: #f1c40f;
  border-radius: 50%;
  animation: spinnerRotate 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
  border-top-color: #e0b14c;
  animation-delay: -0.5s;
  inset: 8px;
}

.spinner-ring:nth-child(3) {
  border-top-color: #c7ae33;
  animation-delay: -1s;
  inset: 16px;
}

/* Texte de chargement */
.loading-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
  animation: textFade 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(241, 196, 15, 0);
  }
}

@keyframes spinnerRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes textFade {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Version mobile */
@media (max-width: 640px) {
  .loading-logo {
    width: 100px;
    height: 100px;
  }
  
  .logo-pulse {
    width: 70px;
    height: 70px;
  }
  
  .loading-spinner {
    width: 60px;
    height: 60px;
  }
  
  .loading-text {
    font-size: 0.95rem;
  }
}

/* Réduction des motions */
@media (prefers-reduced-motion: reduce) {
  .loading-logo,
  .logo-pulse,
  .spinner-ring,
  .loading-text {
    animation: none !important;
  }
}

/* ======= SECTIONS RICHES (NOUVEAU CONTENU) ======= */
.section-rich, .section-alt, .section-cta { width:100%; padding: 54px 0 56px; position:relative; }
.section-rich { background:#fff; }
.section-alt { background:linear-gradient(135deg,#f5fbfa 0%, #eef8f6 100%); }
.section-cta { background:linear-gradient(135deg,#1abc9c 0%, #117a6a 100%); color:#fff; text-align:center; }
.section-cta h2 { color:#fff; }
.section-cta .lead { color: rgba(255,255,255,.92); }
.inner { width: min(1180px, 92vw); margin:0 auto; }
.inner.narrow { width: min(900px, 94vw); }
.lead { font-size:1.05rem; line-height:1.6; font-weight:500; max-width:860px; margin:0 auto 34px; text-align:center; }
.cols-2 { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); gap:42px; margin-top:38px; align-items:start; }
.check-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.check-list li { background:#fff; border:1px solid #e3efed; padding:14px 18px 16px; border-radius:14px; font-size:.98rem; line-height:1.45; box-shadow:0 4px 14px -6px rgba(0,0,0,.06); position:relative; padding-left:32px; }
.check-list li::before { content:'✔'; position:absolute; left:0; top:2px; color:#1abc9c; font-weight:700; }

/* Valeurs / Pourquoi */
.value-grid { display:grid; gap:24px; grid-template-columns:repeat(auto-fit, minmax(200px,1fr)); margin-top:32px; }
.value-item { background:#fff; border:1px solid rgba(26,188,156,0.18); padding:24px 20px 26px; border-radius:18px; box-shadow:0 4px 18px -6px rgba(0,0,0,.08); text-align:center; position:relative; overflow:hidden; }
.value-item h3 { margin:0 0 10px; font-size:1.15rem; color:#117a6a; }
.value-item p { margin:0; font-size:.95rem; line-height:1.5; }
.value-item::after { content:""; position:absolute; inset:0; background:radial-gradient(circle at 70% 15%, rgba(26,188,156,.08), transparent 70%); opacity:0; transition:opacity .4s; }
.value-item:hover::after { opacity:1; }
.why-list { list-style:none; margin:22px auto 0; padding:0; display:flex; flex-direction:column; gap:14px; max-width:720px; }
.why-list li { background:#fff; border:1px solid #e3efed; padding:14px 18px 16px; border-radius:14px; font-size:.98rem; line-height:1.45; box-shadow:0 4px 14px -6px rgba(0,0,0,.06); }
.why-list li strong { color:#117a6a; }

/* Engagements */
.engagements-grid { display:grid; gap:28px; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); margin-top:36px; }
.engagement { background:#fff; border:1px solid rgba(26,188,156,0.18); padding:26px 22px 28px; border-radius:20px; position:relative; overflow:hidden; box-shadow:0 6px 22px -10px rgba(0,0,0,.09); }
.engagement h3 { margin:0 0 10px; font-size:1.05rem; letter-spacing:.5px; color:#117a6a; }
.engagement p { margin:0; font-size:.9rem; line-height:1.5; }
.engagement::before { content:""; position:absolute; inset:0; background:linear-gradient(145deg, rgba(26,188,156,.10), transparent 55%); opacity:0; transition:opacity .4s; }
.engagement:hover::before { opacity:1; }

/* Processus étapes */
.steps-timeline { list-style:none; margin:40px auto 0; padding:0; display:grid; gap:34px; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); counter-reset:etp; max-width:1040px; }
.steps-timeline li { background:#fff; border:1px solid #e0efec; padding:26px 20px 32px; border-radius:20px; position:relative; box-shadow:0 6px 26px -12px rgba(0,0,0,.08); display:flex; flex-direction:column; align-items:flex-start; gap:10px; }
.steps-timeline .step-badge { width:46px; height:46px; border-radius:14px; background:#1abc9c; color:#fff; font-weight:700; font-size:1.1rem; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 14px -4px rgba(0,0,0,.3); }
.steps-timeline h3 { margin:0; font-size:1.05rem; letter-spacing:.5px; }
.steps-timeline p { margin:0; font-size:.85rem; line-height:1.45; }

/* Zones desservies */
.zones-grid { display:grid; gap:18px; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); margin-top:28px; }
.zone { background:#fff; border:1px solid #d7ebe8; padding:14px 16px 16px; text-align:center; border-radius:14px; font-weight:600; font-size:.9rem; letter-spacing:.5px; box-shadow:0 4px 14px -6px rgba(0,0,0,.05); }

/* FAQ */
.faq-list { display:flex; flex-direction:column; gap:14px; margin-top:26px; }
.faq-item { background:#fff; border:1px solid #dde9e7; border-radius:16px; overflow:hidden; box-shadow:0 4px 18px -8px rgba(0,0,0,.07); }
.faq-question { width:100%; text-align:left; padding:16px 20px 18px; background:#fff; border:none; font-weight:600; font-size:1rem; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:16px; position:relative; color:#117a6a; }
.faq-question::after { content:'+'; font-size:1.2rem; font-weight:700; color:#1abc9c; transition:transform .35s; }
.faq-question[aria-expanded="true"]::after { content:'−'; transform:rotate(180deg); }
.faq-answer { padding:0 20px 20px; font-size:.92rem; line-height:1.55; animation:faqReveal .45s ease; }
@keyframes faqReveal { from { opacity:0; transform:translateY(-4px);} to { opacity:1; transform:translateY(0);} }

/* === Identité régionale (drapeaux) === */
.flags-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:22px; align-items:stretch; margin-top:28px; }
.flag-card{ background:#fff; border:1px solid #e2e8f0; border-radius:16px; padding:14px; box-shadow:0 6px 20px -10px rgba(0,0,0,.08); display:flex; flex-direction:column; align-items:center; gap:10px; }
.flag-card img{ width:100%; height:auto; border-radius:12px; background:#f8fafc; object-fit:cover; }
.flag-inline{ display:none; width:100%; height:auto; border-radius:12px; background:#f8fafc; }
.flag-label{ font-weight:700; color:#117a6a; text-align:center; }
@media (max-width:520px){ .flags-grid{ grid-template-columns:1fr; } }

/* CTA final */
.cta-actions { display:flex; flex-wrap:wrap; gap:18px; justify-content:center; margin-top:10px; }
.btn-cta { background:#fff; color:#117a6a; padding:14px 30px 15px; border-radius:28px; font-weight:700; letter-spacing:.5px; text-decoration:none; font-size:.95rem; box-shadow:0 6px 24px -8px rgba(0,0,0,.25); transition:background .25s, transform .25s; }
.btn-cta:hover { background:#f1f9f8; transform:translateY(-3px) scale(1.03); }
.btn-cta.alt { background:#0f5c50; color:#fff; }
.btn-cta.alt:hover { background:#0c4a41; }

/* Petites améliorations titres de sections */
.section-rich h2, .section-alt h2, .section-cta h2 { font-size:clamp(1.7rem, 3.2vw, 2.3rem); margin:0 0 18px; letter-spacing:1px; }
.section-rich h3, .section-alt h3 { font-size:1.05rem; letter-spacing:.5px; }

/* Soulignement doré sous les titres de section (sans toucher la nav) */
.section-rich > .inner > h2, .section-alt > .inner > h2, .section-cta > .inner > h2 {
  position: relative;
}
.section-rich > .inner > h2::after,
.section-alt > .inner > h2::after,
.section-cta > .inner > h2::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: clamp(80px, 12vw, 160px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--amber), var(--gold-2));
  box-shadow: 0 2px 10px rgba(199, 174, 51, .35);
}

/* Responsive des nouvelles sections */
@media (max-width:780px){
  .cols-2 { gap:30px; }
  .value-grid { gap:18px; }
  .engagements-grid { gap:22px; }
  .steps-timeline { gap:24px; }
  .section-rich, .section-alt, .section-cta { padding:46px 0 50px; }
  .lead { font-size:1rem; }
  .steps-timeline li { padding:22px 18px 26px; }
  .steps-timeline .step-badge { width:40px; height:40px; font-size:1rem; }
}
@media (max-width:520px){
  .btn-cta { flex:1 1 100%; text-align:center; }
  .why-list li { font-size:.9rem; }
  .faq-question { font-size:.95rem; }
  .faq-answer { font-size:.85rem; }
  .lead { margin-bottom:26px; }
}


h1, h2, h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  text-align: center;
}

p {
  text-align: center;
}

/* ======= HEADER ======= */
header {
  background: linear-gradient(120deg, lab(68.45% -46.19 5.27) 0%, #2c3e50 100%);
  color: #fff;
  padding: 24px 0 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
  /* Doit dominer les éléments interactifs du slider (ex: .logements-slider .nav { z-index:40 }) */
  z-index: 1;
}

/* Forcer la boîte admin (déconnexion / paramètres) au-dessus de la navigation */
.admin-logout-fixed{
  position: fixed !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 1400 !important; /* header=1200, dropdown=1300 */
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.header-title {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #1abc9c;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(39,71,97,0.10), 0 1px 0 #fff;
   background: linear-gradient(120deg, lab(68.45% -46.19 5.27) 0%, #2c3e50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ======= NAVIGATION ======= */
nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-wrap: wrap;
  gap: 22px;
}

nav li {
  margin: 0 24px;
}

nav a,
nav .dropbtn {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  transition: color 0.2s;
  padding: 6px 16px;
  border-radius: 8px;
  background: none;
  /* Reset visuel pour que le <button> ressemble au lien */
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  display: inline-block;
}

/* Icônes réseaux sociaux dans la nav */
.nav-socials { display:flex; gap:10px; margin-left:auto; align-items:center; }
.nav-socials .social-link { display:inline-flex; align-items:center; justify-content:center; width:32px; height:32px; border-radius:999px; background:rgba(255,255,255,.1); color:#fff; transition:background .2s ease, transform .2s ease; text-decoration:none; }
.nav-socials .social-link:hover { background:rgba(255,255,255,.2); transform:translateY(-1px); }
.nav-socials svg { width:16px; height:16px; display:block; }

@media (max-width: 900px){
  .nav-socials { order: 2; width: 100%; justify-content: center; margin: 8px 0 0; }
}

/* Centrage spécifique à la page d'accueil (home-nav) */
.home-nav nav ul{ justify-content: center; }
.home-nav .nav-socials{ margin-left: 0; }

nav a::after,
nav .dropbtn::after {
  content: '';
  display: block;
  position: absolute; 
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #f1c40f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
  border-radius: 2px;
}

nav a:hover, nav a:focus,
nav .dropbtn:hover, nav .dropbtn:focus {
  background: #eaf6ff;
  color: #1abc9c;
}

nav a:hover::after, nav a:focus::after,
nav .dropbtn:hover::after, nav .dropbtn:focus::after {
  transform: scaleX(1);
}

/* Dropdown Logements amélioré */
nav li.dropdown {
  position: relative;
}

/* Empêche la fermeture immédiate du menu dropdown au clic */
/* Ouverture des sous-menus
   - Desktop: hover ou état .open (géré JS)
   - Mobile: uniquement via .open (on supprime focus-within qui ouvrait tout seul sur tap) */
@media (hover:hover) {
  nav li.dropdown:hover > .dropdown-content { display:block; }
}
nav li.dropdown.open > .dropdown-content { display:block; }

/* Pour le clic sur mobile et desktop */
nav .dropbtn {
  cursor: pointer;
}

/* Désactive l'affichage au hover sur mobile (optionnel, améliore l'expérience tactile) */
@media (hover: none) and (pointer: coarse) {
  nav li.dropdown:hover > .dropdown-content {
    display: none;
  }
  /* Fallback iOS: ouverture via focus-within si le JS tactile est ignoré */
  nav li.dropdown:focus-within > .dropdown-content {
    display: block;
  }
  /* Assure que l'état .open gagne toujours sur la règle :hover désactivée ci-dessus */
  nav li.dropdown.open > .dropdown-content {
    display: block !important;
  }
}

nav .dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 200px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(44,62,80,0.18);
  border-radius: 16px;
  /* Doit être au-dessus de l'overlay (#nav-overlay: z-index 1100) et du slider */
  z-index: 1300;
  padding: 0.5rem 0;
  animation: dropdownFadeIn 0.28s cubic-bezier(.4,0,.2,1);
  border: 1.5px solid #e0e0e0;
  margin-top: 0; /* Supprime le gap qui faisait disparaître le hover avant d'atteindre le menu */
}

/* Quand un menu est ouvert, on neutralise les interactions du slider en arrière-plan */
html.nav-open .logements-slider,
html.nav-open .logements-slider * {
  pointer-events: none !important;
}

/* Zone tampon pour éviter toute "perte" de hover entre le bouton et le menu */
nav .dropdown-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px; /* pont invisible entre le bouton et le menu */
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

nav .dropdown-content li {
  margin: 0;
  width: 100%;
}

nav .dropdown-content a {
  color: #1abc9c;
  background: none;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  display: block;
  font-size: 1.12rem;
  font-weight: 600;
  text-align: left;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
  position: relative;
}

nav .dropdown-content a:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}

nav .dropdown-content a:hover,
nav .dropdown-content a:focus {
  background: linear-gradient(90deg, #e8f7f3 70%, #f1fcfa 100%);
  color: #117a6a;
  padding-left: 2.1rem;
  outline: none;
  box-shadow: 0 2px 12px rgba(26,188,156,0.07);
}

/* Pour le clic sur mobile: l'ouverture/fermeture est gérée en JS via la classe .open */
/* On retire les règles qui forçaient display:none en :active / :focus afin d'éviter les fermetures intempestives */

/* ======= SEARCH BAR ======= */
.logements-scrollbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 210px;
  min-width: 160px;
  background: #f8f8f8;
  border-right: 1px solid #e0e0e0;
  border-bottom: none;
  margin-bottom: 0;
  margin-top: 18px;
  margin-left: 0;
  height: auto;
  position: absolute;
  left: 0;
  top: 120px; /* ajuste selon la hauteur de ton header */
  z-index: 20;
  box-shadow: 2px 0 8px rgba(44,62,80,0.06);
  padding-top: 10px;
}

.logements-scrollbar ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem;
  margin: 0;
  list-style: none;
  width: 100%;
}

.logements-scrollbar li {
  width: 100%;
}

.logements-scrollbar a {
  display: block;
  width: 100%;
  color: #1abc9c;
  font-weight: 600;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: 1.2rem 0 0 1.2rem;
  transition: background 0.2s, color 0.2s;
  background: transparent;
}

.logements-scrollbar a:hover,
.logements-scrollbar a:focus {
  background: #e8f7f3;
  color: #117a6a;
  outline: none;
}

.logements-scrollbar a.active {
  background: #1abc9c;
  color: #fff;
}

/* (Styles recherche supprimés) */

/* ======= MAIN ======= */
main {
  flex: 1 0 auto;
  max-width: 100vw;
  width: 100%;
  margin: 0;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  padding: 32px 0;
}

section {
  margin-bottom: 36px;
}

/* ===== BANDEAU LOGEMENTS (NOUVEAU) ===== */
.logements-banner { position: relative; width: 100%; padding: 8px 0 4px; overflow: hidden; }
.logements-track { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(220px, 30vw, 340px); gap: 18px; overflow-x: auto; padding: 10px 24px 14px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.logements-track::-webkit-scrollbar { display: none; }
.logement-item { position: relative; margin: 0; scroll-snap-align: start; border-radius: 22px; overflow: hidden; background: #e5eef0; aspect-ratio: 4 / 3; display: flex; }
.logement-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.logement-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.15) 40%, rgba(0,0,0,0)); pointer-events: none; }
.logement-item figcaption { position: absolute; left: 14px; bottom: 12px; margin: 0; padding: 6px 14px 6px 12px; background: rgba(255,255,255,.12); backdrop-filter: blur(6px) saturate(1.4); -webkit-backdrop-filter: blur(6px) saturate(1.4); color: #fff; font-weight: 600; font-size: .95rem; letter-spacing: .5px; border-radius: 14px; box-shadow: 0 4px 18px -4px rgba(0,0,0,.4); }
.logement-item:hover img { transform: scale(1.08); }
@media (min-width: 900px) { .logements-track { grid-auto-columns: clamp(260px, 24vw, 420px); } .logement-item { aspect-ratio: 5 / 3; } }
@media (prefers-reduced-motion: reduce) { .logement-item img { transition: none; } }

/* ======= ANNONCES ======= */
/* Titre harmonisé avec un soulignement doré comme les autres sections */
#annonces > h2{
  position: relative;
  margin-bottom: 14px;
}
#annonces > h2::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: clamp(80px, 12vw, 160px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--amber), var(--gold-2));
  box-shadow: 0 2px 10px rgba(199, 174, 51, .35);
}

#annonce-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  width: min(1180px, 94vw);
  padding: 0 4px;
  margin: 16px auto 0;
  box-sizing: border-box;
}

/* Empêche le débordement des cartes annonces sur écrans très étroits */
@media (max-width: 420px){
  #annonce-container { grid-template-columns: 1fr; }
}

.annonce-card {
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(8px) saturate(1.25);
  -webkit-backdrop-filter: blur(8px) saturate(1.25);
  border: 1.5px solid rgba(26,188,156,0.14);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(44,62,80,0.10);
  padding: 18px 16px 20px;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease, background .25s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s cubic-bezier(.23,1.02,.47,.98) forwards;
  animation-delay: var(--delay, 0s);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.annonce-card.has-badge{
  /* Réserve de l’espace pour ne pas chevaucher le titre */
  padding-top: 52px;
}

.annonce-card.animated {
  opacity: 1;
  transform: none;
}

.annonce-card::before{
  /* Liseré interne doré subtil */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(199,174,51,.22), inset 0 10px 28px -26px rgba(176,122,42,.45);
  pointer-events: none;
}

.annonce-card::after{
  /* Balayage de brillance au survol */
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 60%;
  height: 180%;
  background: linear-gradient(100deg, rgba(255,255,255,0), rgba(255,255,255,.5) 45%, rgba(255,255,255,0) 70%);
  transform: skewX(-20deg) translateX(0);
  opacity: 0;
  transition: transform .65s ease, opacity .65s ease;
  pointer-events: none;
}

.annonce-card:hover {
  box-shadow: 0 16px 42px rgba(44,62,80,0.18);
  transform: translateY(-6px) scale(1.02);
  background: rgba(255,255,255,0.8);
  border-color: rgba(199,174,51,.50);
}

.annonce-card:hover::after{
  transform: skewX(-20deg) translateX(240%);
  opacity: 1;
}

.annonce-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: #2c3e50;
}

.annonce-card p {
  margin: 0 0 6px 0;
  font-size: 0.97rem;
}

/* Styles "meta" pour les libellés Ville/Type */
.annonce-card p strong{
  display: inline-block;
  background: rgba(199,174,51,.12);
  color: #6f5a16;
  border: 1px solid rgba(199,174,51,.25);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: .8rem;
  letter-spacing: .2px;
  margin-right: 8px;
}

.annonce-badge {
  position: absolute;
  top: 12px;
  left: 14px;
  background: linear-gradient(90deg, #f1c40f 60%, #e67e22 100%);
  color: #2c3e50;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 16px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
  letter-spacing: 1px;
  z-index: 2;
  text-transform: uppercase;
  animation: fadeIn 0.7s;
}

.annonce-badge.coup-coeur {
  background: linear-gradient(90deg, #e74c3c 60%, #f1c40f 100%);
  color: #fff;
}

/* ======= ACTUALITÉS (Accueil) ======= */
.news-list { list-style:none; margin:18px 0 0; padding:0; display:grid; gap:16px; }
.news-item { background:#fff; border:1px solid #e5e7eb; border-radius:16px; padding:16px 18px; box-shadow:0 10px 22px -12px rgba(0,0,0,.18); position:relative; overflow:hidden; }
.news-item::before{ content:""; position:absolute; inset:0; background:linear-gradient(115deg, rgba(199,174,51,.10), rgba(176,122,42,.06)); opacity:.85; pointer-events:none; mix-blend-mode:multiply; }
.news-date { font-size:.85rem; color:#64748b; }
.news-title { margin:6px 0 6px; font-size:1.08rem; letter-spacing:.3px; color:#0f172a; }
.news-desc { margin:0; font-size:.95rem; color:#334155; }
@media(min-width:700px){ .news-list{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:1000px){ .news-list{ grid-template-columns:repeat(3,1fr); } }

/* Accent bordure dorée légère au hover */
.news-item:hover{ border-color: rgba(199,174,51,.55); box-shadow:0 16px 36px -16px rgba(176,122,42,.28); transform: translateY(-3px); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }

/* Harmoniser les autres cartes avec une touche or discrète au hover */
.value-item:hover, .engagement:hover, .steps-timeline li:hover, .zone:hover, .avis-card:hover, .annonce-card:hover{
  box-shadow: 0 18px 46px -18px rgba(176,122,42,.25), 0 6px 18px -10px rgba(0,0,0,.12);
}

/* ======= AVIS UTILISATEURS ======= */
.avis-container {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 32px auto 0;
}

.avis-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.10);
  padding: 28px 22px 18px 22px;
  max-width: 340px;
  min-width: 240px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.avis-card:hover {
  box-shadow: 0 8px 32px rgba(44,62,80,0.18);
  transform: translateY(-4px) scale(1.03);
}

.avis-avatar {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.avis-card blockquote {
  font-style: italic;
  color: #444;
  margin: 0 0 12px 0;
  text-align: center;
  line-height: 1.5;
}

.avis-nom {
  font-weight: 600;
  color: #1abc9c;
  font-size: 1rem;
  text-align: center;
}

/* ======= HERO BANNIÈRE ======= */
.hero {
  width: 100vw;
  min-height: 320px;
  background: linear-gradient(120deg, #777171 0%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 32px 0;
  margin-top: -60px;
  margin-bottom: 18px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.07);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-content {
  color: #777171;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  margin-top: 110px;
}

.hero h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #020000;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.hero p {
  font-weight: 700;
  text-align: center;
  max-width: 500px;
  line-height: 1.6;
  font-family: 'Poppins',Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  margin-bottom: 28px;
  color: #c7ae33;
}

.hero-btn {
  display: inline-block;
  background: #f1c40f;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}

.hero-btn:hover {
  background: #766f2d;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.hero-icone {
  display: inline-block;
  font-size: 2.7rem;
  margin-bottom: 10px;
  margin-right: 0;
  filter: drop-shadow(0 2px 6px rgba(44,62,80,0.10));
}

/* ===== SLIDER LOGEMENTS (GRAND) ===== */
.logements-slider { position: relative; width: 100vw; margin: 0 0 38px; }
.logements-slider .slider-viewport { position: relative; width: 100%; overflow: hidden; }
.logements-slider .slider-viewport::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 12% 50%, rgba(20,27,32,0.55), rgba(10,14,18,0.85) 55%, #0a0f13 100%); z-index:0; }
.logements-slider .slides { display: flex; width: 100%; height: clamp(640px, 100vh, 920px); position: relative; }
@media (max-width: 820px){
  .logements-slider .slides { height: clamp(520px, 88vh, 760px); }
}
@media (max-width: 640px){
  .logements-slider .slides { height: clamp(420px, 78vh, 640px); }
}
@media (max-width: 460px){
  .logements-slider .slides { height: clamp(360px, 72vh, 560px); }
}
.logements-slider .slide { position: relative; flex: 0 0 100%; width: 100%; height: 100%; overflow: hidden; }
.logements-slider .slide { position: relative; }
.logements-slider .slide::before { content:""; position:absolute; inset:0; background: var(--slide-bg) center/cover no-repeat; filter: blur(24px) brightness(.45) saturate(1.05); opacity:.75; }
.logements-slider .slide img { position: relative; z-index:1; width: 100%; height: 100%; object-fit: contain; display: block; filter: brightness(.96); background: transparent; }
/* Mode cover (si on souhaite recadrer plein cadre) */
.logements-slider.slider--cover .slide::before { display:none; }
.logements-slider.slider--cover .slide img { object-fit: cover; }
.logements-slider .slide::after { content:""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.15) 44%, rgba(0,0,0,.05)); pointer-events:none; }
.logements-slider .slide figcaption { z-index: 10; position: absolute; left: clamp(20px, 6vw, 120px); bottom: clamp(120px, 20vh, 240px); color: #fff; max-width: 460px; backdrop-filter: blur(6px) saturate(1.3); -webkit-backdrop-filter: blur(6px) saturate(1.3); background: rgba(255,255,255,.08); padding: 22px 26px 24px; border-radius: 22px; box-shadow: 0 20px 40px -16px rgba(0,0,0,.45); animation: sliderCaptionFade .9s ease both; }
.logements-slider .slide figcaption h3 { margin: 0 0 8px; font-size: clamp(1.4rem, 2.4vw, 2.2rem); letter-spacing: 1px; }
.logements-slider .slide figcaption p { margin: 0 0 14px; font-size: clamp(.9rem, 1.1vw, 1.05rem); line-height: 1.4; font-weight: 500; }
.logements-slider .slider-link { z-index: 10; position: right; display: inline-block; background: #1abc9c; color: #fff; text-decoration: none; padding: 10px 20px 11px; border-radius: 16px; font-weight: 600; font-size: .95rem; box-shadow: 0 6px 18px -4px rgba(0,0,0,.35); transition: background .25s, transform .25s; }
.logements-slider .slider-link:hover { background:#159c85; transform: translateY(-2px); }
.logements-slider .nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); color:#fff; border: 1px solid rgba(255,255,255,.25); width: 46px; height: 46px; border-radius: 50%; display: flex; align-items:center; justify-content:center; font-size: 1.8rem; cursor:pointer; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); box-shadow: 0 4px 18px -6px rgba(0,0,0,.55); transition: background .25s; }
.logements-slider .nav:hover { background: rgba(0,0,0,.65); }
.logements-slider .nav.prev { left: clamp(8px, 2vw, 30px); }
.logements-slider .nav.next { right: clamp(8px, 2vw, 30px); }
.logements-slider .dots { position: absolute; left: 50%; bottom: clamp(8px, 3vh, 34px); transform: translateX(-50%); display: flex; gap: 10px; }
.logements-slider .dots button { width: 14px; height: 14px; border-radius: 50%; border: 2px solid rgba(255,255,255,.65); background: rgba(255,255,255,.25); cursor:pointer; padding:0; display:block; transition: background .3s, transform .3s; }
.logements-slider .dots button[aria-selected="true"] { background:#1abc9c; border-color:#1abc9c; transform: scale(1.15); }
/* Zoom progressif (Ken Burns léger) sur la diapo active */
@keyframes kenZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.logements-slider .slide.is-active img { animation: kenZoom 5.2s ease-in-out forwards; }
/* Pas de zoom */
.logements-slider.slider--no-zoom .slide img { animation: none !important; transform:none !important; }
@media (max-width: 720px){
  .logements-slider .slide figcaption { left: 16px; right: 16px; bottom: 130px; padding: 18px 18px 20px; }
  .logements-slider .nav { width: 40px; height: 40px; font-size: 1.5rem; }
  .logements-slider .dots button { width: 12px; height: 12px; }
}
@media (max-height: 760px){ .logements-slider .slide figcaption{bottom:170px;} }
@media (max-height: 640px){ .logements-slider .slide figcaption{bottom:190px;} }
@media (max-height: 560px){ .logements-slider .slide figcaption{bottom:210px;} }
@keyframes sliderCaptionFade { from { opacity:0; transform: translateY(18px); } to { opacity:1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce){
  .logements-slider .slide img { transition:none; }
  .logements-slider .slider-link { transition:none; }
}

/* ======= VAGUES HERO ======= */
.hero-wave {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100vw;
  height: 130px;
  z-index: 0;
  pointer-events: none;
}

.hero-wave-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 140px;
  z-index: 1;
}

.hero-wave-front {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100vw;
  height: 120px;
  z-index: 2;
  filter: drop-shadow(0 6px 16px rgba(44,62,80,0.10));
  opacity: 0;
  transform: translateY(30px);
  animation: waveAppear 1.1s cubic-bezier(.23,1.02,.47,.98) 0.2s forwards;
}

/* ======= VAGUE DÉCORATIVE HEADER ======= */
.header-wave {
  position: relative;
  width: 100vw;
  height: 130px;
  margin-top: -2px;
  line-height: 0;
  z-index: 1;
}

.header-wave-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 130px;
  z-index: 1;
}

.header-wave-front {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100vw;
  height: 120px;
  z-index: 2;
  filter: drop-shadow(0 6px 16px rgba(44,62,80,0.10));
  opacity: 0;
  transform: translateY(30px);
  animation: waveAppear 1.1s cubic-bezier(.23,1.02,.47,.98) 0.2s forwards;
}

.header-wave-front path {
  fill: url(#waveGlossy);
}

.header-wave svg {
  display: block;
  pointer-events: none;
}

/* ==========================================================
    6. Footer
    ========================================================== */
.footer-pro {
     background: #fff;
     border-top: 1px solid #e0e0e0;
     padding: 18px 0 8px 0;
     margin-top: 32px;
}

.footer-content {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: flex-start;
     gap: 28px;
     max-width: 900px;
     margin: 0 auto;
}

.footer-col {
     flex: 1 1 120px;
     min-width: 120px;
     margin-bottom: 4px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
}

.footer-title {
     font-size: 1.1rem;
     font-weight: 600;
     letter-spacing: 1px;
     margin-bottom: 2px;
}

.footer-label {
     font-weight: 500;
     color: #1abc9c;
     font-size: 0.97rem;
     margin-bottom: 2px;
}

.footer-mail-text {

     font-weight: 500;
     color: #2c3e50;
     font-size: 1rem;
     text-decoration: underline;
     transition: color 0.2s;
     cursor: pointer;
}

.footer-social.mail:hover .footer-mail-text {
     color: #459b9b;
}

.footer-socials {
     display: flex;
     gap: 12px;
     margin-top: 4px;
}

.footer-social {
     display: flex;
     align-items: center;
     justify-content: center;
     background: #f7f9fa;
     border-radius: 50%;
     width: 36px;
     height: 36px;
     color: #3c4341;
     transition: background 0.2s, color 0.2s;
     text-decoration: none;
     font-size: 1.1rem;
}


.footer-copyright {
     font-size: 0.97rem;
     color: #888;
     margin-top: 4px;
}
/* ======= ANIMATIONS ======= */
@keyframes fadeInUp {
  from {
    opacity: 0.5;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Bouton retour en haut ===== */
#back-to-top{
  position: fixed;
  right: 16px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(26,188,156,.25);
  background: linear-gradient(135deg,#1abc9c 0%,#117a6a 100%);
  color:#fff;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 10px 28px -10px rgba(0,0,0,.35);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 1100;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}
#back-to-top:hover{ box-shadow: 0 14px 34px -12px rgba(0,0,0,.45); }
#back-to-top.is-visible{ opacity:1; transform: translateY(0); }

/* Si le bouton admin Images est présent, on place le retour haut au-dessus de celui-ci */
/* (70px du bas pour Images) + un espace de 52-54px ≈ 122-124px pour éviter tout chevauchement */
body:has(#img-edit-toggle) #back-to-top{
  bottom: 124px;
}

@keyframes fadeIn {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

@keyframes waveAppear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======= REVEAL (scroll) ======= */
.reveal-up { opacity:0; transform: translateY(16px); will-change: transform, opacity; }
.reveal-up.is-visible { opacity:1; transform: translateY(0); transition: transform .55s cubic-bezier(.22,.9,.3,1), opacity .55s ease; }
.reveal-delay-1 { transition-delay:.05s; }
.reveal-delay-2 { transition-delay:.12s; }
.reveal-delay-3 { transition-delay:.18s; }
.reveal-delay-4 { transition-delay:.24s; }
.reveal-delay-5 { transition-delay:.3s; }

/* Réduction des motions */
@media (prefers-reduced-motion: reduce){
  .reveal-up { opacity:1; transform:none; }
  .reveal-up.is-visible { transition:none; }
}

/* ======= RESPONSIVE ======= */
/* === LOGO TYKAR RESPONSIVE === */
.logo-tykar {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

/* === NAVIGATION RESPONSIVE === */
header nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (max-width: 900px) {
  header nav ul {
    flex-direction: column;
    gap: 6px;
  }
  .logo-tykar {
    width: 90px;
    height: 90px;
  }
}

/* === CONTENU PRINCIPAL RESPONSIVE === */
main, .hero, .footer-content {
  max-width: 100vw;
  box-sizing: border-box;
  padding-left: 8px;
  padding-right: 8px;
}

@media (max-width: 700px) {
  .hero-content {
    margin-top: 60px;
    padding: 0 4vw;
  }
  .avis-container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-content {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

/* === TABLETTES ET MOBILES === */
@media (max-width: 500px) {
  .logo-tykar {
    width: 60px;
    height: 60px;
  }
  .hero h2 {
    font-size: 1.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

