/* =================================================================
   EXCELLENCE TERTIAIRE - STYLESHEET
   Professional Hospitality Management Site
   Colors: Navy Blue (#1e3a8a) + Gold (#d4af37)
   ================================================================= */

/* === CSS VARIABLES === */
:root {
  /* Brand Colors */
  --navy-primary: #1e3a8a;
  --navy-dark: #0f1f4a;
  --navy-light: #2d4a9e;
  --gold-primary: #d4af37;
  --gold-dark: #b8961f;
  --gold-light: #e6c966;
  
  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Effects */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* === FONTS IMPORT === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--navy-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-primary);
}

strong {
  font-weight: 700;
  color: var(--navy-dark);
}

/* === HEADER & NAVIGATION === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-primary);
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding: var(--spacing-xs) 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--navy-primary);
  margin: 5px 0;
  transition: all var(--transition-base);
}

/* === HERO SECTION === */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--navy-light) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-md);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md) var(--spacing-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold-primary);
  color: var(--navy-dark);
  border-color: var(--gold-primary);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy-primary);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s backwards;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
}

/* === SECTIONS === */
.section {
  padding: var(--spacing-3xl) var(--spacing-md);
}

.section-alternate {
  background: var(--gray-50);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-2xl);
}

.section-subtitle {
  color: #8a6a00;  /* Or plus profond (contraste AA sur fond clair) */
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;  /* Poids augmenté pour meilleure lisibilité */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm);
}

.section-title {
  margin-bottom: var(--spacing-md);
}

.section-description {
  font-size: 1.1rem;
  color: var(--gray-600);
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-primary);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  color: var(--gold-primary);
  font-size: 2rem;
}

.service-card h3 {
  color: var(--navy-dark);
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: var(--spacing-md);
}

.service-card ul {
  list-style: none;
  margin-top: var(--spacing-md);
}

.service-card li {
  padding: var(--spacing-xs) 0;
  display: flex;
  align-items: start;
  gap: var(--spacing-sm);
}

.service-card li::before {
  content: '✓';
  color: var(--gold-primary);
  font-weight: bold;
  flex-shrink: 0;
}

/* === BLOG SECTION === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.blog-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-card-content {
  padding: var(--spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  gap: var(--spacing-md);
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: var(--spacing-sm);
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.blog-card h3 a {
  color: var(--navy-dark);
}

.blog-card h3 a:hover {
  color: var(--gold-primary);
}

.blog-card-excerpt {
  color: var(--gray-600);
  flex: 1;
  margin-bottom: var(--spacing-md);
}

.read-more {
  color: var(--navy-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: gap var(--transition-fast);
}

.read-more:hover {
  gap: var(--spacing-sm);
}

/* === ABOUT SECTION === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  margin-top: var(--spacing-xl);
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-content h3 {
  color: var(--navy-dark);
  margin-bottom: var(--spacing-md);
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: var(--spacing-md);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.highlight-item {
  padding: var(--spacing-md);
  background: var(--gray-50);
  border-radius: 8px;
  border-left: 4px solid var(--gold-primary);
}

.highlight-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-primary);
  font-family: var(--font-display);
}

.highlight-label {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* === CONTACT SECTION === */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--navy-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* === FOOTER === */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-md);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
  color: var(--gold-primary);
  margin-bottom: var(--spacing-md);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-sm);
  display: block;
}

