/* ═══════════════════════════════════════════════════════════
   KACCO — Kalehe Arabica Coffee Cooperative
   Main Stylesheet — style.css
   Stack: Bootstrap 5 + Custom CSS
   Adapté du design de référence — palette KACCO uniquement modifiée
═══════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ──
   Mapping conservé du site de référence :
   --primary   (fonds sombres / hero / footer)   navy → noir
   --secondary (accents / CTA / boutons)         vert → vert KACCO
*/
:root {
  --primary:        #000000;
  --primary-light:  #262626;
  --secondary:      #1fb250; /* vert exact du logo KACCO */
  --secondary-light:#1a9744; /* variante plus foncée, pour le survol (hover) */
  --secondary-text: #17863c; /* variante foncée du vert, utilisée pour le TEXTE (lisibilité AA) */
  --accent-tint:    #8fd8a8; /* teinte claire du vert, pour texte sur fond sombre */
  --white:          #ffffff;
  --dark:           #000000;
  --muted:          #565264;
  --light-bg:       #f2f2f2;
  --border:         #e2e2e2;
  --font:           -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", sans-serif;
  --radius-sm:      12px;
  --radius-md:      20px;
  --radius-lg:      24px;
  --shadow-sm:      0 4px 16px rgba(0,0,0,0.07);
  --shadow-md:      0 16px 48px rgba(0,0,0,0.09);
  --shadow-lg:      0 40px 80px rgba(0,0,0,0.15);
  --transition:     0.3s ease;
}

/* ── 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);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-brand .logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.navbar-brand img.logo-img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}
.navbar-brand .brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.navbar-brand .brand-sub {
  font-size: 10px;
  color: var(--muted);
}
.nav-link {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--dark) !important;
  padding: 1.5rem 0.85rem !important;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--secondary);
  transition: left 0.3s, right 0.3s;
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { left: 0.85rem; right: 0.85rem; }
.nav-link:hover,
.nav-link.active { color: var(--primary) !important; }
.btn-donate-nav {
  background: var(--secondary) !important;
  color: #fff !important;
  border-radius: 980px !important;
  padding: 0.45rem 1.2rem !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.btn-donate-nav:hover {
  background: var(--secondary-light) !important;
  color: #fff !important;
  transform: scale(1.04);
}
.btn-donate-nav::after { display: none !important; }

/* Language switcher */
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  background: var(--light-bg);
  border-radius: 980px;
  padding: 3px;
  margin-left: 0.5rem;
}
.lang-switch a {
  font-size: 11px; font-weight: 700;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 980px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  text-transform: uppercase;
}
.lang-switch a.active {
  background: var(--primary);
  color: #fff;
}
.lang-switch a:hover:not(.active) { color: var(--dark); }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(120deg, var(--primary) 0%, #1f1f1f 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-drying-beds-lake.jpg') center/cover;
  opacity: 0.15;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 13px; }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); font-size: 13px; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
