body {
  background: #181818 url('/img/back.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #ffd700;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main, .main-content { flex: 1 0 auto; }
/* --- LE RESTE DE TON CSS --- */

header {
  position: relative;
  padding: 2em 0 1em 0;
  text-align: center;
}
header::before {
  content: '';
  position: absolute;
  left: 0; 
  top: 0; 
  right: 0; bottom: 0;
  background: rgba(20,20,20,0.80); /* haut de page. */
  z-index: 0;
  pointer-events: none;
}
header > * {
  position: relative;
  z-index: 1;
}
header img {
  width: 160px;
  margin-bottom: 0.5em;
  cursor: pointer;
}
.lang-dropdown {
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 1000;
}
.lang-dropdown img {
  width: 32px;
  height: 20px;
  cursor: pointer;
  border-radius: 4px;
}
.lang-dropdown .dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: #282828;
  z-index: 1001;
  padding: 6px 8px;
  border-radius: 7px;
  min-width: 200px;
  box-shadow: 0 8px 32px #0004;
}
.lang-dropdown.open .dropdown-content { display: block; }
.lang-dropdown .dropdown-content img {
  width: 28px;
  height: 18px;
  margin: 4px;
  border-radius: 3px;
  border: 1.5px solid transparent;
  transition: border .2s;
}
.lang-dropdown .dropdown-content img:hover { border: 1.5px solid #ffd700; }
.main-content {
  text-align: center;
  max-width: 800px;
  margin: auto;
  padding: 20px;
}
.text-overlay {
  position: relative;
  z-index: 1;
  margin:2em auto;
  max-width:700px;
  padding:2em 2.5em;
}
.text-overlay::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(20,20,20,0.90); /* Overlay sombre derrière le texte */
  z-index: -1;
  border-radius: 18px;
  pointer-events: none;
}
/* catégorie */
.section {
  margin: 3em 0;
  padding: 2.5em 2em 2.5em 2em;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 32px #0005;
  background-blend-mode: overlay;
  background-color: rgba(16,16,16,0.60); /* Overlay sombre les image catégorie */
}
.section h2 { color: #ffd700; }
.section ul {
  text-align: left;
  margin: 1.5em auto;
  max-width: 460px;
  color: #ffe066;
}
.button {
  background: #c8102e;
  color: #fff;
  padding: 1em 2.5em;
  font-size: 1.2em;
  border-radius: 2em;
  text-decoration: none;
  transition: background .2s;
  font-weight: bold;
  margin-top: 1.5em;
  display: inline-block;
}
.button:hover { background: #e52540; color: #ffd700; }
footer {
  background: #101010;
  padding: 1.5em;
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 3em;
}
footer a {
  color: #888;
  margin: 0 1.3em;
  text-decoration: none;
}
footer a:hover { color: #ffd700; }

@media (max-width: 900px) {
  .section { padding: 1.5em 0.8em; }
  .main-content { padding: 8px; }
  header img { width: 110px; }
}

/* footer en bas de page */
html, body {
  height: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main, .main-content {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

 footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1em !important;
  }

  footer a {
    margin: 0.3em 0 !important;
  }
  }

 /* WhatsApp bubble déjà corrigée, ne rien modifier ici */

  .whatsapp-bubble img {
    width: 24px !important;
    height: 24px !important;
  }
}

@media (max-width: 700px) {
  .whatsapp-bubble {
    width: 44px !important;
    height: 44px !important;
    right: 8px !important;
    bottom: 8px !important;
  }
}

@media (max-width: 500px) {
  .whatsapp-bubble {
    bottom: 18px !important;   /* au lieu de 8px */
    right: 8px !important;
  }
}

  .whatsapp-bubble {
    position: fixed !important;
    right: 10px !important;
    bottom: 10px !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
    background: #25d366 !important;
    border-radius: 50% !important;
  }



/* Logo responsive */
header img { max-width: 200px; height: auto; }
@media (max-width: 500px) {
  header img { max-width: 110px; }
}

/* menu header */
.menu-burger {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
  z-index: 2001;
}
.menu-burger span {
  display: block;
  width: 30px;
  height: 4px;
  background: #ffd700;
  border-radius: 2px;
  transition: .2s;
}
.menu-nav {
  position: fixed;
  top: 0; left: 0;
  width: 0;
  height: 100vh;
  background: rgba(24,24,24,0.97);
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 44px 0 0 0;
  transition: width .25s cubic-bezier(.5,0,.2,1);
  box-shadow: 0 0 40px #0008;
  pointer-events: none;
}
.menu-nav.open {
  width: 260px;
  pointer-events: all;
}
.menu-nav a {
  color: #ffd700;
  text-decoration: none;
  padding: 1.1em 2.2em;
  font-size: 1.18em;
  display: block;
  width: 100%;
  transition: background .18s;
}
.menu-nav a:hover {
  background: #ffd70022;
  color: #fff;
}
/* Optionnel : effet burger animé */
.menu-burger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-burger.active span:nth-child(2) { opacity: 0; }
.menu-burger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.city-list {
  column-count: 2;
  max-width: 520px;
  margin: 2em auto 2em auto;
  text-align: left;
  padding-left: 16px;
  font-size: 1.05em;
}
@media (max-width: 700px) {
  .city-list {
    column-count: 1;
    max-width: 97vw;
    font-size: 1em;
  }
}


@media (max-width: 700px) {
  html, body {
    min-height: 0 !important;
    height: auto !important;
    overflow-x: hidden !important;
  }
  .whatsapp-bubble {
    position: fixed !important;
    right: 10px !important;
    bottom: 10px !important;
    z-index: 99999 !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
  }
  .whatsapp-bubble img {
    width: 25px !important;
    height: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
  }
}