.footer-section a:hover {
  color: var(--gold-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.social-links a:hover {
  background: var(--gold-primary);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: var(--spacing-xl) var(--spacing-md);
  }
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-navy { color: var(--navy-primary); }
.text-gold { color: var(--gold-primary); }
.bg-navy { background-color: var(--navy-primary); }
.bg-gold { background-color: var(--gold-primary); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-lg { margin-bottom: var(--spacing-lg); }
/* =================================================================
   CORRECTIF IMAGES ARTICLES - Excellence Tertiaire
   Ajoutez ce code à la fin de votre styles.css
   ================================================================= */

/* === IMAGES DES ARTICLES DE BLOG === */

/* Image featured dans les articles (en-tête) */
.article-featured-image {
    width: 100%;
    max-width: 1200px;
    height: 400px; /* Hauteur fixe pour cohérence */
    object-fit: cover; /* Recadrage intelligent */
    object-position: center; /* Centre l'image */
    margin: -60px auto 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: block;
}

/* Images dans le contenu des articles */
.article-content img {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Images dans les cards de blog (liste) */
.blog-card-image {
    width: 100%;
    height: 240px; /* Hauteur fixe pour toutes les cards */
    object-fit: cover;
    object-position: center;
}

/* Responsive : Mobile */
@media (max-width: 768px) {
    .article-featured-image {
        height: 250px; /* Plus petit sur mobile */
        margin: -40px auto 2rem;
    }
    
    .article-content img {
        max-height: 300px;
    }
    
    .blog-card-image {
        height: 200px;
    }
}

/* Responsive : Tablette */
@media (min-width: 769px) and (max-width: 1024px) {
    .article-featured-image {
        height: 320px;
    }
}

/* Assurer que les images ne dépassent jamais */
.article-content img,
.article-featured-image,
.blog-card-image {
    max-width: 100%;
}

/* === ACCESSIBILITÉ : TITRES FOOTER === */
/* H3 dans footer stylisés comme H4 pour garder hiérarchie correcte */
footer h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

/* =================================================================
   FORMULAIRE CONTACT PREMIUM - Excellence Tertiaire
   Style cohérent avec le quiz (or/marron + bleu foncé)
   À ajouter à la fin de styles.css
   ================================================================= */

/* === CONTAINER CONTACT === */
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

/* === FORMULAIRE PREMIUM === */
.contact-form-premium {
  background: linear-gradient(135deg, #d4a574 0%, #c89960 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

.form-group-premium {
  margin-bottom: 25px;
}

.form-group-premium label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: #1a365d;  /* Bleu foncé */
}

.required {
  color: #dc2626;
  font-weight: 700;
}

.form-group-premium input,
.form-group-premium textarea {
  width: 100%;
  padding: 16px 20px;
  border: 3px solid #1a365d;  /* Cadre épais bleu foncé */
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1.0625rem;  /* 17px */
  background: white;
  color: #1f2937;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(26, 54, 93, 0.1);
}

.form-group-premium input::placeholder,
.form-group-premium textarea::placeholder {
  color: #9ca3af;
  font-style: italic;
}

.form-group-premium input:focus,
.form-group-premium textarea:focus {
  outline: none;
  border-color: #0f1f4a;  /* Bleu très foncé au focus */
  box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.1);
  transform: translateY(-2px);
}

.form-group-premium textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}

/* === BOUTON PREMIUM === */
.btn-premium {
  background: #1a365d;
  color: white;
  border: 3px solid #0f1f4a;
  padding: 18px 40px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
  font-family: var(--font-body);
}

.btn-premium:hover {
  background: #2d4a6f;
  border-color: #d4a574;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 54, 93, 0.4);
}

.btn-premium:active {
  transform: translateY(-1px);
}

.btn-premium svg {
  transition: transform 0.3s ease;
}

.btn-premium:hover svg {
  transform: translateX(4px);
}

/* === CARTES INFO CONTACT === */
.contact-info-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: white;
  border: 3px solid #1a365d;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(26, 54, 93, 0.1);
}

.info-card:hover {
  border-color: #d4a574;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(212, 165, 116, 0.3);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.info-card h3 {
  color: #1a365d;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-card p {
  color: #6b7280;
  font-size: 0.9375rem;
  margin: 0;
}

.info-card a {
  color: #1a365d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: #d4a574;
  text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info-premium {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .info-card {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 640px) {
  .contact-form-premium {
    padding: 30px 20px;
  }
  
  .form-group-premium input,
  .form-group-premium textarea {
    padding: 14px 16px;
    font-size: 1rem;
  }
  
  .btn-premium {
    padding: 16px 30px;
    font-size: 1rem;
  }
  
  .contact-info-premium {
    flex-direction: column;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .info-icon {
    font-size: 2rem;
  }
}

/* === ANIMATION SUBMIT === */
@keyframes submitPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.btn-premium:active {
  animation: submitPulse 0.3s ease;
}

/* === ÉTATS DE VALIDATION === */
.form-group-premium input:valid,
.form-group-premium textarea:valid {
  border-color: #10b981;  /* Vert si valide */
}

.form-group-premium input:invalid:not(:placeholder-shown),
.form-group-premium textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444;  /* Rouge si invalide */
}

/* === FIN FORMULAIRE PREMIUM === */

/* =================================================================
   BOUTONS LINKEDIN - Excellence Tertiaire
   À ajouter à la fin de styles.css
   ================================================================= */

/* === BOUTON LINKEDIN HEADER === */
.linkedin-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #0077b5;  /* Bleu LinkedIn officiel */
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 119, 181, 0.3);
  margin-left: 20px;
}

.linkedin-header-btn:hover {
  background: #005582;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
}

.linkedin-header-btn svg {
  flex-shrink: 0;
}

.linkedin-header-btn span {
  white-space: nowrap;
}

/* === SECTION LINKEDIN HERO === */
.hero-social {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-intro {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9375rem;
  margin-bottom: 15px;
  text-align: center;
}

.social-intro strong {
  color: #d4a574;  /* Or */
  font-weight: 700;
}

.linkedin-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: white;
  color: #0077b5;
  border: 2px solid #0077b5;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.linkedin-hero-btn:hover {
  background: #0077b5;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 119, 181, 0.3);
}

.linkedin-hero-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.linkedin-hero-btn:hover svg {
  transform: scale(1.1);
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .linkedin-header-btn span {
    display: none;  /* Cacher texte, garder juste icône */
  }
  
  .linkedin-header-btn {
    padding: 10px 12px;
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  .linkedin-header-btn {
    display: none;  /* Cacher complètement sur mobile (déjà dans footer) */
  }
  
  .hero-social {
    margin-top: 25px;
    padding-top: 25px;
  }
  
  .linkedin-hero-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.9375rem;
    padding: 12px 20px;
  }
}

/* === NAVIGATION - Ajustement pour le bouton LinkedIn === */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  gap: 20px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

@media (max-width: 968px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }
}

/* === FIN BOUTONS LINKEDIN === */

/* Bouton LinkedIn personnalisé */

.linkedin-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #0077B5; /* Bleu LinkedIn officiel */
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.linkedin-button:hover {
  background-color: #005885; /* Bleu LinkedIn plus foncé au survol */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.linkedin-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 119, 181, 0.2);
}

/* Icône LinkedIn SVG inline */
.linkedin-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Version compacte pour mobile */
@media (max-width: 768px) {
  .linkedin-button {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .linkedin-button svg {
    width: 18px;
    height: 18px;
  }
}

/* Variante outline (optionnelle) */
.linkedin-button-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: transparent;
  color: #0077B5;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #0077B5;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.linkedin-button-outline:hover {
  background-color: #0077B5;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}
/* Navigation mobile responsive */

/* Menu hamburger - visible uniquement sur mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Animation du menu hamburger en croix */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation principale */
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Styles pour mobile */
@media (max-width: 768px) {
  
  /* Afficher le bouton hamburger */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Menu navigation en overlay sur mobile */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 80px 20px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  /* Menu ouvert */
  .main-nav.active {
    right: 0;
  }
  
  /* Liens du menu mobile */
  .main-nav a {
    width: 100%;
    padding: 15px 0;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 16px;
  }
  
  /* Overlay sombre derrière le menu */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  .nav-overlay.active {
    display: block;
  }
}

/* Styles pour tablettes */
@media (min-width: 769px) and (max-width: 1024px) {
  .main-nav {
    gap: 15px;
  }
  
  .main-nav a {
    font-size: 14px;
  }
}

/* Header responsive */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}

@media (max-width: 768px) {
  header {
    padding: 10px 15px;
  }
  
  header .logo {
    max-width: 150px;
  }
}
/* =================================================================
   DESIGN ÉDITORIAL MODERNE - Excellence Tertiaire
   Style magazine premium pour articles de blog
   ================================================================= */

/* === IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

/* === VARIABLES === */
:root {
    /* Couleurs */
    --navy-dark: #0f172a;
    --navy-primary: #1e3a8a;
    --navy-light: #3b82f6;
    --gold-primary: #d4af37;
    --gold-light: #faf8f3;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-700: #334155;
    --gray-900: #0f172a;
    
    /* Typographie */
    --font-display: 'Crimson Pro', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* === ARTICLE LAYOUT === */
.article-editorial {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-900);
}

/* === TYPOGRAPHIE === */
.article-editorial h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--navy-dark);
}

