/* ==========================================================================
   1. VARIABLES & STYLES GLOBAUX
   ========================================================================== */
:root {
  --color-primary: #a01882;
  --color-primary-dark: #b1007a;
  --color-primary-header: #e10098;
  --color-accent-yellow: #DEDC00;
  --color-accent-yellow-dark: #DEDC00; /* Note: Identique à la couleur de base, peut être ajusté */
  --color-text-on-yellow: #6b007a;
  --color-text-dark: #333;
  --color-white: #fff;
  --color-background-light: #fff;
  --font-primary: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

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

body {
  font-family: var(--font-primary);
  color: var(--color-text-dark);
  background-color: var(--color-background-light);
  overflow-x: hidden; /* Prévient les débordements horizontaux */
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* ==========================================================================
   2. COMPOSANTS RÉUTILISABLES
   ========================================================================== */

/* ----- Titres de section ----- */
.section-title-base {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

/* Classe utilitaire pour les titres qui s'étendent sur toute la largeur */
.full-bleed-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.full-bleed-title::before,
.full-bleed-title::after {
  content: '';
  height: 1px;
}

/* Variations de titres */
.section-title-lined {
  color: var(--color-primary);
}
.section-title-lined::before,
.section-title-lined::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: var(--color-primary);
  vertical-align: middle;
  margin: 0 10px;
}

.section-title-white {
  color: var(--color-white);
}
.section-title-white::before,
.section-title-white::after {
  background-color: var(--color-white);
}

.section-about-title {
  color: var(--color-primary);
  gap: 0.5rem;
}
.section-about-title::before {
  background-color: var(--color-primary);
  
}
/* La 3ème colonne est occupée par ::after qui reste vide mais assure le centrage */
.section-about-title::after {
  content: '';
}



/* ----- Boutons ----- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

/* Classe utilitaire pour les boutons avec une flèche > */
.btn-arrowed {
  min-width: 220px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.btn-arrowed::after {
  content: '>';
  font-size: 1.2rem;
  position: relative;
  bottom: 1px; /* Ajustement fin */
}

/* Variations de boutons */
.btn-yellow {
  background-color: var(--color-accent-yellow);
  color: var(--color-primary);
}
.btn-yellow:hover {
  background-color: var(--color-accent-yellow-dark);
}

.btn-link {
  color: var(--color-accent-yellow);
  font-weight: 600;
}
.btn-link:hover span {
  text-decoration: underline;
}

.gform_wrapper input[type="submit"] {
  background-color: var(--color-accent-yellow);
  color: var(--color-primary);

  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;

  min-width: 320px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;

}