section { padding: 100px 0; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary-text);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--dark);
  line-height: 1.15;
}
.section-title span { color: var(--primary); }
.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}
hr.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border: none; border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary-custom:hover { background: var(--primary-light); transform: scale(1.03); color: #fff; }

.btn-secondary-custom {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 0.8rem 1.8rem;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.btn-secondary-custom:hover { background: var(--primary); color: #fff; }

.btn-green-custom {
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--transition), transform var(--transition);
}
.btn-green-custom:hover { background: var(--secondary-light); transform: scale(1.03); color: #fff; }

/* ══════════════════════════════════════════
   CARDS — General
══════════════════════════════════════════ */
.hire-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.hire-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

/* ══════════════════════════════════════════
   HERO (Home page)
══════════════════════════════════════════ */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-drying-beds-lake.jpg') center/cover no-repeat;
  opacity: 0.35;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.78) 55%, rgba(31,178,80,0.32) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(31,178,80,0.14);
  border: 1px solid rgba(31,178,80,0.35);
  color: var(--accent-tint);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 980px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero h1 span { color: var(--accent-tint); }
.hero > .container > .row > .col-lg-6 > .hero-content > p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  animation: fadeUp 1s 0.3s ease both;
}
.btn-hero-primary {
  background: var(--secondary); color: #fff;
  border: none; padding: 0.85rem 2rem;
  border-radius: 980px; font-size: 15px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--transition), transform var(--transition);
}
.btn-hero-primary:hover { background: var(--secondary-light); transform: scale(1.03); color: #fff; }
.btn-hero-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 0.85rem 2rem;
  border-radius: 980px; font-size: 15px; font-weight: 500;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3.5rem;
  animation: fadeUp 1s 0.4s ease both;
}
.hero-stat .num {
  font-size: 2.2rem; font-weight: 700;
  color: #fff; letter-spacing: -1px; line-height: 1;
}
.hero-stat .num span { color: var(--accent-tint); }
.hero-stat .label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-image-col {
  position: relative; z-index: 2;
  animation: fadeLeft 1s 0.3s ease both;
}
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { width: 100%; display: block; }
.hero-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.hero-img-badge .icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
}
.hero-img-badge .text .t1 { font-size: 13px; font-weight: 700; color: var(--dark); }
.hero-img-badge .text .t2 { font-size: 11px; color: var(--muted); }

/* ══════════════════════════════════════════
   MISSION / VISION STRIP
══════════════════════════════════════════ */
.mv-strip { background: var(--light-bg); }
.mv-card {
  /*background: #fff; border-radius: var(--radius-md);*/
  padding: 2.2rem 2rem; height: 100%;
  /*border: 1px solid var(--border);*/
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.mv-card .mv-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 1.2rem;
}
.mv-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.mv-card p  { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════
   PROGRAM CARDS
══════════════════════════════════════════ */
.program-card {
  background: var(--light-bg); border-radius: var(--radius-md);
  padding: 2rem; height: 100%;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.program-card:hover {
  background: #fff; border-color: var(--border);
  box-shadow: var(--shadow-md); transform: translateY(-5px);
}
.program-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(0,0,0,0.06), rgba(31,178,80,0.12));
}
.program-card h5 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.6rem; }
.program-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.program-link {
  font-size: 13px; font-weight: 600; color: var(--secondary-text);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--transition);
}
.program-link:hover { gap: 8px; color: var(--secondary-text); }