.article-editorial h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    line-height: 1.3;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--navy-primary);
    padding-left: var(--space-md);
    border-left: 4px solid var(--gold-primary);
}

.article-editorial h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--navy-primary);
}

.article-editorial p {
    margin-bottom: var(--space-md);
    color: var(--gray-700);
}

.article-editorial .intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-xl);
    font-weight: 400;
}

/* === ENCARTS VISUELS === */

/* Encart doré - Points clés */
.box-key {
    background: linear-gradient(135deg, var(--gold-light) 0%, #fff9e6 100%);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    box-shadow: var(--shadow-sm);
}

.box-key-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.box-key-title::before {
    content: '💡';
    font-size: 1.5rem;
}

.box-key p {
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
}

.box-key p:last-child {
    margin-bottom: 0;
}

/* Encart bleu - Statistiques */
.box-stats {
    background: linear-gradient(135deg, var(--navy-primary) 0%, #1e40af 100%);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    color: white;
    box-shadow: var(--shadow-lg);
}

.box-stats-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: white !important;
}

.box-stats-title::before {
    content: '📊';
    font-size: 1.5rem;
}

.box-stats p,
.box-stats ul,
.box-stats strong {
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: var(--space-sm);
}

.box-stats ul {
    list-style: none;
    padding: 0;
}

.box-stats li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-md);
    position: relative;
    color: rgba(255, 255, 255, 0.95) !important;
}

