:root{
  --c-primary:#009543;
  --c-primary-600:#006F33;
  --c-accent:#FBDE4A;
  --c-accent-2:#DC241F;
  --c-navy:#0F172A;
  --c-text:#334155;
  --c-muted:#64748B;
  --c-border:#E5E7EB;
  --c-bg:#F8FAFC;
  --radius:14px;
  --shadow:0 10px 25px rgba(0,0,0,.08);
}

/* Typo & base */
body{ color:var(--c-text); background:var(--c-bg); }
h1,h2,h3{ font-weight:700; letter-spacing:.2px }
a{ text-decoration:none }


/* Header */
/* .navbar{
  background:#fff !important;
  border-bottom:1px solid var(--c-border);
} */

.navbar-brand{
  display:flex; align-items:center; gap:.6rem;
  font-weight:800; color:var(--c-primary) !important;
}
.nav-link{ font-weight:600 }
.nav-link.active, .nav-link:hover{ color:var(--c-primary) !important }


.navbar-brand img {
  height: 100px;          /* agrandit naturellement sans scale */
  width: auto;
  margin-right: 8px;
  display: block;
  position: relative;
  top: -5px;              /* centre verticalement dans la barre */
  object-fit: contain;
}

/* Empêche tout débordement du logo */
.navbar {
  overflow: hidden;
  min-height: 90px;
}


/* Badges & tags */
.badge-accent{
  background:var(--c-accent);
  color:#111827; font-weight:700;
}

/* Hero / Bandeau */
.hero{
  position:relative; border-radius:var(--radius);
  background: linear-gradient(135deg, rgba(0,149,67,.1), rgba(0,111,51,.1));
  overflow:hidden; box-shadow: var(--shadow);
}
.hero .ribbon{
  height:4px; background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2));
}

/* Cards */
.card{
  border:1px solid var(--c-border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-600) 100%);
  color: #f1f5f9;
  font-size: 0.95rem;
}

.footer-title {
  font-weight: 700;
  margin-bottom: .8rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  display: block;
  width: 40%;
  height: 3px;
  background: var(--c-accent);
  margin-top: .3rem;
  border-radius: 2px;
}

.footer a {
  color: #f1f5f9;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--c-accent);
  text-decoration: none;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.3);
}

.social-links a {
  font-size: 1.4rem;
  margin-right: .6rem;
  color: #fff;
  transition: transform 0.2s, color 0.2s;
}

.social-links a:hover {
  color: var(--c-accent);
  transform: scale(1.1);
}


/* Helpers */
.kicker{
  color:var(--c-primary); font-weight:800; text-transform:uppercase; letter-spacing:.1em;
}


