/* ------------------------------------------------------ Général ------------------------------------------------------ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

:root {
  /* Bases */
  --white-color: rgb(255, 255, 255); 
  --text-color: rgb(15, 23, 42); 

  /* Couleurs d'accentuation */
  --purple-color: rgba(99, 102, 241, 1); 
  --green-color: #046345;

  /* Gradients et Opacités */
  --gradient-blue: #1B3A7A; 
  --gradient-blue-opacity: rgba(1, 3, 110, 0.5);
}

a, ul, li {
  color: var(--text-color);
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

p, ul, li, a, strong {
  font-family: system-ui, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Évite les petits espaces blancs sous les images */
}

/* --- Typographie Fluide --- */

h1 {
  /* Min: 32px | Fluide: 5% de la largeur écran | Max: 48px */
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
}

h2 {
  /* Min: 28px | Fluide: 4vw | Max: 38px */
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  font-weight: 900;
  line-height: 1.1;
}

h3 {
  /* Min: 22px | Max: 28px */
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
}

/* --- Structure --- */

.site-main {
    padding-top: 80px; 
    min-height: calc(100vh - 80px);
}

.admin-bar .site-header {
    top: 32px;
}

.f-enter-desc, .ffc_power {
  display: none!important;
}