.box-stats li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.box-stats li strong {
    color: white !important;
}

/* Encart gris - Exemples */
.box-example {
    background: var(--gray-50);
    border-left: 4px solid var(--gold-primary);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
}

.box-example-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.box-example-title::before {
    content: '✓';
    color: var(--gold-primary);
    font-size: 1.25rem;
    font-weight: bold;
}

.box-example p {
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

/* === CITATIONS === */
.quote-large {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--navy-primary);
    margin: var(--space-xl) auto;
    padding: var(--space-lg) var(--space-xl);
    border-left: 4px solid var(--gold-primary);
    background: linear-gradient(to right, var(--gold-light) 0%, transparent 100%);
    max-width: 700px;
}

.quote-source {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: var(--space-sm);
    display: block;
}

.quote-source::before {
    content: '— ';
}

/* === LISTES === */
.article-editorial ul,
.article-editorial ol {
    margin: var(--space-lg) 0;
    padding-left: var(--space-lg);
}

.article-editorial li {
    margin-bottom: var(--space-sm);
    color: var(--gray-700);
}

.article-editorial ul.list-elegant {
    list-style: none;
    padding: 0;
}

.article-editorial ul.list-elegant li {
    padding-left: var(--space-lg);
    position: relative;
    margin-bottom: var(--space-md);
}

.article-editorial ul.list-elegant li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
    font-size: 1.25rem;
}

/* === IMAGES === */
.article-image {
    width: 60%;
    max-width: 420px;
    height: auto;
    border-radius: var(--radius-md);
    margin: var(--space-xl) auto;
    display: block;
    box-shadow: var(--shadow-md);
}

.image-wrapper {
    margin: var(--space-xl) 0;
    text-align: center;
}

.image-caption {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-style: italic;
    color: var(--gray-700);
    margin-top: var(--space-sm);
    text-align: center;
}

/* === SÉPARATEURS === */
.separator {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gold-primary), transparent);
    margin: var(--space-xl) 0;
    border: none;
}

/* === CALL TO ACTION === */
.cta-box {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) auto;
    max-width: 800px;
    text-align: center;
    color: white !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.3);
}

.cta-box h3,
.cta-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: white !important;
    line-height: 1.3;
}

.cta-box p,
.cta-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box a,
.cta-box .btn-primary,
.cta-button {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--navy-dark) !important;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-primary);
    cursor: pointer;
}

