/* ===== MENU ===== */
.menu {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.menu li {
  position: relative;
}
.menu li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 14px;
  padding: 4px 10px;
  line-height: 1.2;
  transition: all 0.3s ease;
}

/* ===== BOUTON MAGAZINE ===== */
.menu li.magazine a {
  background-color: #dc3545;
  color: #fff;
  padding: 4px 12px;
  font-weight: 600;
  border-radius: 0;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.menu li.magazine a:hover {
  background-color: #fff;
  color: #dc3545;
  border: 2px solid #000;
}

/* ===== LOGO CENTRÉ ===== */
.logo {
  margin: 0;
  padding: 0;
}
#main-logo {
  height: 70px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin: auto;
}

/* ===== HEADER STICKY SANS ESPACE ===== */
.main-nav-area {
  position: sticky;
  top: 0;
  z-index: 10000;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 0;
  margin: 0;
}
.main-nav-area .container,
.main-nav-area .row,
.main-nav-area .col-md-12 {
  margin: 0;
  padding: 0;
}

/* ===== HAMBURGER MOBILE ===== */
.hamburger {
  display: none;
}

/* ===== RESPONSIVE (MOBILE) ===== */
@media (max-width: 
.main-nav-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 0;
  margin: 0;
}

/* Ajoute un espace en haut du body pour éviter que le menu cache le contenu */
body {
  padding-top: 90px; /* ajuste selon la hauteur de ton header */
}
overflow: hidden;
overflow: auto;
/* ==== STYLE GLOBAL DU FOOTER ==== */
footer {
  background-color: #fff; /* fond blanc */
  padding: 40px 20px;
  color: #000;
  font-family: 'Segoe UI', sans-serif;
}
/* === FOOTER COMPACT, FOND BLANC, TEXTE PETIT === */
footer {
  background-color: #fff;
  color: #000;
  padding: 30px 20px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 13px; /* Texte plus petit ici */
}

/* TITRES des sections */
footer h3 {
  color: #000;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Liens secondaires (gris foncé) */
footer a {
  color: #2C2F31;
  font-size: 13px;
  text-decoration: none;
}

footer a:hover {
  color: #000;
  text-decoration: underline;
}

/* Listes */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 4px;
}

/* Newsletter */
footer input[type="email"] {
  font-size: 13px;
  background: #f0f0f0;
  color: #000;
  border: none;
  padding: 8px;
  border-radius: 3px;
  width: 100%;
}

footer button[type="submit"] {
  font-size: 13px;
  background-color: #000;
  color: #fff;
  padding: 8px;
  border: none;
  border-radius: 3px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
}

footer button[type="submit"]:hover {
  background-color: #2C2F31;
}
.posted-on,
.posted-on a,
.meta-date,
.entry-date,
.post-date,
.time,
.date,
.article-meta time {
  color: #007bff !important;
}

}
.date-box {
  color: #007bff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.date-box i {
  color: #007bff;
  font-size: 14px;
}

