/* -----------------------------------------------------------
   Fichier : style.css
   Description : Feuille de style pour Fortioris
----------------------------------------------------------- */

/* Variables de couleurs et paramètres de base */
:root {
  --color-blue: #1F2C3A;
  --color-gray: #50575E;
  --color-gold: #A89C83;
  --color-offwhite: #F9F9F9;
  --font-family-base: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Réinitialisation de quelques marges et paddings de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Styles de base du body */
body {
  font-family: var(--font-family-base);
  line-height: 1.6;
  color: var(--color-gray);
  background-color: var(--color-offwhite);
}

/* Conteneur central */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
header {
  background-color: var(--color-blue);
  color: #fff;
  padding: 20px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
  /* Pour garantir un rendu net sur tous supports */
  width: auto;
}

.tagline h2 {
  font-size: 1.2rem;
  font-weight: normal;
}

/* Accroche institutionnelle */
.hero {
  background-color: var(--color-gold);
  color: var(--color-blue);
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2rem;
  font-weight: bold;
}

/* Sections générales (À propos, Domaines, Engagements, Contact) */
section {
  padding: 40px 0;
  border-bottom: 1px solid #ddd;
}

section h2 {
  color: var(--color-blue);
  margin-bottom: 20px;
  font-size: 1.8rem;
  border-left: 4px solid var(--color-gold);
  padding-left: 10px;
}

section p,
section li {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Listes personnalisées */
section ul {
  list-style: none;
  padding-left: 0;
}

section ul li::before {
  content: "• ";
  color: var(--color-gold);
  font-weight: bold;
}

/* Bouton de contact */
.btn {
  display: inline-block;
  background-color: var(--color-blue);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--color-gray);
}

/* Footer */
footer {
  background-color: var(--color-blue);
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

footer a {
  color: var(--color-gold);
  text-decoration: none;
}

/* Media Queries pour responsive design */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  section h2 {
    font-size: 2rem;
  }

  section p, section li {
    font-size: 1.1rem;
  }

  .header-container {
    padding: 0 20px;
  }
}