.cta-box a:hover,
.cta-box .btn-primary:hover,
.cta-button:hover {
    background: #f5d76e;
    border-color: #f5d76e;
    color: var(--navy-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* === LIENS === */
.article-editorial a {
    color: var(--navy-light);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.article-editorial a:hover {
    color: var(--navy-primary);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .article-editorial {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .article-editorial h1 {
        font-size: 2rem;
    }
    
    .article-editorial h2 {
        font-size: 1.5rem;
        margin-top: var(--space-lg);
    }
    
    .quote-large {
        font-size: 1.25rem;
        padding: var(--space-md) var(--space-md);
    }
    
    .box-key,
    .box-stats,
    .box-example {
        padding: var(--space-md);
    }
    
    .cta-box {
        padding: var(--space-lg);
    }
}

/* === PRINT === */
@media print {
    .article-editorial {
        max-width: 100%;
    }
    
    .box-stats {
        background: white;
        border: 2px solid var(--navy-primary);
        color: var(--gray-900);
    }
    
    .cta-box {
        display: none;
    }
}
/* =================================================================
   CORRECTIFS COMPLETS - Excellence Tertiaire
   Remplacez "correctifs-urgents.css" par ce fichier
   ================================================================= */

/* === CORRECTIF 1 : TEXTE BLANC SUR FOND BLEU (PRIORITÉ MAX) === */

/* Page d'accueil - Hero section */
.hero h1,
.hero-content h1,
.hero .hero-content h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle,
.hero p,
.hero .hero-subtitle {
    color: #ffffff !important;
    opacity: 0.95;
}

.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
}

/* Articles - Header avec fond bleu */
.article-header h1,
article header h1,
.blog-post-header h1,
.entry-header h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.article-meta,
.article-header .article-meta,
article header .article-meta,
.blog-post-header .article-meta,
.entry-meta {
    color: #ffffff !important;
    opacity: 0.9;
}

.article-meta span,
.article-meta time,
.article-meta .author,
.article-meta .date {
    color: #ffffff !important;
}

.article-header,
article > header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
}

/* Force sur tous les éléments de header */
header[style*="background"] h1,
header[style*="gradient"] h1,
.bg-navy h1,
.bg-blue h1 {
    color: #ffffff !important;
}

[class*="hero"] h1,
[class*="hero"] h2,
[class*="hero"] p {
    color: #ffffff !important;
}

article > header h1,
article > header h2,
article > header p,
article > header span {
    color: #ffffff !important;
}

/* === CORRECTIF 2 : IMAGES ARTICLES PLUS PETITES === */

/* Image featured dans les articles (en-tête) - TAILLE RÉDUITE */
.article-featured-image,
.featured-image,
.post-thumbnail img,
article img[class*="featured"] {
    width: 100%;
    max-width: 900px !important;
    height: 280px !important;
    object-fit: cover;
    object-position: center;
    margin: -40px auto 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: block;
}

/* Images dans le contenu des articles - TAILLE RÉDUITE */
.article-content img,
.entry-content img,
.post-content img {
    width: 100%;
    max-width: 700px !important;
    height: auto;
    max-height: 350px !important;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin: 1.5rem auto;
    display: block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Images dans les cards de blog (liste) - HAUTEUR FIXE */
.blog-card-image {
    width: 100%;
    height: 240px !important;
    object-fit: cover;
    object-position: center;
}

/* Assurer que les images ne dépassent jamais */
.article-content img,
.article-featured-image,
.blog-card-image {
    max-width: 100%;
}

/* === CORRECTIF 3 : RESPONSIVE MOBILE === */

@media (max-width: 768px) {
    /* Images encore plus petites sur mobile */
    .article-featured-image,
    .featured-image {
        height: 200px !important;
        margin: -30px auto 1.5rem;
        max-width: 100%;
    }
    
    .article-content img,
    .entry-content img {
        max-height: 250px !important;
        max-width: 100%;
    }
    
    .blog-card-image {
        height: 200px !important;
    }
    
    /* Texte blanc forcé sur mobile aussi */
    .hero h1,
    article header h1,
    .article-header h1 {
        color: #ffffff !important;
    }
    
    .hero-subtitle,
    .article-meta {
        color: #ffffff !important;
    }
}

/* === CORRECTIF 4 : RESPONSIVE TABLETTE === */

@media (min-width: 769px) and (max-width: 1024px) {
    .article-featured-image,
    .featured-image {
        height: 240px !important;
        max-width: 750px;
    }
    
    .article-content img {
        max-width: 650px !important;
        max-height: 320px !important;
    }
}

/* === CORRECTIF 5 : HERO PAGE D'ACCUEIL === */

/* S'assurer que le hero a un fond bleu foncé */
.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* === CORRECTIF 6 : COMPATIBILITÉ AVEC DIFFÉRENTES STRUCTURES HTML === */

/* Au cas où le header aurait d'autres classes */
.page-header h1,
.post-header h1,
[class*="header"] h1 {
    color: #ffffff !important;
}

/* Au cas où l'image serait dans une div wrapper */
.featured-image-wrapper img,
.article-image-wrapper img {
    max-width: 900px !important;
    height: 280px !important;
    object-fit: cover;
}

/* === CORRECTIF 7 : CONTRASTE AMÉLIORÉ === */

/* Ajouter une ombre de texte pour meilleure lisibilité */
.hero h1,
.article-header h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Assurer un contraste suffisant */
.hero,
.article-header {
    position: relative;
}

.hero::before,
.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.95);
    z-index: 0;
}

.hero *,
.article-header * {
    position: relative;
    z-index: 1;
}

/* === CORRECTIF 8 : BOUTONS ET LIENS DANS HERO === */

.hero .btn,
.hero a {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.hero .btn-primary {
    background: #d4af37;
    color: #1e3a8a;
}

.hero .btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

/* === CORRECTIF 9 : NAVIGATION === */

/* S'assurer que la navigation reste lisible */
.nav-menu a {
    color: #1e3a8a;
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
}

/* === CORRECTIF 10 : ASSURER LA COMPATIBILITÉ === */

/* Force finale si rien d'autre ne marche */
body .hero h1,
body .hero-content h1,
body .article-header h1,
body article header h1 {
    color: #ffffff !important;
}

body .hero p,
body .hero-subtitle,
body .article-meta {
    color: #ffffff !important;
}

/* === FIN DES CORRECTIFS === */
/* =================================================================
   CORRECTIF BLOG CARDS - Excellence Tertiaire
   À ajouter à la fin de correctifs-urgents.css
   ================================================================= */

/* === SECTION BLOG SUR HOMEPAGE === */

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

/* === BLOG CARDS === */

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 480px; /* Hauteur fixe pour uniformité */
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* === IMAGE BLOG CARD === */

.blog-image,
.blog-card .blog-image,
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* === CONTENU BLOG CARD === */

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.blog-category {
    color: #1e3a8a;
    font-weight: 600;
}

.blog-date {
    color: #64748b;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #0f172a;
    margin: 0 0 0.75rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === RESPONSIVE === */

/* Tablette */
@media (max-width: 1024px) {
    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        height: auto;
    }
}

/* === CORRECTIF 11 : PHOTO À PROPOS (TAILLE ET ALIGNEMENT) === */

/* Grid de la section À propos - Alignement vertical */
.about-grid,
#about .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start; /* Aligne tout en haut */
}

/* Photo Olivier Villeneuve dans la section À propos */
.about-image,
.about-image-container img,
#about img,
img[src*="olivier-villeneuve"] {
    max-width: 90% !important; /* Augmenté de 30% (60% + 30% = 90%) */
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Container de la photo - centré verticalement avec le contenu */
.about-image-container {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start; /* Aligné en haut */
    justify-content: center;
}

/* Assurer que le contenu texte commence en haut aussi */
.about-content {
    padding-top: 0;
    align-self: start;
}

/* Responsive - maintenir les proportions sur mobile */
@media (max-width: 768px) {
    .about-grid,
    #about .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image,
    .about-image-container img,
    #about img,
    img[src*="olivier-villeneuve"] {
        max-width: 80% !important;
    }
}

/* === CORRECTIF 12 : ÉTOILES DORÉES SCINTILLANTES === */

/* Animation de scintillement - DÉSACTIVÉE */
/* Les étoiles ont été retirées suite à la demande du client */

/* Pas d'étoiles dans le Hero */

/* Pas d'étoiles dans les articles */

/* S'assurer que le contenu reste bien positionné */
.hero > *,
.article-header > * {
    position: relative;
    z-index: 2;
}

/* === FIN DU CORRECTIF === */
/* Corrections titres articles blog */
.article-header h1 {
    font-size: clamp(1.5rem, 4vw, 2.25rem) !important;
    line-height: 1.3 !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    text-align: center !important;
}

.article-header .container {
    max-width: 1000px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .article-header {
        min-height: 300px !important;
        padding: 40px 15px !important;
    }
    
    .article-header h1 {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
    }
}
/* Corrections navigation header */
.nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 1rem 1.5rem !important;
}

.logo {
    flex-shrink: 0 !important;
}

.nav-menu {
    display: flex !important;
    gap: 2rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        padding: 2rem 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}
/* Formulaire de contact plus compact */
.contact-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.contact-form-premium {
    width: 100% !important;
}

.contact-info-premium {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
    margin-top: 2rem !important;
}

.info-card {
    padding: 1.5rem !important;
    text-align: center !important;
    background: #f8fafc !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
}

.form-group-premium {
    margin-bottom: 1.25rem !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-info-premium {
        grid-template-columns: 1fr !important;
    }
}

/* ====================================
   BOUTON LINKEDIN HEADER - UNIFORMISATION
   ==================================== */

/* S'assurer que le bouton LinkedIn est toujours visible */
.linkedin-header-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 20px !important;
    background: #0077b5 !important;
    color: white !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.9375rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 6px rgba(0, 119, 181, 0.3) !important;
    margin-left: 1rem !important;
    white-space: nowrap !important;
}

