/* ==========================
   ARTICLE INDIVIDUEL WISUO
========================== */

body {
  background: #ffffff;
}

/* --- HERO --- */
.article-hero {
  text-align: center;
  padding: 100px 20px 60px;
  background-color: #ffffff;
}

.article-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  color: #0f2742;
  margin-bottom: 10px;
}

.article-meta {
  color: #5c6b7a;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 30px;
}

.article-hero-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15, 39, 66, 0.08);
}

/* --- CONTENU --- */
.article-content {
  background-color: #ffffff;
  padding: 60px 20px 80px;
}

.article-content .container {
  max-width: 850px;
  margin: 0 auto;
}

.article-content h2 {
  font-family: 'Montserrat', sans-serif;
  color: #0f2742;
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 14px;
}

.article-content p {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.8;
  margin-bottom: 18px;
}

.article-content blockquote {
  background: #f4f7fb;
  border-left: 4px solid #0f2742;
  padding: 20px 30px;
  font-style: italic;
  color: #0f2742;
  margin: 30px 0;
  border-radius: 10px;
}

.article-content a.btn-outline {
  display: inline-block;
  margin-top: 30px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .article-hero {
    padding: 80px 15px 40px;
  }

  .article-hero h1 {
    font-size: 1.8rem;
  }

  .article-hero-img {
    max-width: 100%;
  }

  .article-content h2 {
    font-size: 1.3rem;
  }

  .article-content {
    padding: 50px 15px;
  }
}

/* --- HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0c2340;
  letter-spacing: 1px;
  text-decoration: none;
}

/* Navigation */
.site-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: #0c2340;
  font-weight: 500;
  transition: color 0.3s;
}

.site-nav a:hover,
.site-nav a.active {
  color: #007BFF;
}

/* Bouton Contactez-nous */
.btn.contact-btn {
  border: 2px solid #0c2340;
  padding: 10px 22px;
  border-radius: 25px;
  color: #0c2340;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.contact-btn:hover {
  background: #0c2340;
  color: #fff;
}

.logo img {
  transition: none !important;
}

/* ✅ Désactiver effet hover sur hero.png */
.hero-img:hover {
  transform: none !important;
  box-shadow: none !important;
  filter: none !important;
}

/* ✅ Correction hauteur menu sur projets.php */
.site-header {
  padding: 14px 0 !important; /* même hauteur que sur les autres pages */
}

/* supprime tout padding ajouté par erreur sur la section des projets */
.projets-section,
.projets-header,
.page-projets header {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
