/* ===== GLOBAL ===== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #111;
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  position: relative;
}
.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-left: 40px; /* espace pour éviter le menu */
}


.header-text h1 {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
}

.header-text p {
  margin: 0;
  font-weight: 300;
  font-size: 14px;
}

.logo-center img {
  height: 60px;
}

/* ===== MENU ===== */
.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  left: 12px;
  top: 50%;
  z-index: 100;
  transform: translateY(-50%);
}

.side-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 240px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 12px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: 0.3s;
  z-index: 99;
}

.side-menu a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 16px;
}

.side-menu a:first-child {
  font-size: 28px;
  margin-bottom: 32px;
}

/* Menu visible */
.side-menu.active {
  left: 0;
}

/* ===== MAIN ===== */
main {
  padding: 20px;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  background-color: #f5f5f5;
  margin-top: 40px;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #25d366;
  color: #fff;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  z-index: 100;
}

/* ===== CONTACT GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.contact-grid h3 {
  margin: 0 0 6px 0;
  font-size: 14px;
}

.contact-grid p {
  margin: 0;
  font-size: 13px;
}

.contact-grid a {
  color: #3b82f6;
  text-decoration: none;
}
.seo-text{
  display:none;
}
.mentions{
  margin-top:30px;
  padding:12px;
  font-size:12px;
  color:#666;
  text-align:center;
  line-height:1.4;
}