/* ═══════════════════════════════════════════════════════
   É.L.A.N Design System — Shared Stylesheet
   Programme ÉLAN · DigiFemmes CI × Ecobank CI
   ═══════════════════════════════════════════════════════ */

:root {
  --orange: #F47B20;
  --orange-hover: #E06A10;
  --blue: #0077B6;
  --dark: #003B5C;
  --light-blue: #EBF4FA;
  --cream: #FAFAF7;
  --white: #FFFFFF;
  --text: #3C3C3C;
  --text-secondary: #6B7280;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --success: #2E8B57;
  --amber: #D4A017;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  box-shadow: var(--shadow-sm);
  padding: 0 24px;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar-logo { height: 40px; width: auto; }
.navbar-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.navbar-links a {
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.navbar-links a:hover,
.navbar-links a.active {
  background: var(--light-blue);
  color: var(--blue);
}
.navbar-links a.active {
  font-weight: 600;
}
.navbar-bandeau { height: 28px; width: auto; }

/* Mobile nav */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .navbar-toggle { display: block; }
  .navbar-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 16px;
    border-bottom: 2px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }
  .navbar-links.open { display: flex; }
  .navbar-bandeau { display: none; }
  .navbar-logo { height: 32px; }
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark);
  padding: 32px 24px;
  margin-top: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-logo-elan { height: 44px; width: auto; }
.footer-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
}
.footer-bandeau { height: 32px; width: auto; }
.footer-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  text-align: right;
}
.footer-text a {
  color: var(--orange);
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer-inner { justify-content: center; text-align: center; }
  .footer-text { text-align: center; }
}

/* ─── UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 48px 0; }
.section-alt { background: var(--light-blue); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(244,123,32,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ─── PRINT ─── */
@media print {
  .navbar, .site-footer { display: none; }
  body { background: white; }
}
