/*======================
  Variables globales
======================*/
:root {
  /* Couleurs principales */
  --blanc: #ffffff;
  --blanc-txt: #f9f9f9; 
  --blanc-1: #f5f5f5;
  --blanc-2: #fdfcf9;
  --blanc-3: #faf8f5;
  --blanc-4: #f8fbff;
  --blanc-5: #f3f6fa;

  --noir: #000000;
  --violet: #E3D3F1;
  --jaune: #FFFB92;
  --vert-menu: #006633;
  --vert-texte: #003833;
  --vert-colline: #86C389;
  --vert-souscription: #A4EBA8;
  --texte-noir: #323232;
  --champs-texte: #D9D9D9;
  
  /* Couleurs spécifiques */
  --color-background: #ffffff;
  --color-background-2: #FFFFEB;
  --color-form: #B6EDC8;
  --color-footer: #E6D5F7;

  /* Espacements */
  --spacing-xxs: 4px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --spacing-xxxl: 96px;
  --spacing-Vl: 300px;

  /* Tailles de police */
  --font-size-xs: 14px;
  --font-size-sm: 16px;
  --font-size-md: 18px;
  --font-size-lg: 28px;
  --font-size-xl: 36px;
  --font-size-xxl: 48px;
  --font-size-hero: 64px;

  /* Bordures et rayons */
  --border-radius: 25px;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 28px;

  /* Ombres */
  --ombre-douce: 0 4px 6px rgba(0, 0, 0, 0.1);
  --ombre-moyenne: 0 8px 16px rgba(0, 0, 0, 0.15);
  --ombre-forte: 0 12px 24px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-lent: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Autres */
  --container-max-width: 1440px;
  
  /* Line heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.8;

  /* Bootstrap custom properties */
  --bs-primary: #006633;
  --bs-success: #006633; 
  --bs-light: #FFFB92;
  --bs-purple: #E3D3F1;
}

/*======================
  Reset + Base
======================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Import des polices */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, sans-serif; /* Inter pour le texte */
  font-size: var(--font-size-md);
  line-height: 1.5;
  background-color: var(--color-background-2);
  color: var(--texte-noir);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

p, .features__item-content, .faq__answer{
  font-family: 'Inter', sans-serif;
}

/* Grands titres en Raleway */
h1, h2, h3, h4, h5, h6, summary, .features__item-title, .faq__question {
  font-family: 'Raleway', sans-serif; /* Raleway pour les titres */
}

h1 {
  font-size: var(--font-size-xxl);
  line-height: 1.2;
  margin-bottom: var(--spacing-xl);
  font-weight: 800;
  letter-spacing: -1px;
}

h2 {
  font-size: var(--font-size-xl);
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
  letter-spacing: -0.5px;
}

h3 {
  font-size: var(--font-size-lg);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

h4, h5, h6 {
  font-size: var(--font-size-md);
  line-height: 1.4;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}


