@font-face {
  font-family: 'Fredoka';
  src: url('../../public/assets/fonts/Fredoka/static/Fredoka-Regular.ttf');
}

@font-face {
  font-family: 'La belle aurore';
  src: url('../../public/assets/fonts/La_Belle_Aurore/LaBelleAurore-Regular.ttf');
}

h1 {
  font-family: 'Fredoka', sans-serif;
}

.btn {
  padding: 10px 20px;
  border-radius: 80px;
}

.btn-blue {
  background-color: #275DAD;
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid #275DAD;
}

.btn-blue:hover {
  background-color: #fff;
  color: #275DAD;
  border-color: #275DAD;
}

.btn-white {
  border: 1px solid #fff;
  background-color: #fff;
  color: #275DAD;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background-color: #275DAD;
  color: #fff;
  border-color: #fff;
}

img {
  object-fit: cover;
}

.text-no-wrap {
  text-wrap: nowrap;
}

.background-section {
  background-color: #275DAD;
}

button {
  cursor: pointer;
}

*:not(h1) {
  font-family: 'Roboto', sans-serif;
}

ul {
  margin-bottom: 16px;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 992px) {
  .img-container.rounded {
    border-radius: 8px;
    overflow: hidden;
  }

  .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .container {
    max-width: 1800px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
  }

  h1 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
  }
  #menu-mobile {
    display: none;
  }

  #menu-desktop {
    display: block;

    ul {
      display: flex;
      gap: 32px;
      color: #275DAD;
      align-items: center;
      list-style: none;
    }

    .active {
      border-bottom: 2px solid #275DAD;
    }
  }

  /* Hero section */
  .hero-section-container {
    position: relative;
    flex-direction: row;
    padding-top: 0;
    max-height: calc(100vh - 154px);
  }

  .hero-content {
    padding-top: 40px;
    align-content: center;
  }

  .hero-description {
    font-size: 22px;
  }

  .hero-img-container {
    transform: translateX(50px);
  }

  .hero-img-container img {
    width: 100%;
    height: 100%;
  }

  /* Section qui sommes-nous */
  .about-us {
    flex-direction: row;
    padding-bottom: 64px;
  }

  .about-us .when-and-why {
    padding: 32px;
    margin-top: 64px;
  }

  .about-us .when-and-why a {
    margin-top: 32px;
    width: fit-content;
  } 

  /* Section objectifs */
  .section-targets {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 64px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-targets-content {
    align-content: center;
    width: 50%;
  }

  .section-targets .img-container {
    width: 30%;
    position: static;
  }

  .section-targets a {
    margin-top: 16px;
  }

  /* Section qu'est-ce que l'apporche systémique */
  .section-what-is-systemic-approach {
    display: flex;
    gap: 64px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* Section contact */
  .section-contact-content {
    display: flex;
    gap: 64px;
  }
  .section-contact-content > div {
    width: 50%;
  }

  #consent-label {
    cursor: pointer;
  }

  /* Page coaching familial */
  .coaching-familial-header {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .illustration-famille {
    width: 40%;
    /* height: 250px; */
    object-fit: contain;
  }
}
