/* ============================================================
   WASOE – West Africa Social and Education
   Thème principal – Orange #F47920
   ============================================================ */

/* ---- Variables ---- */
:root {
  --orange:      #F47920;
  --orange-dark: #d4621a;
  --orange-light:#fff3e8;
  --dark:        #1a1a2e;
  --dark2:       #2d2d44;
  --grey:        #6b7280;
  --grey-light:  #f4f6f8;
  --white:       #ffffff;
  --radius:      10px;
  --shadow:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.16);
  --transition:  0.3s ease;
  --font:        'Poppins', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---- Utilitaires ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-light { background: var(--grey-light); }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }

.section-label {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.section-desc { color: var(--grey); max-width: 600px; margin: 0 auto; }

/* ---- Boutons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.8rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--orange); }
.btn-white { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn-sm { padding: .45rem 1.2rem; font-size: .85rem; }
.btn-lg { padding: .9rem 2.4rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Alertes ---- */
.messages-container { padding: 1rem 0; }
.alert {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.5rem; border-radius: var(--radius);
  margin-bottom: .75rem; font-weight: 500;
  background: #e8f5e9; color: #2e7d32; border-left: 4px solid #2e7d32;
}
.alert-error { background: #fce4ec; color: #c62828; border-color: #c62828; }
.alert-close { margin-left: auto; background: none; border: none; cursor: pointer; color: inherit; }

/* ==============================
   TOPBAR
   ============================== */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  padding: .5rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.topbar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: .4rem; }
.topbar-left i { color: var(--orange); }
.topbar-right { display: flex; gap: .75rem; }
.topbar-right a { color: rgba(255,255,255,.7); font-size: .9rem; transition: var(--transition); }
.topbar-right a:hover { color: var(--orange); }

/* ==============================
   HEADER / NAV
   ============================== */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,.08);
  transition: var(--transition);
}
.header .container { display: flex; align-items: center; justify-content: space-between; padding: .75rem 20px; }

.logo { display: flex; align-items: center; gap: .75rem; }
.logo img { width: 60px; height: 60px; object-fit: contain; border-radius: 50%; }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-size: 1.3rem; font-weight: 800; color: var(--orange); line-height: 1.1; }
.logo-subtitle { font-size: .65rem; color: var(--grey); font-weight: 500; letter-spacing: .5px; }

.nav-list { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  padding: .5rem .9rem; border-radius: 50px;
  font-weight: 500; font-size: .9rem; color: var(--dark);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--orange); background: var(--orange-light); }
.btn-don { background: var(--orange); color: var(--white) !important; padding: .55rem 1.3rem; }
.btn-don:hover { background: var(--orange-dark); color: var(--white) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.nav-toggle span { width: 25px; height: 2px; background: var(--dark); transition: var(--transition); display: block; }

/* ==============================
   HERO
   ============================== */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,.85) 0%, rgba(244,121,32,.4) 100%); }
.hero-content {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column; justify-content: center;
  max-width: 750px; padding-top: 80px;
}
.hero-badge {
  display: inline-block; background: var(--orange); color: var(--white);
  font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--white); line-height: 1.2; margin-bottom: 1.25rem;
}
.hero-content p { color: rgba(255,255,255,.88); font-size: 1.05rem; margin-bottom: 2rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-prev, .hero-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.2); border: 2px solid rgba(255,255,255,.5);
  color: var(--white); width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; z-index: 10; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev:hover, .hero-next:hover { background: var(--orange); border-color: var(--orange); }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); border: none; cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--orange); transform: scale(1.3); }

/* ==============================
   STATS BAR
   ============================== */
