:root{
  --txt: #0f172a;
  --muted: #5b677a;
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
  --radius: 18px;

  /* Couleurs Byebye Guêpes */
  --primary: #0f4c81;
  --primary2: #18a37a;
}

/* =========================
   RESET / BASE
   ========================= */
*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; }

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--txt);
  background: #f5f7fb;
  line-height: 1.55;
}

img{ max-width:100%; height:auto; }

/* Liens */
a{ color: inherit; }
a:hover{ opacity: .98; }

/* =========================
   TOP BAR
   ========================= */
.topbar{
  background: #0f172a;
  color: rgba(255,255,255,.9);
  font-size: 14px;
}
.topbar-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.topbar a{
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.topbar a:hover{ text-decoration: underline; }

/* =========================
   HEADER
   ========================= */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,247,251,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo + texte : jamais "bleu souligné" */
.brand,
.brand:link,
.brand:visited{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration: none !important;
  color: inherit;
}
.brand:hover{ opacity: .97; }
.brand *{ text-decoration: none !important; }

.brand-logo{
  width:44px;
  height:44px;
  border-radius:10px;
  object-fit:contain;
  background:#fff;
  border:1px solid rgba(15,23,42,.12);
  padding:6px;
}
.brand-text strong{
  display:block;
  font-size:20px;
}
.brand-text span{
  display:block;
  font-size:14px;
  color:#666;
}

/* Menu */
.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}
.nav a{
  text-decoration:none;
  color: var(--txt);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(15,23,42,.06);
}

/* Lien actif (vert) */
.nav a.active,
.nav a[aria-current="page"]{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(2,6,23,.18);
}

/* =========================
   LANG SWITCH – FR / NL (rond)
   ========================= */
.lang-switch{
  display:flex;
  align-items:center;
  gap: 8px;
}

.lang-btn{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;

  font-size: 13px;
  font-weight: 900;
  letter-spacing: .3px;

  text-decoration:none;
  color: var(--txt);

  background: #fff;
  border: 1px solid var(--border);

  transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.lang-btn:hover{
  background: rgba(15,23,42,.06);
  transform: translateY(-1px);
}

.lang-btn.active,
.lang-btn[aria-current="true"]{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  border: none;
  box-shadow: 0 6px 16px rgba(2,6,23,.18);
}

/* =========================
   HERO
   ========================= */
.hero{
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(110deg, rgba(15,76,129,.88), rgba(24,163,122,.80)),
    url("assets/header-banner.jpeg");
  background-size: cover;
  background-position: center 30%;
}
.hero-inner{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.hero-card{
  max-width: 720px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.38);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 18px;
}
.hero h1{
  margin: 0 0 8px 0;
  font-size: 30px;
  line-height: 1.12;
}
.hero-subtitle{
  margin: 0 0 8px 0;
  font-weight: 900;
  color: #0b2a45;
}
.hero-text{
  margin: 0 0 14px 0;
  color: #1f2a44;
}
.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-note{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(15,23,42,.75);
}

/* =========================
   BOUTONS
   ========================= */
.btn-primary,
.btn-secondary{
  display:inline-block;
  text-decoration:none;
  font-weight: 900;
  border-radius: 14px;
  padding: 11px 13px;
  font-size: 14px;
}
.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:#fff;
  box-shadow: 0 10px 25px rgba(2,6,23,.18);
}
.btn-secondary{
  background: #fff;
  color: var(--txt);
  border: 1px solid rgba(15,23,42,.14);
}
.btn-primary:hover,
.btn-secondary:hover{
  transform: translateY(-1px);
}

/* =========================
   SECTIONS
   ========================= */
.section{ padding: 44px 0; }
.section-alt{
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

h2{ margin: 0 0 10px 0; font-size: 26px; }
.section-lead{ margin: 0 0 18px 0; color: var(--muted); }

/* =========================
   CARDS / GRIDS
   ========================= */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 20px rgba(2,6,23,.06);
}
.card h3{ margin: 0 0 8px 0; font-size: 18px; }
.card p{ margin: 0 0 12px 0; color: #1f2a44; }

.list{ padding-left: 18px; color: var(--muted); margin: 0; }
.list li{ margin: 6px 0; }

.grid-2{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
}

.warning{
  background: linear-gradient(180deg, rgba(255,214,0,.12), rgba(255,214,0,.06));
  border: 1px solid rgba(255,214,0,.35);
  border-radius: var(--radius);
  padding: 16px;
}

/* =========================
   PRIX – CARTES TARIFS
   ========================= */
.price-box{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

.price-title{
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--txt);
  letter-spacing: .2px;
}

.price-lines{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-line{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(15,23,42,.12);
}

.price-line:last-child{
  border-bottom: none;
}

.price-line span{
  color: var(--muted);
  font-weight: 700;
}

.price-line strong{
  font-size: 16px;
  font-weight: 900;
  color: var(--primary);
}

/* Prix gratuit */
.price-box.price-free{
  background: linear-gradient(180deg, #ecfdf5, #ffffff);
  border-color: rgba(24,163,122,.35);
}
.price-box.price-free .price-line strong{
  color: #18a37a;
}

/* =========================
   ZONE
   ========================= */
.zone{
  font-size: 18px;
  font-weight: 900;
  margin: 0;
}
.zone span{
  font-weight: 700;
  color: var(--muted);
  font-size: 14px;
}
.zone-text{
  margin-top: 12px;
  color: var(--muted);
  max-width: 900px;
}

/* =========================
   FORMULAIRE (Contact)
   ========================= */
.report-form{
  margin-top: 24px;
}

.report-form fieldset{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
}

.report-form legend{
  padding: 0 8px;
  font-weight: 900;
  font-size: 15px;
}

.report-form label{
  display: block;
  font-weight: 800;
  margin: 14px 0 6px;
}

.report-form input,
.report-form select,
.report-form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.14);
  font-size: 15px;
  background: #f9fafb;
}

.report-form textarea{
  min-height: 120px;
  resize: vertical;
}

.report-form input:focus,
.report-form select:focus,
.report-form textarea:focus{
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,76,129,.15);
}

/* =========================
   GALERIE PHOTOS
   ========================= */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.gallery-card{
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.14);
}

.gallery-card img{
  width: 100%;
  height: 200px;        /* taille maîtrisée */
  object-fit: cover;    /* pas de déformation */
  display: block;
}

.gallery-card figcaption{
  padding: 12px 14px;
  font-size: 0.92rem;
  color: #444;
  text-align: center;
  background: #fafafa;
}

/* =========================
   LIGHTBOX (si gallery.js l'utilise)
   ========================= */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img{
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

/* =========================
   FOOTER
   ========================= */
.footer{
  padding: 24px 0;
  background: #0f172a;
  color: rgba(255,255,255,.9);
}
.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer .muted{ color: rgba(255,255,255,.7); }

/* =========================
   WHATSAPP FLOAT
   ========================= */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  background: #25D366;
  color: #ffffff;
  transition: transform .15s ease, opacity .15s ease;
}
.wa-float:hover{
  transform: translateY(-2px);
  opacity: .95;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .hero h1{ font-size: 26px; }
  .topbar-inner{ flex-direction: column; align-items: flex-start; }
  .header-inner{ flex-wrap: wrap; }
}

@media (max-width: 600px){
  .wa-float{
    width: 60px;
    height: 60px;
    font-size: 28px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 520px){
  .brand-text span{ display:none; }
  .nav{ gap: 8px; }
  .nav a{ padding: 8px; }
  .price-line{ font-size: 14px; }
  .price-line strong{ font-size: 15px; }
}