/* ══════════════════════════════════════════
   IMPACT SECTION
══════════════════════════════════════════ */
.impact-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1f1f1f 100%);
  position: relative; overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/warehouse-bags-sorting.jpg') center/cover;
  opacity: 0.06;
}
.impact-section .section-title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.impact-num-card {
  text-align: center; padding: 1.6rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: background var(--transition), transform var(--transition);
  height: 100%;
  min-height: 152px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.impact-num-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.impact-num-card .number {
  font-size: 2.1rem; font-weight: 700;
  color: #fff; letter-spacing: -1px; line-height: 1.15;
  word-break: normal;
}
.impact-num-card .number span { color: var(--accent-tint); }
.impact-num-card .label { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 8px; line-height: 1.3; }

/* ══════════════════════════════════════════
   NEWS / BLOG CARDS
══════════════════════════════════════════ */
.news-card {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  background: #fff;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.news-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.news-card-body { padding: 1.4rem; }
.news-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--secondary-text);
  background: rgba(31,178,80,0.12);
  padding: 3px 10px; border-radius: 980px;
  margin-bottom: 0.7rem;
}
.news-card h6 { font-size: 0.97rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; line-height: 1.45; }
.news-card p  { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.news-meta    { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #136b30 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/green-coffee-closeup.jpg') center/cover;
  opacity: 0.07;
}
.btn-cta-white {
  background: #fff; color: #000;
  border: none; padding: 0.85rem 2rem;
  border-radius: 980px; font-size: 15px; font-weight: 700;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-cta-white:hover { transform: scale(1.04); box-shadow: 0 10px 30px rgba(0,0,0,0.2); color: #000; }
.btn-cta-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 0.85rem 2rem; border-radius: 980px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ══════════════════════════════════════════
   PARTNERS
══════════════════════════════════════════ */
.partners-section { background: var(--light-bg); padding: 70px 0; }
.partner-item {
  display: flex; align-items: center; justify-content: center;
  padding: 0.5rem; background: var(--white);
  border-radius: 12px; border: 1px solid var(--border);
  min-width: 130px; height: 60px;
  transition: box-shadow var(--transition);
}
.partner-item:hover { box-shadow: var(--shadow-sm); }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.about-img-wrap img { width: 100%; display: block; }
.about-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 2rem;
}
.about-img-overlay p { color: rgba(255,255,255,0.85); font-size: 13px; font-style: italic; margin: 0; }
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: var(--dark);
  margin-bottom: 0.75rem; line-height: 1.5;
}
.check-list li i { color: var(--secondary-text); margin-top: 2px; font-size: 15px; flex-shrink: 0; }

/* Team cards */
.team-card {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); background: #fff;
  transition: box-shadow var(--transition), transform var(--transition);
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.team-card img { width: 100%; height: 240px; object-fit: cover; object-position: top; }
.team-card-body { padding: 1.2rem; }
.team-card h6 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-card span { font-size: 12px; color: var(--secondary-text); font-weight: 600; }

/* ══════════════════════════════════════════
   EVENTS PAGE
══════════════════════════════════════════ */
.event-card {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); background: #fff;
  display: flex; gap: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.event-date-box {
  background: var(--primary);
  min-width: 80px; padding: 1.2rem 1rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.event-date-box .day   { font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.event-date-box .month { font-size: 11px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.event-body { padding: 1.2rem 1.4rem; flex: 1; }
.event-body h5 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.event-body p  { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.75rem; }
.event-meta    { font-size: 12px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 12px; }
.event-meta i  { color: var(--secondary-text); }

/* ══════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════ */
.blog-card {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); background: #fff;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.blog-read-more {
  font-size: 13px; font-weight: 600; color: var(--secondary-text);
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: 8px; }

/* ══════════════════════════════════════════
   FORMULAIRES (génériques)
══════════════════════════════════════════ */
.form-control:focus, .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(31,178,80,0.18);
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-info-card {
  background: var(--light-bg); border-radius: var(--radius-md);
  padding: 1.5rem; border: 1px solid var(--border);
  display: flex; gap: 1rem; align-items: flex-start;
  transition: box-shadow var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; flex-shrink: 0;
}
.contact-info-card h6 { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-info-card p  { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
footer .logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 16px; flex-shrink: 0;
}
footer .footer-brand-name { font-size: 16px; font-weight: 700; color: #fff; }
footer .footer-brand-sub  { font-size: 11px; color: rgba(255,255,255,0.45); }
footer p    { font-size: 13px; line-height: 1.7; }
footer h6   { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.5px; margin-bottom: 1.2rem; }
footer ul   { list-style: none; padding: 0; }
footer ul li { margin-bottom: 0.6rem; }
footer ul li a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color var(--transition); }
footer ul li a:hover { color: #fff; }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 2.5rem 0 0; }
.footer-bottom {
  padding: 1.2rem 0; font-size: 12px;
  color: rgba(255,255,255,0.35);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 34px; height: 34px; background: rgba(255,255,255,0.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 15px; text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.social-links a:hover { background: var(--secondary); color: #fff; }
.footer-input {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: #fff !important;
  font-size: 13px;
}
.footer-input::placeholder { color: rgba(255,255,255,0.4) !important; }
.footer-subscribe-btn {
  background: var(--secondary) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border: none !important;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════════
   ALERTS / FLASH MESSAGES
══════════════════════════════════════════ */
.flash-success { background: rgba(31,178,80,0.12); border: 1px solid rgba(31,178,80,0.4); color: #17863c; border-radius: 12px; padding: 1rem 1.2rem; font-size: 14px; }
.flash-error   { background: rgba(220,53,69,0.1);  border: 1px solid rgba(220,53,69,0.3);  color: #a71d2a; border-radius: 12px; padding: 1rem 1.2rem; font-size: 14px; }

/* ══════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════ */
.page-404 {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.page-404 .code {
  font-size: 8rem; font-weight: 800;
  color: var(--border); line-height: 1;
  letter-spacing: -4px;
}
.page-404 h2 { font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.page-404 p  { color: var(--muted); font-size: 1rem; max-width: 400px; margin: 0 auto 2rem; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 992px) {
  .nav-link { padding: 0.6rem 1rem !important; }
  .nav-link::after { display: none; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .hero { min-height: auto; padding: 90px 0 60px; }
  .hero-image-col { margin-top: 2.5rem; }
  .hero-stats { gap: 1.5rem; }
  .event-card { flex-direction: column; }
  .event-date-box { flex-direction: row; gap: 8px; padding: 0.8rem 1rem; }
}

/* ══════════════════════════════════════════
   SPEC TABLE — page "Notre Coopérative"
══════════════════════════════════════════ */
.spec-table {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border);
}
.spec-row {
  display: flex; flex-wrap: wrap;
  padding: 0.95rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(odd) { background: var(--light-bg); }
.spec-label {
  width: 220px; max-width: 42%;
  font-size: 12px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.5px;
  padding-right: 1rem;
}
.spec-value { flex: 1; min-width: 200px; font-size: 14.5px; color: var(--dark); line-height: 1.6; }

/* Legal info block */
.legal-block {
  background: var(--light-bg); border-radius: var(--radius-md);
  padding: 1.6rem 1.8rem;
}
.legal-block h6 { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.9rem; }
.legal-block p { font-size: 13.5px; color: var(--dark); margin-bottom: 0.4rem; }

/* Small gallery grid */
.gallery-grid img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition);
}
.gallery-grid a:hover img { transform: scale(1.03); }

/* ══════════════════════════════════════════
   SURVIVORS COFFEE — story blocks
══════════════════════════════════════════ */
.survivors-hero {
  background: linear-gradient(120deg, var(--primary) 0%, #1f1f1f 100%);
  position: relative; overflow: hidden;
  padding: 90px 0 80px;
}
.survivors-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/green-coffee-closeup.jpg') center/cover;
  opacity: 0.18;
}
.survivors-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.65) 100%);
}
.story-block { max-width: 740px; margin: 0 auto; }
.story-text { font-size: 1.02rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.6rem; }
.story-quote {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700; color: var(--dark);
  line-height: 1.4; margin: 2.4rem 0 1.4rem;
  border-left: 4px solid var(--secondary);
  padding-left: 1.2rem;
}
.tribute-block {
  background: var(--primary); color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
}
.tribute-block p { color: rgba(255,255,255,0.85); font-size: 1.02rem; line-height: 1.85; max-width: 700px; margin: 0 auto; }
.final-quote { font-size: 1.15rem; font-weight: 600; color: var(--dark); line-height: 1.7; text-align: center; }
.final-quote span { display: block; }
.final-quote .accent { color: var(--secondary-text); }

/* ══════════════════════════════════════════
   PARTNERS & INVEST — pills / need cards
══════════════════════════════════════════ */
.partner-pill-grid { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.partner-pill {
  padding: 0.65rem 1.3rem; border-radius: 980px;
  border: 1px solid var(--border); background: #fff;
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  transition: all var(--transition);
}
.partner-pill:hover { border-color: var(--secondary); color: var(--dark); box-shadow: var(--shadow-sm); }
.partner-category-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.9rem;
}