.linkedin-header-btn:hover {
    background: #005582 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4) !important;
    color: white !important;
}

.linkedin-header-btn svg {
    flex-shrink: 0 !important;
    width: 20px !important;
    height: 20px !important;
}

.linkedin-header-btn span {
    color: white !important;
}

/* Navigation container - uniformisation */
.site-header {
    background: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

.nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 1rem 1.5rem !important;
    gap: 2rem !important;
}

/* Logo uniformisé */
.logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1e3a8a !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.logo img {
    width: 50px !important;
    height: 50px !important;
}

/* Menu navigation */
.nav-menu {
    display: flex !important;
    gap: 2rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
}

.nav-menu li {
    margin: 0 !important;
}

.nav-menu a {
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    color: #1e3a8a !important;
    text-decoration: none !important;
    padding: 0.5rem 0 !important;
    position: relative !important;
    transition: color 0.3s ease !important;
}

.nav-menu a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background: #d4af37 !important;
    transition: width 0.3s ease !important;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100% !important;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d4af37 !important;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none !important;
    flex-direction: column !important;
    gap: 4px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
}

.mobile-menu-toggle span {
    width: 25px !important;
    height: 3px !important;
    background: #1e3a8a !important;
    transition: all 0.3s ease !important;
    border-radius: 2px !important;
}

