@font-face {
  font-family: 'Caladea';
  src: url('assets/fonts/Caladea-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Caladea';
  src: url('assets/fonts/Caladea-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Caladea';
  src: url('assets/fonts/Caladea-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Caladea';
  src: url('assets/fonts/Caladea-BoldItalic.ttf') format('truetype');
  font-weight: 700; font-style: italic; font-display: swap;
}

:root {
  --vert-profond: #1C3A2A;
  --vert-lichen: #6E8C76;
  --creme: #F4F0E6;
  --blanc: #FFFFFF;
  --encre: #26332B;
}

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

body {
  font-family: 'Lato', Arial, sans-serif;
  background: var(--creme);
  color: var(--encre);
  line-height: 1.7;
}

h1, h2, h3 { font-family: 'Caladea', Georgia, serif; font-weight: 700; }

a { color: var(--vert-profond); }
a:hover { color: var(--vert-lichen); }

/* --- Nav --- */
nav.topnav {
  background: var(--vert-profond);
  padding: 0.9rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
nav.topnav a {
  color: var(--creme);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}
nav.topnav a:hover, nav.topnav a.active { opacity: 1; border-bottom: 1px solid var(--creme); }

/* --- Header / Hero --- */
header.hero {
  padding: 3.5rem 1.5rem 3rem;
  background: var(--vert-profond);
  color: var(--creme);
  text-align: center;
}
header.hero img.icone { width: 110px; height: auto; margin-bottom: 1.2rem; opacity: 0.95; }
header.hero .categorie {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--creme);
  opacity: 0.75;
  margin-bottom: 0.6rem;
}
header.hero h1 { font-size: clamp(2rem, 5.5vw, 3.2rem); font-weight: 700; letter-spacing: 0.02em; }
header.hero p.sous-titre {
  margin-top: 0.9rem;
  font-family: 'Caladea', Georgia, serif;
  font-style: italic;
  font-size: clamp(1rem, 2.3vw, 1.25rem);
  max-width: 36rem;
  margin-left: auto; margin-right: auto;
  color: var(--vert-lichen);
}

/* --- Layout sections --- */
main { max-width: 56rem; margin: 0 auto; }
section { padding: 3.2rem 1.5rem; }
section.alt { background: var(--blanc); }
section h2 {
  font-size: 1.7rem;
  color: var(--vert-profond);
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--vert-lichen);
  padding-bottom: 0.5rem;
  max-width: 40rem;
}
section .contenu { max-width: 40rem; }
p { margin-bottom: 1rem; }

/* --- Activity cards --- */
.grille-activites {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.4rem;
  margin-top: 1rem;
}
.carte-activite {
  background: var(--blanc);
  border: 1px solid #e2ddd0;
  border-top: 3px solid var(--vert-profond);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.carte-activite .label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vert-lichen);
  margin-bottom: 0.5rem;
}
.carte-activite h3 { font-size: 1.2rem; color: var(--vert-profond); margin-bottom: 0.6rem; }
.carte-activite p { font-size: 0.95rem; flex-grow: 1; }
.carte-activite a.lien { font-weight: 700; text-decoration: none; font-size: 0.92rem; }
.carte-activite .statut {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vert-lichen);
}

/* --- Values list --- */
.valeurs { list-style: none; margin-top: 0.5rem; }
.valeurs li {
  padding: 0.7rem 0 0.7rem 1.8rem;
  position: relative;
  border-bottom: 1px solid #e2ddd0;
}
.valeurs li:last-child { border-bottom: none; }
.valeurs li::before {
  content: "";
  position: absolute; left: 0; top: 1.35rem;
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--vert-lichen);
}
.valeurs strong { color: var(--vert-profond); }

/* --- Info fields (quand/ou/participation) --- */
.champs-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1.3rem;
  background: var(--blanc);
  border: 1px solid #e2ddd0;
  padding: 1.6rem;
  margin: 1.6rem 0;
}
.champs-info .champ .label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--vert-lichen); margin-bottom: 0.3rem;
}
.champs-info .champ .valeur { font-family: 'Caladea', Georgia, serif; font-weight: 700; color: var(--vert-profond); }

/* --- Buttons / CTA --- */
.bouton {
  display: inline-block;
  background: var(--vert-profond);
  color: var(--creme) !important;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
}
.bouton:hover { background: var(--vert-lichen); }

/* --- Form embed frame --- */
.form-embed {
  background: var(--blanc);
  border: 1px solid #e2ddd0;
  padding: 1.6rem;
  margin: 1.6rem 0;
}
.form-embed iframe { width: 100%; min-height: 620px; border: none; }

/* --- Contact block --- */
.contact {
  background: var(--vert-profond);
  color: var(--creme);
}
.contact h2 { color: var(--creme); border-bottom-color: var(--vert-lichen); }
.contact a { color: var(--creme); text-decoration: underline; }

/* --- Footer --- */
footer {
  text-align: center;
  padding: 1.6rem 1.5rem;
  font-size: 0.82rem;
  color: var(--vert-lichen);
  background: var(--vert-profond);
  border-top: 1px solid rgba(244,240,230,0.15);
}

/* --- Retour lien --- */
.retour { display: inline-block; margin-bottom: 1.5rem; font-size: 0.9rem; }