.stats-bar { background: var(--orange); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-item { display: flex; align-items: center; gap: 1rem; color: var(--white); text-align: left; }
.stat-item i { font-size: 2.2rem; opacity: .9; }
.stat-number { display: block; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.stat-label { font-size: .85rem; opacity: .9; display: block; }

/* ==============================
   ABOUT PREVIEW
   ============================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-images { position: relative; }
.img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.img-main img { width: 100%; height: 100%; object-fit: cover; }
.img-secondary {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; border-radius: var(--radius);
  overflow: hidden; border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.img-secondary img { width: 100%; height: 160px; object-fit: cover; }
.about-badge-float {
  position: absolute; top: -20px; left: -20px;
  background: var(--orange); color: var(--white);
  border-radius: var(--radius); padding: 1rem 1.5rem;
  text-align: center; box-shadow: var(--shadow);
}
.about-badge-float .years { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge-float span { font-size: .8rem; }

.about-pillars { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.pillar { display: flex; gap: 1rem; align-items: flex-start; }
.pillar i { color: var(--orange); font-size: 1.4rem; margin-top: .2rem; flex-shrink: 0; }
.pillar p { color: var(--grey); font-size: .9rem; margin: .2rem 0 0; }
.pillar strong { display: block; font-weight: 600; }

/* ==============================
   PROGRAMMES
   ============================== */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.program-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-img { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.program-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.program-card:hover .program-img img { transform: scale(1.06); }
.program-overlay { position: absolute; inset: 0; background: rgba(244,121,32,.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.program-card:hover .program-overlay { opacity: 1; }
.program-body { padding: 1.5rem; }
.program-icon { width: 48px; height: 48px; background: var(--orange-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.2rem; margin-bottom: .75rem; }
.program-cat { font-size: .75rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; }
.program-body h3 { font-size: 1.05rem; margin: .4rem 0 .6rem; font-weight: 700; }
.program-body p { color: var(--grey); font-size: .9rem; }
.program-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--orange); font-weight: 600; font-size: .9rem; margin-top: .75rem; }
.program-link:hover { gap: .7rem; }

/* Programmes full page */
.programs-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.program-full-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.pfcard-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.pfcard-img img { width: 100%; height: 100%; object-fit: cover; }
.pfcard-cat { position: absolute; top: 1rem; left: 1rem; background: var(--orange); color: var(--white); font-size: .75rem; font-weight: 700; padding: .3rem .8rem; border-radius: 50px; }
.pfcard-body { padding: 1.75rem; }
.pfcard-icon { width: 52px; height: 52px; background: var(--orange-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.3rem; margin-bottom: 1rem; }
.pfcard-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; }
.pfcard-body p { color: var(--grey); font-size: .95rem; line-height: 1.7; }

/* ==============================
   VALEURS
   ============================== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card { text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius); border: 2px solid transparent; transition: var(--transition); }
.value-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.value-icon { width: 70px; height: 70px; background: var(--orange-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.6rem; margin: 0 auto 1.25rem; transition: var(--transition); }
.value-card:hover .value-icon { background: var(--orange); color: var(--white); }
.value-card h3 { font-weight: 700; margin-bottom: .5rem; }
.value-card p { color: var(--grey); font-size: .9rem; }

/* ==============================
   ACTUALITÉS
   ============================== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.news-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-date { position: absolute; top: 1rem; right: 1rem; background: var(--orange); color: var(--white); border-radius: var(--radius); padding: .4rem .6rem; text-align: center; line-height: 1.2; }
.news-date .day { display: block; font-size: 1.3rem; font-weight: 800; }
.news-date .month { display: block; font-size: .7rem; text-transform: uppercase; }
.news-body { padding: 1.4rem; }
.news-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; }
.news-body h3 a:hover { color: var(--orange); }
.news-body p { color: var(--grey); font-size: .9rem; }
.news-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--orange); font-weight: 600; font-size: .9rem; margin-top: .75rem; }

/* Actualités full */
.news-full-grid { display: flex; flex-direction: column; gap: 2rem; }
.news-full-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: grid; grid-template-columns: 380px 1fr; transition: var(--transition); }
.news-full-card:hover { box-shadow: var(--shadow-lg); }
.nfcard-img { position: relative; overflow: hidden; }
.nfcard-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.news-full-card:hover .nfcard-img img { transform: scale(1.04); }
.nfcard-date { position: absolute; bottom: 1rem; left: 1rem; background: var(--orange); color: var(--white); font-size: .8rem; font-weight: 600; padding: .3rem .8rem; border-radius: 50px; }
.nfcard-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.nfcard-body h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: .75rem; }
.nfcard-body h2 a:hover { color: var(--orange); }
.nfcard-body p { color: var(--grey); margin-bottom: 1.25rem; }

/* Article détail */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.article-meta { color: var(--grey); font-size: .9rem; margin-bottom: 1.5rem; display: flex; gap: 1.5rem; }
.article-hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; }
.article-hero-img img { width: 100%; max-height: 450px; object-fit: cover; }
.article-content { font-size: 1rem; line-height: 1.85; color: #374151; }
.article-content p { margin-bottom: 1.25rem; }
.article-share { display: flex; align-items: center; gap: .75rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #e5e7eb; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem 1rem; border-radius: 50px; font-size: .85rem; font-weight: 600; }
.share-btn.facebook { background: #1877f2; color: var(--white); }
.share-btn.twitter  { background: #1da1f2; color: var(--white); }
.share-btn.whatsapp { background: #25d366; color: var(--white); }
.article-back { margin-top: 1.5rem; }
.article-sidebar { }
.sidebar-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 2px solid var(--orange); }
.sidebar-news { display: flex; gap: 1rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid #e5e7eb; }
.sidebar-news-img { width: 80px; height: 60px; flex-shrink: 0; border-radius: 6px; overflow: hidden; }
.sidebar-news-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-news-text a { font-weight: 600; font-size: .9rem; display: block; margin-bottom: .25rem; }
.sidebar-news-text a:hover { color: var(--orange); }
.sidebar-news-text span { font-size: .8rem; color: var(--grey); }

/* ==============================
   GALERIE
   ============================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-hover { position: absolute; inset: 0; background: rgba(244,121,32,.85); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: var(--white); gap: .5rem; padding: 1rem; text-align: center; }
.gallery-hover i { font-size: 1.5rem; }
.gallery-hover span { font-size: .85rem; font-weight: 600; }
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }

/* Galerie masonry */
.masonry-gallery { columns: 4; gap: 1rem; }
.masonry-item { break-inside: avoid; position: relative; margin-bottom: 1rem; border-radius: 8px; overflow: hidden; cursor: pointer; }
.masonry-item img { width: 100%; display: block; transition: var(--transition); }
.masonry-overlay { position: absolute; inset: 0; background: rgba(244,121,32,.85); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: var(--white); gap: .5rem; }
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.lightbox-content { position: relative; max-width: 900px; width: 100%; text-align: center; }
.lightbox-content img { max-height: 80vh; border-radius: var(--radius); }
.lightbox-content p { color: var(--white); margin-top: 1rem; }
.lightbox-close { position: absolute; top: -15px; right: -15px; background: var(--orange); color: var(--white); border: none; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; }

/* ==============================
   TÉMOIGNAGES
   ============================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); position: relative; }
.quote-icon { color: var(--orange); font-size: 2rem; margin-bottom: .75rem; opacity: .5; }
.testimonial-card > p { color: var(--grey); font-style: italic; margin-bottom: 1.5rem; line-height: 1.75; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--orange); }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--orange-light); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.2rem; }
.testimonial-author strong { display: block; font-weight: 700; }
.testimonial-author span { font-size: .85rem; color: var(--grey); }

/* ==============================
   CTA SECTION
   ============================== */
.cta-section { position: relative; background-size: cover; background-position: center; padding: 100px 0; text-align: center; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,.88), rgba(244,121,32,.6)); }
.cta-content { position: relative; z-index: 2; color: var(--white); }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 1rem; }
.cta-content p { font-size: 1.05rem; opacity: .9; max-width: 600px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==============================
   PAGE HEADER
   ============================== */
.page-header { position: relative; background-size: cover; background-position: center; padding: 120px 0 60px; }
.page-header-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,.82), rgba(244,121,32,.5)); }
.page-header-content { position: relative; z-index: 2; color: var(--white); }
.page-header-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .75rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: rgba(255,255,255,.8); }
.breadcrumb a { color: var(--orange); }
.breadcrumb i { font-size: .7rem; }

