/* ================================
   FLG — Identité & Engagement
   ================================ */

:root {
  --color-primary: #1e3a8a;   /* Bleu majesté */
  --color-secondary: #6E9E4F; /* Vert doré boutons fonctionnels, sélecteur langue */
  --color-tertiary: #D4AF37;  /* Or sacré */
  --color-accent: #F9F7F2;    /* Beige noble */
  --color-text: #2C2C2C;      /* Texte standard */
  --color-white: #ffffff;     /* Blanc pur */

}


* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  color: var(--color-text);
  line-height: 1.6;

   /* Fond sacré */
  background-image: url('../img/fond-filigrane-flg.png');
  background-size: cover;
  background-position: center bottom; /* essentiel pour la verdure */
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; height: 100%;
  background-image: url('../assets/img/fond-filigane-flg.png');
  background: rgba(255,255,255,0.5); /* blanc transparent */

  background-size: cover;              /* recouvre toute la page */
  background-position: center bottom;  /* essentiel pour la verdure */
  background-repeat: no-repeat;
 
  opacity: 0.05;                       /* effet filigrane très léger */
  z-index: -1;                         /* derrière le contenu */
  pointer-events: none;                /* ne bloque pas les clics */
}


/*
.lang-selector select {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: none;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
}*/




  
  
  
}
/* HEADER */














