/* =========================================================
   GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}


/* =========================================================
   TITRES / SECTIONS
   ========================================================= */

.sous-titre {
  background-image: url('../images/degradeBleu2.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 5px;
  color: rgb(69, 69, 69);
  font-size: 28px;
  font-weight: bold;
  padding: 12px;
  text-align: center;
}


/* =========================================================
   CONTENU PRINCIPAL
   (CORRECTION MAJEURE : PLUS DE HEIGHT FIXE)
   ========================================================= */

.main-body {
  background-image: url('../images/degradeBleu2.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  min-height: 100vh;
  /* prend au moins la hauteur écran */
  height: auto;
  /* s’adapte au contenu */
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer-bar {
  display: flex;
  justify-content: space-around;
  align-items: stretch;   
  gap: 20px;
  padding: 20px;
  background-color: rgb(46, 165, 250);
  flex-wrap: wrap;
  color: white;
}

/* ---------- BLOCS FOOTER ---------- */

.access-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(11, 11, 11, 0.7);
  max-width: 100%;
}

.contact-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;  /* 🔹 clé : répartit le contenu verticalement */
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(11, 11, 11, 0.7);
  height: 100%;
}

.contact-item {
  width: 300px;
}

.access-item {
  width: fit-content;
}


/* ---------- TEXTES ---------- */

.contact-item h4 {
  text-align: left;
  margin: 4px 0;
}

.f-label {
    font-size: 22px;
  }