@charset "UTF-8";
/* Regular */
@font-face {
  font-family: "Nobile";
  src: url("../fonts/Nobile/Nobile-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Bold */
@font-face {
  font-family: "Nobile";
  src: url("../fonts/Nobile/Nobile-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Medium */
@font-face {
  font-family: "Nobile";
  src: url("../fonts/Nobile/Nobile-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Italic */
@font-face {
  font-family: "Nobile";
  src: url("../fonts/Nobile/Nobile-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* Bold Italic */
@font-face {
  font-family: "Nobile";
  src: url("../fonts/Nobile/Nobile-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@media (max-width: 480px) {
  html, body {
    overflow-x: hidden;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

p, ul, li {
  font-family: "Roboto", sans-serif;
}

body {
  font-family: Arial, sans-serif;
  color: #ffffff;
  background-color: #070707;
  margin: 0;
  padding: 0;
}

.highlight {
  color: #E80C51;
}

.vertical-divider {
  border: 1px solid #E80C51;
  position: relative;
  z-index: 10;
  left: 0;
  top: -1vh;
  width: 75px;
  transform: rotate(90deg);
  color: #E80C51;
}
.vertical-divider--2 {
  top: 1.2vh;
}
.vertical-divider--3 {
  top: -1.3vh;
}
.vertical-divider--4 {
  top: 1.4vh;
}

.standard-content {
  padding: 150px 100px;
  background-color: #131313;
}

.header.scrolled {
  background-color: black;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header.desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 13vw;
  transition: background-color 0.3s, box-shadow 0.3s;
  position: fixed;
  height: 5vw;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header.desktop .header__logo-container {
  display: flex;
  align-items: center;
  width: 30%;
}
.header.desktop .header__logo {
  display: flex;
  align-items: center;
}
.header.desktop .header__logo img {
  width: auto;
  max-height: 100%;
  height: 3rem; /* Ajuster selon vos besoins */
}
.header.desktop .logo__letter {
  display: none; /* Caché puisque le logo SVG est utilisé */
}
.header.desktop .header__menu-icon {
  display: none; /* Caché en desktop */
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  width: 30px;
  /* Animation lorsque le menu est ouvert */
}
.header.desktop .header__menu-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.header.desktop .header__menu-icon.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header.desktop .header__menu-icon.is-active span:nth-child(2) {
  opacity: 0;
}
.header.desktop .header__menu-icon.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header.desktop .header__nav {
  display: flex; /* Desktop */
  align-items: center;
  justify-content: flex-end;
  width: 70%;
  padding: 2px 0 2px 2px;
}
.header.desktop .header__list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.header.desktop .header__list__item:not(:last-child) {
  margin-right: 30px;
}
.header.desktop .header__link {
  text-decoration: none;
  color: white;
  font-family: "Nobile", sans-serif;
  font-weight: 500;
  font-size: 1vw;
  text-transform: uppercase;
  padding: 5px 1vw;
  letter-spacing: 3px;
}
.header.desktop .header__link:hover {
  color: #E80C51;
}
.header.desktop .dropdown {
  position: relative;
}
.header.desktop .dropdown:hover .dropdown-menu {
  display: block;
}
.header.desktop .dropdown-menu {
  list-style-type: none;
  display: none;
  position: absolute;
  border-radius: 5px;
  background-color: #070707;
  margin-top: 0.2rem;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  width: max-content; /* Ajuste automatiquement à la taille du contenu */
  min-width: 200px; /* Définit une largeur minimale */
  padding: 10px 16px;
  z-index: 1;
  white-space: nowrap; /* Empêche le texte de passer à la ligne */
}
.header.desktop .dropdown-menu .dropdown-item {
  text-transform: uppercase;
  font-family: "Nobile", sans-serif;
  letter-spacing: 2px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  display: block;
}
.header.desktop .dropdown-menu .dropdown-item:hover {
  color: white;
  background-color: #E80C51;
  border-radius: 5px;
}

.header.mobile {
  display: none; /* Masqué par défaut */
}
@media (max-width: 480px) {
  .header.mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 8vw 30px 4vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  .header.mobile .header__logo-container {
    display: flex;
    align-items: center;
    width: 30%;
  }
  .header.mobile .header__logo {
    display: flex;
    align-items: center;
    z-index: 5;
  }
  .header.mobile .header__logo img {
    margin-left: 1rem;
    width: auto;
    max-height: 100%;
    height: 3rem; /* Ajuster selon vos besoins */
  }
  .header.mobile .header__menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 5;
  }
  .header.mobile .header__menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  .header.mobile .header__menu-icon.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header.mobile .header__menu-icon.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header.mobile .header__menu-icon.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header.mobile .header__nav {
    display: none; /* Caché par défaut */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto; /* Couvre toute la hauteur de l'écran */
    background-color: rgba(0, 0, 0, 0.95); /* Fond noir */
    z-index: 2;
    padding: 2rem;
    padding-top: 10rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
  }
  .header.mobile .header__nav.is-visible {
    display: flex; /* Le menu devient visible */
  }
  .header.mobile .header__nav .header__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .header.mobile .header__nav .header__list li {
    padding: 0.5rem 0;
  }
  .header.mobile .header__nav .header__list li a {
    color: white;
    font-family: "Nobile", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
  }
  .header.mobile .header__nav .header__list li a:hover {
    color: #E80C51;
  }
  .header.mobile .header__nav .sub-menu {
    list-style: none;
    display: none; /* Masquer les sous-menus par défaut */
    padding-left: 1.5rem;
    margin: 0;
  }
  .header.mobile .header__nav .sub-menu.is-visible {
    display: block; /* Afficher lorsque la classe is-visible est ajoutée */
  }
  .header.mobile .header__nav .sub-menu li {
    margin-bottom: 0rem;
  }
  .header.mobile .header__nav .sub-menu li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
  }
  .header.mobile .header__nav .sub-menu li a:hover {
    color: #E80C51;
  }
  .header.mobile .header__nav .dropdown-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
    display: inline-flex; /* Change display pour aligner avec le texte */
    align-items: center; /* Aligne verticalement avec le texte */
    margin-left: 0.5rem; /* Ajoute un espace entre le texte et la flèche */
  }
  .header.mobile .header__nav .dropdown-toggle svg {
    fill: currentColor;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
  }
  .header.mobile .header__nav .dropdown-toggle[aria-expanded=true] svg {
    transform: rotate(180deg); /* Rotation vers le haut */
  }
  .header.mobile .header__nav .has-dropdown > a {
    display: inline-flex; /* S'assure que le texte et le bouton sont alignés */
    align-items: center; /* Aligne verticalement avec l'icône */
    justify-content: space-between; /* Espacement naturel entre le texte et la flèche */
  }
}

@media (max-width: 480px) {
  .header.desktop {
    display: none;
  }
}
.banner.desktop {
  position: relative;
  background-image: url("../img/banner.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex; /* Permet de centrer verticalement et horizontalement */
  align-items: center; /* Centrage vertical */
  justify-content: center; /* Centrage horizontal */
}
.banner.desktop::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Assombrir le fond */
  z-index: 1;
}
.banner.desktop > * {
  position: relative;
  z-index: 2;
}
.banner.desktop .banner__divbanner {
  text-align: center; /* Centrage du texte */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner.desktop .banner__title {
  font-family: "Nobile", sans-serif;
  font-weight: 800;
  color: white;
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin: 0;
}
.banner.desktop .banner__title-main {
  color: white;
}
.banner.desktop .banner__title--accent {
  color: #E80C51;
}
.banner.desktop .banner__description {
  font-family: "Nobile", sans-serif;
  font-weight: 300;
  color: #e8e8e8;
  font-size: 18px;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.banner.desktop .banner__cta-container {
  display: flex;
  gap: 1.5rem;
}
.banner.desktop .banner__cta {
  border: 1px solid #E80C51;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: "Nobile", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 5px;
}
.banner.desktop .banner__cta--primary {
  background-color: #E80C51; /* Rouge */
  color: white;
}
.banner.desktop .banner__cta--primary:hover {
  background-color: white;
  color: #E80C51; /* Inversion des couleurs */
  border-color: white;
}
.banner.desktop .banner__cta--secondary {
  background-color: transparent;
  color: white;
}
.banner.desktop .banner__cta--secondary:hover {
  background-color: #E80C51;
  color: white;
}

.banner.desktop {
  display: flex; /* Toujours afficher la version desktop */
}

.banner.mobile {
  display: none; /* Masquer la version mobile par défaut */
}

@media (max-width: 480px) {
  .banner.desktop {
    display: none;
  }
  .banner.mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    padding-top: 10rem;
    min-height: 50vh;
    background-image: url("../img/banner.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
  }
  .banner.mobile::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Assombrir le fond */
    z-index: 1;
  }
  .banner.mobile > * {
    position: relative;
    z-index: 2;
  }
  .banner.mobile .banner__divbanner {
    text-align: center;
    gap: 1.5rem; /* Espace entre les éléments */
  }
  .banner.mobile .banner__title {
    font-family: "Nobile", sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: 0.1rem;
    line-height: 1.2; /* Meilleure lisibilité */
    color: white;
    margin-bottom: 1rem;
  }
  .banner.mobile .banner__title-main {
    color: white;
  }
  .banner.mobile .banner__title--accent {
    color: #E80C51;
  }
  .banner.mobile .banner__description {
    font-size: 1.2rem; /* Taille réduite pour la description */
    margin-bottom: 2.5rem;
    line-height: 1.4;
    color: white;
  }
  .banner.mobile .banner__cta-container {
    display: flex;
    flex-direction: column; /* Les boutons sont empilés */
    gap: 1rem; /* Espacement entre les boutons */
    justify-content: center;
    align-items: center;
  }
  .banner.mobile .banner__cta {
    width: 100%; /* Les boutons prennent toute la largeur */
    max-width: 300px; /* Limite la largeur maximale des boutons */
    text-align: center;
    padding: 1rem 1.5rem; /* Taille des boutons ajustée avec rem */
    font-size: 0.9rem; /* Taille réduite pour les boutons */
    border: 1px solid #E80C51;
    border-radius: 5px;
    font-family: "Nobile", sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .banner.mobile .banner__cta--primary {
    background-color: #E80C51;
    color: white;
  }
  .banner.mobile .banner__cta--primary:hover {
    background-color: white;
    color: #E80C51;
    border-color: white;
  }
  .banner.mobile .banner__cta--secondary {
    background-color: transparent;
    color: white;
  }
  .banner.mobile .banner__cta--secondary:hover {
    background-color: #E80C51;
    color: white;
  }
}
.about-banner {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
}
.about-banner__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-banner__image-container .about-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Assombrir l'image */
}
.about-banner__overlay {
  position: relative;
  text-align: center;
  z-index: 2;
}
.about-banner__overlay .about-banner__title {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Nobile", sans-serif;
  color: white;
}
.about-banner__overlay .about-banner__title .highlight {
  color: #E80C51; /* Couleur accent pour "Propos" */
}

.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 50px;
  max-width: 1200px;
  margin: auto;
}
.about__content {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.about__title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Nobile", sans-serif;
  color: white;
  margin-bottom: 1rem;
}
.about__description {
  font-size: 0.9rem;
  color: white;
  line-height: 1.6;
  text-align: justify;
}
.about__description .about__span {
  font-weight: bold;
  color: #E80C51; /* Rouge pour les parties importantes */
}
.about__cta {
  background-color: #E80C51;
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-family: "Nobile", sans-serif;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-align: center;
  width: 30%;
}
.about__cta:hover {
  background-color: white;
  color: #E80C51;
}
.about__image-container {
  flex-basis: calc(50% - 80px);
  height: 450px;
  overflow: hidden;
  position: relative;
  box-shadow: 30px 30px 0 0 rgb(232, 12, 81);
}
.about__image {
  width: calc(100% + 200px);
  height: calc(100% + 20px);
  object-fit: cover;
  object-position: -100px -50px;
  display: block;
}

.page-layout {
  display: flex;
  height: 60vh;
}

.fixed-image {
  flex: 1;
  max-height: 60vh;
  position: relative;
  overflow: hidden;
}
.fixed-image img {
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-position: 0px -100px;
  object-fit: cover;
}

.line-pagination {
  position: relative;
  background: #0d0d0d;
  display: flex;
  padding-right: 4rem;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  z-index: 10;
}
.line-pagination div {
  width: 15px;
  height: 30px;
  background-color: transparent;
  border: 2px solid #e80c51;
  border-radius: 15px; /* Forme circulaire */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.line-pagination div:hover {
  background-color: #e80c51;
  transform: scale(1.2); /* Zoom au survol */
}
.line-pagination div.active {
  background-color: #e80c51;
  transform: scale(1.2);
}

.scroll-container {
  flex: 2;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  background: #0d0d0d;
  scrollbar-width: none;
  padding: 0 2rem;
}
.scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-section {
  height: 60vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #0d0d0d;
  font-family: "Nobile", sans-serif;
}
.scroll-section__content {
  padding: 2rem;
  width: 100%;
  color: white;
  border-radius: 15px;
  max-width: 100%;
  overflow-y: auto;
}
.scroll-section__content::-webkit-scrollbar {
  display: none;
}
.scroll-section__content h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: white;
  border-bottom: 2px solid #e80c51;
}
.scroll-section__content p,
.scroll-section__content ul {
  font-size: 1rem;
  line-height: 2rem;
  color: #fff;
}
.scroll-section__content ul {
  list-style: none;
  padding: 0;
}
.scroll-section__content ul li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}
.scroll-section__content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 1.5rem;
}

@media (max-width: 480px) {
  .page-layout {
    flex-direction: column; /* Affiche les blocs en colonne */
    height: auto; /* Ajuste la hauteur automatiquement */
  }
  .page-layout .fixed-image {
    max-height: 30vh; /* Limite encore plus la hauteur en mobile */
  }
  .page-layout .fixed-image img {
    max-height: 30vh; /* Même règle pour l'image */
  }
  .page-layout .scroll-container {
    height: auto; /* Supprime la hauteur fixe */
    overflow: visible; /* Désactive le scroll forcé */
    padding: 1rem 0; /* Ajoute un peu d'espace vertical */
  }
  .page-layout .scroll-section {
    height: auto; /* Adapte la hauteur au contenu */
    padding: 1rem 0; /* Ajoute un peu d'espace interne */
    scroll-snap-align: none; /* Désactive le snapping */
  }
  .page-layout .line-pagination {
    display: none; /* Supprime la pagination en mobile */
  }
  .about-banner {
    padding-top: 3rem;
    height: 50vh;
  }
  .about {
    flex-direction: column;
    text-align: center;
  }
  .about__content {
    flex-basis: 100%;
    margin-bottom: 2rem;
  }
  .about__cta {
    width: auto;
  }
  .about__image-container {
    flex-basis: 100%;
    margin-bottom: 2rem;
    box-shadow: 15px 15px 0 0 rgb(232, 12, 81);
  }
  .about__image {
    width: 100%;
    object-position: 0 0;
  }
  .contact-card {
    padding: 50px 20px;
  }
  .contact-card__content {
    flex-direction: column;
  }
  .contact-card__info {
    text-align: center;
  }
  .contact-card__info .contact-card__description {
    margin-bottom: 1rem;
  }
}
.contact-card {
  background-color: #131313;
  padding: 80px 205px;
  display: flex;
  align-items: center;
  font-family: "Nobile", sans-serif;
}
.contact-card__image-container {
  width: 100%;
  padding: 0;
}
.contact-card__image-container img {
  width: 100%;
}
.contact-card__container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}
.contact-card__title {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 3rem;
  color: #fff;
  font-family: "Nobile", sans-serif;
}
.contact-card__content {
  padding: 2rem 2rem;
  background-color: #0d0d0d;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative; /* Nécessaire pour positionner le soulignement */
  /* Ajout du soulignement */
}
.contact-card__content::after {
  content: "";
  position: absolute;
  bottom: 0; /* Place le soulignement en bas */
  left: 10%; /* Ajuste le début du soulignement */
  width: 80%; /* Ajuste la largeur du soulignement */
  height: 3px; /* Épaisseur du soulignement */
  background-color: #e80c51; /* Rouge vif */
  border-radius: 2px; /* Coins arrondis */
}

@media (max-width: 480px) {
  .contact-card {
    padding: 40px 40px;
  }
}
.front-programs {
  background-color: #131313;
  padding: 4rem 12rem 9rem 12rem;
  margin: auto;
  font-family: "Nobile", sans-serif;
}
.front-programs__title {
  font-size: 2rem; /* Texte plus imposant */
  font-weight: 700; /* Poids de police renforcé */
  text-transform: uppercase;
  margin-bottom: 3rem;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.1em; /* Espacement des lettres pour un look professionnel */
}
.front-programs__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.front-programs__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-color: #1f1f1f; /* Fond sombre */
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Ombre légère */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  height: 100%; /* Ajoute une hauteur dynamique pour un alignement uniforme */
}
.front-programs__item:hover {
  background-color: #2a2a2a; /* Légèrement plus sombre */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6); /* Ombre plus prononcée */
}
.front-programs__item-link {
  text-decoration: none;
  color: inherit;
  display: flex; /* Permet de gérer les dimensions de la div */
  flex-direction: column;
  height: 100%; /* Assure une hauteur uniforme pour le lien englobant */
}
.front-programs__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.front-programs__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding: 1.5rem;
}
.front-programs__name {
  font-size: 1.2rem; /* Texte plus grand */
  font-weight: 700; /* Police en gras */
  color: #E80C51;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em; /* Espacement accentué pour l'élégance */
}
.front-programs__description {
  font-size: 0.9rem; /* Taille légèrement augmentée */
  color: #fff; /* Gris clair */
  line-height: 1.8; /* Améliore la lisibilité */
  margin-bottom: 1rem; /* Plus d'espace avec le titre */
}
.front-programs__cta {
  margin-top: auto;
  background-color: #E80C51;
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-family: "Nobile", sans-serif; /* Assure-toi d'importer cette police */
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block; /* Permet au bouton de se comporter comme un lien cliquable */
  align-self: flex-start;
}
.front-programs__cta:hover {
  background-color: white;
  color: #E80C51;
}
.front-programs .program-content__short-description {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 20px;
}
.front-programs .program-content__short-description .highlight {
  color: #E80C51; /* Accentuer les mots surlignés */
  font-weight: bold;
}

@media (max-width: 480px) {
  .front-programs {
    padding: 1rem 3rem 2rem 3rem;
  }
  .front-programs .front-programs__list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .front-programs .front-programs__title {
    font-size: 8vw;
  }
}
.single-program {
  font-family: "Nobile", sans-serif;
  color: #fff;
}
.single-program .program-banner {
  position: relative;
  height: 70vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.single-program .program-banner__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.single-program .program-banner__image-container .program-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.single-program .program-banner__overlay {
  position: relative;
  text-align: center;
  z-index: 2;
}
.single-program .program-banner__overlay .program-banner__title {
  font-size: 2.5rem;
  color: white;
  text-transform: uppercase;
}
.single-program .program-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 100px 50px;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}
.single-program .program-content__image-container {
  flex-basis: 40%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.single-program .program-content__image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.single-program .program-content__details {
  flex-basis: 58%;
  display: flex;
  flex-direction: column;
}
.single-program .program-content__details .program-content__title {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  margin-bottom: 0rem;
}
.single-program .program-content__details .program-content__price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #E80C51;
  margin-bottom: 0.5rem;
}
.single-program .program-content__details .program-content__description {
  font-size: 0.9rem;
  color: white;
  line-height: 1.6;
}
.single-program .program-content__details .program-content__disclaimer {
  font-size: 0.9rem;
  color: #ccc;
}
.single-program .program-content__details .program-content__actions {
  display: flex;
  gap: 15px;
}
.single-program .program-content__details .program-content__actions .program-content__cta {
  margin-top: 1rem;
  padding: 10px 18px 8px 18px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.single-program .program-content__details .program-content__actions .program-content__cta--primary {
  background-color: #E80C51;
  color: white;
}
.single-program .program-content__details .program-content__actions .program-content__cta--primary:hover {
  background-color: white;
  color: #E80C51;
}
.single-program .program-content__details .program-content__actions .program-content__cta--secondary {
  background-color: transparent;
  color: white;
  border: 2px solid #E80C51;
}
.single-program .program-content__details .program-content__actions .program-content__cta--secondary:hover {
  background-color: #E80C51;
  color: white;
}
@media (max-width: 480px) {
  .single-program .program-content {
    flex-direction: column;
    text-align: center;
  }
  .single-program .program-content__image-container {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
  .single-program .program-content__details {
    flex-basis: 100%;
  }
}

#category-programs .category-banner {
  position: relative;
  height: 70vh; /* Même hauteur que .single-program */
  background: #000; /* Couleur de fond par défaut */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Nobile", sans-serif;
}
#category-programs .category-banner__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#category-programs .category-banner__image-container .category-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Assombrir l'image */
}
#category-programs .category-banner__overlay {
  position: relative;
  text-align: center;
  z-index: 2;
}
#category-programs .category-banner__overlay .category-banner__title {
  font-size: 2.5rem;
  color: white;
  text-transform: uppercase;
}
#category-programs .category-banner__overlay .category-banner__title .highlight {
  color: #E80C51; /* Applique la couleur accent */
}
#category-programs .category-programs__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Grille responsive */
  gap: 2rem;
  padding: 5rem 12rem 9rem 12rem;
}
#category-programs .category-programs__item-link {
  text-decoration: none;
  color: inherit; /* Hérite de la couleur par défaut */
  display: block; /* Rend le lien englobant */
  height: 100%; /* Permet d'uniformiser la hauteur */
}
#category-programs .category-programs__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-color: #1f1f1f; /* Fond sombre */
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Ombre légère */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  height: 100%; /* Assure une hauteur uniforme */
}
#category-programs .category-programs__item:hover {
  background-color: #2a2a2a; /* Fond légèrement plus sombre */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6); /* Ombre plus prononcée */
}
#category-programs .category-programs__item .category-programs__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
#category-programs .category-programs__item .category-programs__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem;
}
#category-programs .category-programs__item .category-programs__content .category-programs__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #E80C51;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em; /* Espacement comme .front-programs__name */
}
#category-programs .category-programs__item .category-programs__content .category-programs__description {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 1rem;
}
#category-programs .category-programs__item .category-programs__content .category-programs__cta {
  margin-top: auto;
  background-color: #E80C51;
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-family: "Nobile", sans-serif;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block; /* Permet au bouton de se comporter comme un lien cliquable */
  align-self: flex-start;
  border-radius: 5px;
}
#category-programs .category-programs__item .category-programs__content .category-programs__cta:hover {
  background-color: white;
  color: #E80C51;
}

