/* Import font definitions */
@import url('fonts.css');

/* Base styles */
:root {
  /*
    Couleurs de la charte graphique Olakala
    - Noir (Black 6) : #000000 — Couleur principale, texte, fond
    - Bleu (2726) : #4748F0 — Couleur secondaire, dynamisme, clin d'œil à la Grèce
    - Gris (Cool Gray 7) : #97999B — Gris foncé, éléments secondaires
    - Gris (Cool Gray 4) : #BBBCBC — Gris moyen, fonds et séparateurs
    - Gris (Cool Gray 1) : #D9D9D6 — Gris clair, arrière-plans
    - Blanc : #FFFFFF — Fond, contraste
  */
  --color-black: #000000;
  --color-blue: #4748F0;
  --color-gray-7: #97999B;
  --color-gray-4: #BBBCBC;
  --color-gray-1: #D9D9D6;
  --color-white: #FFFFFF;

  /* Pour usage pratique dans le site */
  --color-primary: var(--color-black);
  --color-secondary: var(--color-blue);
  --color-text: var(--color-black);
  --color-text-light: var(--color-gray-7);
  --color-background: var(--color-white);
  
  /* Typography */
  --font-size-base: 1rem;
  --line-height-base: 1.5;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-background);
}

/* Typography enhancements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/* Olakala Buttons */
.btn-olakala {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  background: var(--color-blue);
  color: var(--color-white);
  border: none;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.btn-olakala:hover,
.btn-olakala:focus {
  background: var(--color-black);
  color: var(--color-white);
}
.btn-olakala-outline {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  background: var(--color-white);
  color: var(--color-black);
  border: 2px solid var(--color-blue);
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.btn-olakala-outline:hover,
.btn-olakala-outline:focus {
  background: var(--color-blue);
  color: var(--color-white);
}
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5em;
}

h1 {
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Utility classes */
.font-thin {
  font-weight: 100;
}

.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}
