/* ========== COULEURS ========== */
:root {
  --bg: #137006;          /* fond général */
  --text-main: #F5F5D7;   /* texte principal */
  --muted: #dbe9cf;       /* texte secondaire */

  --title-text: #FFF500;  /* titre */
  --subtitle-text: #C5FF00; /* sous-titre */
  --definition-text: #EE7663; /* texte en italique */

  --tab-text: #F5F5D7;    /* texte onglets */
  --tab-grad-a: #FF5E15;  /* orange */
  --tab-grad-b: #F490FC;  /* violet */

  --action-badge-bg: #F490FC; /* attention : BIFC contient un I, si tu veux du hex valide : #E4B1FC */
  --action-badge-bg-fix: #F490FC; /* version hex correcte */
  
  --accent-contact-text: #EE7663;
  --accent-contact-email: #FFF500;
}

/* ========== BASE ========== */
body {
  margin: 0;
  background: #137006;
  font-family: 'Poppins', sans-serif;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 980px;
  padding: 0 16px 32px;
}

.lang-switch {
  margin-top: 12px;
  text-align: right;
  font-size: 0.9rem;
}

.lang-switch a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

.lang-switch a:hover {
  text-decoration: underline;
}

.lang-switch .active-lang {
  color: var(--title-text); /* #FFF500 */
}


/* ========== TITRE ========== */
.hero {
  padding: 40px 16px 24px;
}

.page-title {
  color: var(--title-text); /* #FFF500 */
  font-size: 2rem;
  margin: 0 0 1rem 0;
  text-align: center;
}


.logo {
  font-size: clamp(28px, 6vw, 42px);
  margin-bottom: 10px;
}

.brand-name {
  font-size: clamp(32px, 7vw, 56px);
  margin: 0;
  font-weight: 700;
  color: var(--title-text); /* #FFF500 */
}

.tagline {
  margin: 10px auto 8px;
  max-width: 60ch;
  color: var(--subtitle-text); /* #C5FF00 */
  font-weight: 600;
font-size: 1.4rem;     /* ▲ AGRANDIT le sous-titre */
  line-height: 1.3;
}

.definition {
  font-size: 0.85rem;    /* ▼ RÉDUIT la définition */
  line-height: 1.4;
  max-width: 70ch; 
margin: 4px auto 0;
  max-width: 70ch;
  color: var(--definition-text); /* #EE7663 */
}

/* ========== ONGLET FLASHY ========== */
.tabs {
  list-style: none;
  padding: 0;
  margin: 32px auto;
  display: grid;
  gap: 16px;
  width: min(760px, 100%);
}

@media (min-width: 700px) {
  .tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tab a {
  display: block;
  padding: 14px 18px;
  text-decoration: none;
  font-weight: 700;
  color: var(--tab-text); /* #F5F5D7 */
  border-radius: 12px;
  background-image: linear-gradient(90deg, var(--tab-grad-a), var(--tab-grad-b));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tab a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}
.carte-images {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  margin: 20px auto;
  flex-wrap: wrap; /* permet de passer en dessous si l'écran est petit */
}

.carte-images img {
  width: 300px;     /* tu peux mettre 250px / 280px / 320px selon ce que tu veux */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}


/* ========== TEXTE PRINCIPAL ========== */
.body-text {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: left;
}

.body-text p {
  color: var(--text-main); /* #F5F5D7 */
  margin-bottom: 1rem;
}

/* Actions – blocs sur fond F490FC, texte C5FF00, pas de numérotation auto */
.actions {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.action-block {
  background: #FF5E15;
  color: var(--text-main); /* ← texte BEIGE maintenant */;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 1.2rem;
}



.action-block p {
  margin: 0.2rem 0;
}

.action-title {
  font-weight: 700;
}


/* ========== SECTIONS EMBED (Framaforms, futur formulaires) ========== */
.embed-section {
  max-width: 900px;
  margin: 32px auto;
  text-align: left;
}

.embed-section h2 {
  margin-bottom: 8px;
  color: var(--title-text);
}

.embed-note {
  margin-bottom: 12px;
  color: var(--muted);
}

.embed-note a {
  color: var(--tab-text);
  font-weight: 600;
  text-decoration: underline;
}

/* ========== CONTACT ========== */
.contact {
  margin-top: 32px;
}

.contact-text {
  color: var(--accent-contact-text); /* #EE7663 */
  font-weight: 600;
}

.contact-email {
  color: var(--accent-contact-email); /* #FFF500 */
  font-weight: 700;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

/* ========== FOOTER ========== */
footer {
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.9rem;
}

.module-description {
  max-width: 760px;
  margin: 0 auto 40px;
  color: var(--text-main); /* ton beige clair */
  text-align: left;
}

.module-description p {
  margin-bottom: 1rem;
}

.module-note {
  color: #EE7663; /* ton orange rosé italique */
  margin-top: 1.2rem;
  font-size: 0.95rem;
}

.brand-name a {
  color: inherit;
  text-decoration: none;
}

.brand-name a:hover {
  text-decoration: underline;
}


.Instagram {
  color: var(--accent-contact-email);  /* même jaune que l’email */
  font-weight: 700;
  text-decoration: none;
}

.Instagram:hover {
  text-decoration: underline;
}

/* Lien Bruxelles-Brûle t-il ? en jaune flash */

a.bruxelles-brule:link,
a.bruxelles-brule:visited {
  color: #FFF500;          /* jaune flash */
  font-weight: 700;
  text-decoration: none;
}

a.bruxelles-brule:hover {
  text-decoration: underline;
}