/* ==============================
   FILTRES
   ============================== */
.filter-bar { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn { padding: .5rem 1.25rem; border-radius: 50px; font-size: .9rem; font-weight: 500; border: 2px solid #e5e7eb; color: var(--dark); transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ==============================
   ABOUT PAGE
   ============================== */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-intro-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-intro-img img { width: 100%; height: 450px; object-fit: cover; }

.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mvv-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem 2rem; box-shadow: var(--shadow); text-align: center; transition: var(--transition); }
.mvv-card.mvv-featured { background: var(--orange); color: var(--white); }
.mvv-card.mvv-featured .mvv-icon { background: rgba(255,255,255,.2); color: var(--white); }
.mvv-card.mvv-featured h3, .mvv-card.mvv-featured p { color: var(--white); }
.mvv-icon { width: 70px; height: 70px; background: var(--orange-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.8rem; margin: 0 auto 1.25rem; }
.mvv-card h3 { font-weight: 700; margin-bottom: .75rem; }
.mvv-card p { color: var(--grey); font-size: .95rem; }
.values-list { text-align: left; display: inline-block; }
.values-list li { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; font-size: .9rem; }
.values-list li i { color: var(--orange); }
.mvv-card.mvv-featured .values-list li i { color: rgba(255,255,255,.9); }

.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.approach-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.approach-img img { width: 100%; height: 500px; object-fit: cover; }
.approach-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num { width: 42px; height: 42px; background: var(--orange); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .85rem; flex-shrink: 0; }
.step h4 { font-weight: 700; margin-bottom: .25rem; }
.step p { color: var(--grey); font-size: .9rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-photo { aspect-ratio: 1; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo-placeholder { width: 100%; height: 100%; background: var(--orange-light); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 3rem; }
.team-info { padding: 1.25rem; }
.team-info h3 { font-weight: 700; font-size: 1rem; margin-bottom: .25rem; }
.team-role { color: var(--orange); font-size: .85rem; font-weight: 600; }
.team-info p { color: var(--grey); font-size: .85rem; margin-top: .5rem; }

.coordinator-grid { display: grid; grid-template-columns: 380px 1fr; gap: 4rem; align-items: center; }
.coordinator-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.coordinator-photo img { width: 100%; height: 500px; object-fit: cover; object-position: top; }
blockquote { font-style: italic; font-size: 1.05rem; line-height: 1.85; color: var(--grey); border-left: 4px solid var(--orange); padding-left: 1.5rem; margin: 1.5rem 0; }
.coordinator-sig strong { display: block; font-weight: 700; font-size: 1rem; }
.coordinator-sig span { color: var(--grey); font-size: .9rem; }

/* ==============================
   CONTACT
   ============================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; background: var(--grey-light); border-radius: var(--radius); }
.cc-icon { width: 44px; height: 44px; background: var(--orange); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-card strong { display: block; font-weight: 700; margin-bottom: .2rem; }
.contact-card p { color: var(--grey); font-size: .9rem; margin: 0; }
.contact-social p { font-weight: 600; margin-bottom: .75rem; }
.social-links { display: flex; gap: .75rem; }
.social-link { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .9rem; transition: var(--transition); }
.social-link.facebook { background: #1877f2; }
.social-link.twitter  { background: #1da1f2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.youtube  { background: #ff0000; }
.social-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-weight: 700; font-size: 1.3rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.form-group label { font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.form-group label span { color: var(--orange); }
.form-group input, .form-group textarea {
  padding: .75rem 1rem; border: 2px solid #e5e7eb; border-radius: var(--radius);
  font-family: var(--font); font-size: .95rem; transition: var(--transition);
  outline: none; width: 100%;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(244,121,32,.1); }
.form-group textarea { resize: vertical; min-height: 140px; }
.map-section { height: 400px; }
.map-section iframe { display: block; }

/* ==============================
   EMPTY STATE
   ============================== */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--grey); grid-column: 1/-1; }
.empty-state i { font-size: 3rem; color: #ddd; margin-bottom: 1rem; display: block; }
.empty-state p { margin-bottom: 1.5rem; }

/* ==============================
   FOOTER
   ============================== */
.footer-top { background: var(--dark); color: rgba(255,255,255,.85); padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-logo { width: 80px; height: 80px; object-fit: contain; border-radius: 50%; margin-bottom: 1rem; }
.footer-about p { font-size: .9rem; line-height: 1.8; color: rgba(255,255,255,.7); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.8); font-size: .85rem; transition: var(--transition); }
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-col h4 { font-weight: 700; margin-bottom: 1.25rem; color: var(--white); font-size: 1rem; position: relative; padding-bottom: .75rem; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--orange); }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { color: rgba(255,255,255,.7); font-size: .9rem; display: flex; align-items: center; gap: .5rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-col ul li a i { font-size: .7rem; color: var(--orange); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .75rem; color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: .75rem; }
.footer-contact-list li i { color: var(--orange); margin-top: .2rem; flex-shrink: 0; }
.footer-bottom { background: rgba(0,0,0,.3); padding: 1.25rem 0; text-align: center; color: rgba(255,255,255,.6); font-size: .85rem; }

/* ==============================
   BACK TO TOP
   ============================== */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 46px; height: 46px; background: var(--orange); color: var(--white);
  border: none; border-radius: 50%; cursor: pointer; font-size: 1rem;
  box-shadow: var(--shadow); transition: var(--transition); opacity: 0; visibility: hidden;
  display: flex; align-items: center; justify-content: center; z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1100px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .about-grid, .about-intro-grid, .approach-grid, .coordinator-grid { grid-template-columns: 1fr; gap: 2rem; }
  .img-secondary { display: none; }
  .about-badge-float { top: auto; bottom: -15px; left: 15px; }
  .news-full-card { grid-template-columns: 1fr; }
  .nfcard-img { height: 220px; }
  .article-layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-gallery { columns: 3; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .coordinator-photo img { height: 350px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .topbar { display: none; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow); padding: 1rem; }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; gap: .25rem; }
  .nav-link { display: block; border-radius: var(--radius); }
  .nav-toggle { display: flex; }
  .hero { height: 80vh; min-height: 500px; }
  .hero-prev, .hero-next { display: none; }
  .programs-grid, .programs-full-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .masonry-gallery { columns: 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-item { flex-direction: column; text-align: center; }
  .masonry-gallery { columns: 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ===== SELECTEUR DE LANGUE ===== */

/* Version TOPBAR (fond sombre – position initiale) */
.lang-switcher-header {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 12px;
}

.lang-switcher-header .lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 14px;
  transition: all 0.2s ease;
  letter-spacing: 0.4px;
  font-family: inherit;
  text-decoration: none;
  line-height: 1;
  opacity: 0.85;
}

.lang-switcher-header .lang-btn:hover {
  border-color: #fff;
  opacity: 1;
  background: rgba(255,255,255,0.12);
}

.lang-switcher-header .lang-btn.lang-active {
  background: var(--orange, #F47920);
  border-color: var(--orange, #F47920);
  color: #fff;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(244,121,32,0.4);
}

/* Version NAV MOBILE (fond blanc du menu déroulant) */
.nav-lang-mobile {
  display: none; /* caché sur desktop */
  border-top: 1px solid #eee;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}

.lang-switcher-nav {
  display: flex;
  gap: 8px;
  padding: 0.25rem 0.5rem;
}

.lang-switcher-nav .lang-btn {
  flex: 1;
  text-align: center;
  text-decoration: none;
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: var(--dark, #1a1a2e);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: block;
}

.lang-switcher-nav .lang-btn:hover {
  background: #ffe8d6;
  border-color: var(--orange, #e67e22);
  color: var(--orange, #e67e22);
}

.lang-switcher-nav .lang-btn.lang-active {
  background: var(--orange, #e67e22);
  border-color: var(--orange, #e67e22);
  color: #fff;
}

/* Sur mobile : cacher le switcher header, afficher le switcher nav */
@media (max-width: 768px) {
  .lang-switcher-header { display: none; }
  .nav-lang-mobile      { display: block; }
}