@media (max-width: 480px) {
  #category-programs .category-programs__list {
    padding: 5rem 3rem 2rem 3rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  #category-programs .category-banner {
    padding-top: 3rem;
    height: 50vh;
  }
}
.page-404 .banner-404 {
  position: relative;
  height: 70vh;
  background: #000; /* Couleur de fond sombre */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-404 .banner-404__overlay {
  position: relative;
  z-index: 2;
}
.page-404 .banner-404__overlay .banner-404__title {
  font-size: 2.5rem;
  font-family: "Nobile", sans-serif;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-404 .banner-404__overlay .banner-404__title .banner-404__title-main {
  font-size: 4rem;
  color: #E80C51;
}
.page-404 .banner-404__overlay .banner-404__title .banner-404__title--accent {
  display: block;
  font-size: 1.5rem;
  color: white;
}
.page-404 .banner-404__overlay .banner-404__description {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
  font-family: "Nobile", sans-serif;
}
.page-404 .banner-404__overlay .banner-404__cta {
  display: inline-block;
  background-color: #E80C51;
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-family: "Nobile", sans-serif;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.page-404 .banner-404__overlay .banner-404__cta:hover {
  background-color: white;
  color: #E80C51;
}

.footer {
  background: #070707;
  color: #cccccc;
}
.footer__logo-container {
  display: flex;
  align-items: center;
  width: 30%;
}
.footer__logo {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Nobile", sans-serif;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.footer .logo__letter {
  color: white;
}
.footer .logo__letter--highlight {
  color: #E80C51;
}
.footer__content {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #333333;
  padding-bottom: 2rem;
  padding: 3.5rem 12rem 2rem 12rem;
}
.footer__content > div {
  margin-bottom: 1rem;
}
.footer__brand {
  width: 35%;
}
.footer__brand img {
  margin-top: 0.5rem;
  width: 25%;
}
.footer__brand p {
  width: 70%;
  font-family: "Nobile", sans-serif;
  line-height: 2rem;
  margin: 1rem 0;
  color: white;
}
.footer__brand .footer__social-icons {
  width: 100%;
}
.footer__brand .footer__social-icons .footer__icon-link {
  margin-right: 0.5rem;
}
.footer__brand .footer__social-icons img {
  filter: invert(100%);
  width: 4%;
}
.footer__brand .footer__social-icons a {
  color: #cccccc;
  margin-right: 1rem;
  text-decoration: none;
}
.footer__brand .footer__social-icons a:hover {
  color: #e60000;
}
.footer__links {
  width: 18%;
}
.footer__links li:first-of-type {
  margin-top: 1.5rem;
}
.footer__links img {
  filter: invert(100%);
  width: 4%;
  margin-right: 0.5rem;
}
.footer__contact {
  width: 25%;
}
.footer__location {
  width: 15%;
}
.footer__links, .footer__contact, .footer__location {
  font-family: "Nobile", sans-serif;
  color: white;
}
.footer__links h3, .footer__contact h3, .footer__location h3 {
  color: #ffffff;
  font-weight: 300;
  font-family: "Nobile", sans-serif;
  letter-spacing: 4px;
  margin: 0;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__links ul, .footer__contact ul, .footer__location ul {
  list-style: none;
  padding: 0;
}
.footer__links ul li, .footer__contact ul li, .footer__location ul li {
  margin-bottom: 0.7rem;
}
.footer__links ul li a, .footer__contact ul li a, .footer__location ul li a {
  color: white;
  text-decoration: none;
}
.footer__links ul li a:hover, .footer__contact ul li a:hover, .footer__location ul li a:hover {
  text-decoration: underline;
  color: #E80C51;
}
.footer__links p, .footer__contact p, .footer__location p {
  margin: 0.5rem 0;
}
.footer__links p:first-of-type, .footer__contact p:first-of-type, .footer__location p:first-of-type {
  margin-top: 2rem;
}
.footer__legal {
  padding: 2.5rem 12rem;
  display: flex; /* Permet l'utilisation des propriétés flexbox */
  justify-content: space-between; /* Sépare les éléments au maximum */
  align-items: center; /* Aligne verticalement les éléments */
}
.footer__legal .footer__copyright {
  color: white;
  margin: 0;
}
.footer__legal .footer__terms {
  color: white;
  text-decoration: none;
}
.footer__legal .footer__terms:hover {
  text-decoration: underline;
  color: #E80C51;
}
@media (max-width: 480px) {
  .footer {
    padding: 2rem 2rem 0 2rem;
  }
  .footer__content {
    flex-direction: column;
    padding: 0;
    gap: 2rem;
  }
  .footer__brand, .footer__links, .footer__contact, .footer__location {
    width: 100%;
  }
  .footer__brand h3, .footer__links h3, .footer__contact h3, .footer__location h3 {
    border-bottom: 1px solid rgba(245, 245, 245, 0.1);
    padding-bottom: 10px;
  }
  .footer__brand p, .footer__links p, .footer__contact p, .footer__location p {
    width: 100%;
  }
  .footer__legal {
    padding: 2.5rem 0;
    flex-wrap: wrap;
  }
  .footer__legal p {
    width: 100%;
  }
}

/*# sourceMappingURL=styles.css.map */