/* Responsive mobile */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem !important;
    }
    
    .nav-menu {
        gap: 1.5rem !important;
    }
    
    .linkedin-header-btn {
        padding: 8px 16px !important;
        font-size: 0.875rem !important;
    }
    
    .linkedin-header-btn span {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        right: -100% !important;
        flex-direction: column !important;
        background: white !important;
        width: 70% !important;
        max-width: 300px !important;
        height: calc(100vh - 70px) !important;
        padding: 2rem 1.5rem !important;
        gap: 0 !important;
        transition: right 0.3s ease !important;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1) !important;
        z-index: 999 !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }
    
    .nav-menu a {
        display: block !important;
        padding: 1rem 0 !important;
        width: 100% !important;
    }
    
    .linkedin-header-btn {
        display: none !important;
    }
}


/* ====================================
   BOUTON LINKEDIN HERO - CORRECTION COULEURS
   ==================================== */

.linkedin-hero-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 28px !important;
    background: white !important;
    color: #0077b5 !important;
    border: 2px solid #0077b5 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.linkedin-hero-btn span {
    color: #0077b5 !important;
}

.linkedin-hero-btn svg {
    color: #0077b5 !important;
    fill: #0077b5 !important;
}

.linkedin-hero-btn:hover {
    background: #0077b5 !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3) !important;
}

.linkedin-hero-btn:hover span {
    color: white !important;
}

.linkedin-hero-btn:hover svg {
    color: white !important;
    fill: white !important;
}

