html {
  box-sizing: border-box;
  font-size: 12px;
  font-family: 'pacifique', serif;
  --bleu-pale: #f3f9fb;
  --bleu-fonce: #2b3e58;
  --bleu-tres-pale: #8bc4e0;
  --gris-fonce: #403F36;
  --blanc: #FAFFFF;
  --vert: #638176;
  --mauve: #713871;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

a {
  display: block;
  text-decoration: none;
}

ul {
  list-style-type: none;
  display: flex;
}

div.interface {
  color: #000000;
  width: 100vw;
  margin: 0 auto;
  background-color: var(--bleu-pale);
}

/* HEADER */
nav.menu-principal-desktop {
  display: none;
}

header {
  position: fixed;
  z-index: 10;
  width: 100vw;
  background-color: var(--bleu-fonce);
  padding: .5rem;
  display: flex;
  color: var(--blanc);
  justify-content: space-between;
}

header div {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

header i {
  font-size: 3rem;
}

header li {
  padding: .3rem;
}

header a {
  color: inherit;
}

header a:hover {
  color: var(--beige-pale);
  transition: .4s;
}

header nav {
  display: flex;
  align-items: center;
  margin-left: 28px;
}

header ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

header img {
  object-fit: cover;
  border-radius: 10px;
}

header h1 {
  margin-top: .6rem;
  color: white;
}

nav.menu-principal {
  flex-direction: column;
  align-self: center;
  align-items: flex-end;
}

.menu-toggle-princ {
  background-color: #00000000;
  color: var(--blanc);
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.image-header {
  display: none;
}

nav.menu-principal .menu-liste-princ {
  background-color: #ffffff00;
  color: black;
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.menu-principal .menu-liste-princ li {
  background-color: #ffffffcb;
  border-radius: 20px;
  margin-right: .5rem;
}

nav.menu-principal .menu-liste-princ a {
  padding: .5rem;
}

nav.menu-principal.show-menu .menu-liste-princ {
  display: flex;
}

/* MAIN */

main {
  padding: 6.5rem 2rem 2rem;
  text-align: center;
  color: var(--beige-pale);
}

main img {
  width: 100%;
  margin: 0 1rem 1rem 0;
  border-radius: 20px;
}

main h1,
main h2 {
  color: var(--bleu-fonce);
  padding: 1rem;
  margin: 1.5rem 0;
}

main h1 {
  font-size: 2.7rem;
  color: var(--bleu-fonce);
}

main h2 {
  font-size: 1.7rem;
}

main p {
  background-color: #ffffffb2;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  padding: 5px;
  border-radius: 10px;
}

div.boutons {
  background-color: #8bc4e0;
  display: inline-block;
  justify-content: space-evenly;
  margin-bottom: 2rem;
  font-size: 18px;
  padding: 16px 24px;
  background-color: var(--blanc);
  color: rgb(12, 12, 12);
  border-radius: 12px;
  transition: background-color .3s ease;
}

h1#titre_professionel {
  font-size: 1.7rem;
  margin-top: .9rem;
}

.quiz-button:hover {
  background-color: #182038;
}

a.quiz-button {
  padding: 2rem 3rem 2rem 3rem;
}

main a:hover {
  background-color: var(--bleu-pale);
  color: var(--bleu-fonce);

}

/* div.entete{
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    top: 200px;
    background-color: var(--bleu-pale);
}
section.produits section{
    text-align: left;
    padding-top: 18px;
}
nav.sections{
    position: fixed;
    right: 0;
    width: 31vw;
}
nav.sections ul{
    display: grid;
}
nav.sections a{
    font-size: 1rem;
    color: var(--bleu-pale);
    background-color: #24352f;
    border-radius: 20px 0 0 20px;
    margin-bottom: 2px;
}
nav.sections a:hover{
    color: black;
    background-color: var(--gris-fonce);
    transition: .4s;
}
.entete h1{
    font-size: 2.5rem;
    position: absolute;
    width: 300px;
    left: -45px;
} */
div.entete {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  top: 200px;
  background-color: var(--vert);
}

section.produits section {
  text-align: left;
  padding-top: 18px;
}

nav.sections {
  position: fixed;
  left: -32px;
  width: 31vw;
  top: 70px;
  flex-direction: column;
  align-items: flex-end;
}

.menu-toggle {
  background-color: #353837;
  color: var(--blanc);
  font-size: 1rem;
  border: none;
  padding: 1em;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  width: 100%;
}

nav.sections .menu-liste {
  display: none;
  position: absolute;
  top: 0;
  /* <-- aligne avec le bouton */
  left: 0;
  transform: translateY(0);
  /* <-- reste centré par rapport au bouton */
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.sections.show-menu .menu-toggle {
  display: none;
}

nav.sections.show-menu .menu-liste {
  display: grid;
}

nav.sections ul li a {
  font-size: 1rem;
  color: var(--bleu-pale);
  background-color: #24352f;
  border-radius: 0 20px 20px 0;
  margin-bottom: 2px;
  text-decoration: none;
  display: block;
  padding: 0.75em 1.5em;
}

nav.sections ul li a:hover {
  color: rgb(14, 14, 14);
  background-color: var(--bleu-pale);
  transition: .4s;
}

.entete h1 {
  font-size: 2.5rem;
  position: absolute;
  width: 300px;
  left: -45px;
}

div.produits {
  background-size: cover;
}

section.produits {
  background-image: var(--bleu-pale);
  width: 100vw;
  padding-bottom: 3rem;
}

main.produits {
  padding: 6.5rem 0 0;
  background-image: url(../images/mauve5.jpg);
  /* background-color: #ffffff56; */
}

section.produits h2 {
  margin-top: 0px;
}

div.produit {
  background-color: #b6b6b6;
  border-radius: 20px;
  margin: 1rem;
  padding: 1rem;
  display: flex;
  color: #000000;
}

div.produit div {
  display: flex;
  flex-direction: column;
  justify-self: flex-end;
  margin-left: 1rem;
}

div.produit h3 {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1rem 0 1rem 1rem;
}

div.produit p {
  padding: 1rem
}

div.produit a {
  width: 22vw;
  background-color: rgba(110, 226, 81, 0.651);
  align-self: flex-end;
  font-size: 1.1rem;
  text-align: center;
}

div.produit a:hover {
  background-color: var(--blanc);
  color: rgb(81, 79, 209);
  transition: .3s;
}

div.produit img {
  width: 100px;
  height: 150px;
  object-fit: contain;
  border: 3px var(--blanc) solid;
  background-color: white(41, 40, 40, 0);
  border-radius: 20px;
}

h1.info {
  font-size: 2rem;
}

main h3 {
  margin-bottom: 1rem;
}

/* FOOTER */
footer {
  background-color: #182038;
  text-align: center;
  color: #638176;
  padding: 2.5rem;
}

footer>p {
  margin-top: 1rem;
}

footer h3 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

footer div {
  color: var(--bleu-pale);
}

/* ESSAI BLOC FORMATION */
.formation {
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.formation img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.nom-formation {
  font-size: 20px;
  margin: 10px 0 5px 0;
}

.inscrire-btn {
  background-color: #28a745;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.acheter-btn:hover {
  background-color: #218838;
}

/* FEMME */

.femme header {
  position: fixed;
  z-index: 10;
  width: 100vw;
  background-color: var(--bleu-fonce);
  padding: .5rem;
  display: flex;
  color: var(--blanc);
}

.femme p {
  color: var(--black);
}

div.femme {
  background-color: var(--bleu-pale);
}

.femme p {
  font-size: 1.3rem;
}

.cadre-femme {
  max-width: 320px;
  color: #1F2937;
  font-size: 20px;
  font-family: Inter, sans-serif;
  line-height: 1.6;
  margin: 0 auto;
  margin-bottom: 30px;
}

.image-femme {
  padding: 6.5rem 2rem 2rem;
  text-align: center;
  color: var(--gris-fonce);
  background: url("../images/formations/frame-6351104_640.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

/* HOMME */

.homme header {
  position: fixed;
  z-index: 10;
  width: 100vw;
  background-color: var(--bleu-fonce);
  padding: .5rem;
  display: flex;
  color: var(--blanc);
}

.homme p {
  color: var(--black);
}

.cadre-homme {
  font-size: 30px;
  margin-bottom: 40px;
  margin-top: 0.9px;
}

.image-homme {
  padding: 6.5rem 2rem 2rem;
  text-align: center;
  color: var(--black);
  background: url("../images/formations/water-1330252_640.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

/* COUPLE */

.couple header {
  position: fixed;
  z-index: 10;
  width: 100vw;
  background-color: var(--bleu-fonce);
  padding: .5rem;
  display: flex;
  color: var(--blanc);
}

.cadre-couple {
  width: 100%;
  max-width: 320px;
  color: #1F2937;
  font-size: 20px;
  font-family: Inter, sans-serif;
  line-height: 1.6;
  margin: 0 auto;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.image-couple {
  background: url("../images/formations/mixte.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 6.5rem 2rem 2rem;
  text-align: center;
  color: #002B30;
}

/* PROFESSIONEL */
.cadre-professionel {
  width: 100%;
  max-width: 320px;
  color: #1F2937;
  font-size: 20px;
  font-family: Inter, sans-serif;
  line-height: 1.6;
  margin: 0 auto;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.image-professionnel {
  background: url("../images/formations/leaf-176722_640.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 6.5rem 2rem 2rem;
  text-align: center;
  color: #002B30;
}

/* ARTICLES */
.cadre-articles {
  max-width: 99vw;
  color: #1F2937;
  font-size: 20px;
  font-family: Inter, sans-serif;
  line-height: 1.6;
  margin: 0 auto;
  margin-bottom: 30px;
}

.image-articles {
  padding: 6.5rem 2rem 2rem;
  text-align: center;
  color: var(--gris-fonce);
  background: url("../images/formations/orange.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

/* VIDEOS */

.videos header {
  position: fixed;
  z-index: 10;
  width: 100vw;
  background-color: var(--bleu-fonce);
  padding: .5rem;
  display: flex;
  color: var(--blanc);
}

.image-video {
  padding: 6.5rem 2rem 2rem;
  text-align: center;
  color: var(--gris-fonce);
  background: url("../images/formations/background-homme bleu.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

/* INDEX */


.cadre-index {
  font-size: 30px;
  margin-bottom: 40px;
  margin-top: 0.9px;
}

.image-index {
  padding: 6.5rem 2rem 2rem;
  text-align: center;
  color: var(--noir);

  background-image: url("../images/montagne.jpg");
  background-size: cover;
  background-position: center center;
  /* background-repeat: repeat; */
  min-height: 100vh;

}

/* PRODUITS */

.produits header {
  position: fixed;
  z-index: 10;
  width: 100vw;
  background-color: var(--bleu-fonce);
  padding: .5rem;
  display: flex;
  color: var(--blanc);
}

.cadre-produit {
  max-width: 320px;
  color: #1F2937;
  font-size: 20px;
  font-family: Inter, sans-serif;
  line-height: 1.6;
  margin: 0 auto;
  box-sizing: border-box;
  /* margin-bottom: 40px; */
  margin-top: 40px;
  padding: 1rem;
}

.image-produits {
  padding: 6.5rem 2rem 2rem;
  text-align: center;
  color: var(--gris-fonce);
  background: url("../images/formations/images/formations/outils.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

/* quiz */

main.choix-genre {
  padding: 4rem 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.intro p {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 2rem;
}

.quiz-button {
  margin: 1rem;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  background-color: #2563EB;
  color: white;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quiz-button:hover {
  background-color: #1E40AF;
  transform: scale(1.05);
}

.intro {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
}

.intro h1 {
  font-size: 2rem;
  color: #1E293B;
  margin-bottom: 0.5rem;
}

.boutons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem;
}

.quiz-femme {
  font-family: Inter, sans-serif;
  /* background-color: var(--bleu-pale); */
  background-image: url(../images/formations/frame-6351104_640.jpg);
  background-size: cover;
  padding: 2rem;
}

.quiz-femme ol {
  counter-reset: question;
  padding-left: 1rem;
  margin: 0;
}

.quiz-femme li {
  position: relative;
  padding: 1.5rem 1rem 1.5rem 2.5rem;
  margin-bottom: 1.5rem;
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.quiz-femme li::before {
  counter-increment: question;
  content: counter(question) ".";
  position: absolute;
  left: 1rem;
  top: 1.2rem;
  font-weight: bold;
  color: var(--mauve);
  font-size: 1.2rem;
}

.quiz-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgb(250, 251, 251);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

h1 {
  text-align: center;
  color: #1E293B;
}

.question {
  margin: 1.5rem 0;
}

.question {
  font-weight: 600;
}

.question label {
  display: block;
  margin: 0.5rem 0;
}

.question p {
  background-color: #ffffff00;
}

.submit-btn {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #2563EB;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #3B82F6;
}


.quiz-homme {
  font-family: Inter, sans-serif;
  background-image: url(../images/formations/water-1330252_640.jpg);
  background-size: cover;
  padding: 2rem;
}

.quiz-homme ol {
  counter-reset: question;
  padding-left: 1rem;
  margin: 0;
}

.quiz-homme li {
  position: relative;
  padding: 1.5rem 1rem 1.5rem 2.5rem;
  margin-bottom: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(137, 202, 111, 0.03);
}

.quiz-homme li::before {
  counter-increment: question;
  content: counter(question) ".";
  position: absolute;
  left: 1rem;
  top: 1.2rem;
  font-weight: bold;
  color: var(--bleu-fonce);
  font-size: 1.2rem;
}

.quiz-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(167, 149, 149, 0.05);
}

h1 {
  text-align: center;
  color: #1E293B;
}

.question {
  margin: 1.5rem 0;
}

.question {
  font-weight: 600;
}

.question label {
  display: block;
  margin: 0.5rem 0;
}

.submit-btn {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #2563EB;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #3B82F6;
}

/* Menu vertical burger */
.menu-principal .menu-liste-princ {
  flex-direction: column;
  align-items: flex-end;
  background-color: var(--vert);
  padding: 1rem;
  position: absolute;
  top: 60px;
  /* en dessous du header */
  right: 0;
  width: max-content;
  z-index: 100;
  gap: 0.5rem;
}

/* Affichage quand le menu est activé */
.menu-principal.show-menu .menu-liste-princ {
  display: flex;
}

/* Cacher le menu par défaut */
.menu-liste-princ {
  display: none;
}

/* CHOIX GENRE */

.choix-genre header {
  position: fixed;
  z-index: 10;
  width: 100vw;
  background-color: var(--mauve);
  padding: .5rem;
  display: flex;
  color: var(--blanc);
}

.choix-genre {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.choix-genre p {
  font-size: 1.7rem;
  color: #1e2731;
  margin-bottom: 1rem;
  margin-top: 1rem;
  line-height: 2.5rem;
  text-align: center;
}

main.choix-genre {
  background-image: url(../images/jaune\ 1.jpg);
  background-size: cover;

}

.intro {
  margin-bottom: 2rem;
}

.intro h1 {
  font-size: 1.9rem;
  color: #262726;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.intro p {
  font-size: 1.7rem;
  color: #1e2731;
}

.boutons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.quiz-button {
  padding: 2rem 1rem;
  font-size: 1.16rem;
  font-weight: 700;
  background-color: #137381;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 9px 5px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.quiz-button:hover {
  background-color: #1E40AF;
  transform: scale(1.05);
}


/* QUIZ FEMME */

.quiz-femme header {
  position: fixed;
  z-index: 10;
  width: 100vw;

  padding: .5rem;
  display: flex;
  color: var(--blanc);
}

.quiz-femme {
  font-family: Inter, sans-serif;
  background-color: #674260;
  padding-top: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 100vh;
}

.quiz-femme .quiz-container {
  width: 100%;
  max-width: 900px;
  margin: 4rem auto;
  background: var(--blanc);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.quiz-femme h1 {
  margin-top: 1rem;
  padding-bottom: 1.9rem;
  text-align: center;
  color: #111111;
  font-size: 2.8rem;
}

.quiz-femme ol {
  counter-reset: question;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.quiz-femme li {
  position: relative;
  padding: 1.5rem 1rem 1.5rem 2rem;
  margin: 2rem auto;
  margin-bottom: 1.5rem;
  background-color: #f1f6fa;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  font-size: 1.15rem;
  width: 100%;
}

.quiz-femme li::before {
  counter-increment: question;
  content: counter(question) ".";
  position: absolute;
  left: 0.7rem;
  top: 1.2rem;
  font-weight: bold;
  color: var(--gris-fonce);
  font-size: 1.4rem;
}

.quiz-femme .question {
  margin: 1.5rem 0;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.8rem;
}

.quiz-femme .question p {
  font-size: 1.5rem !important;
  margin-top: 1.5rem;
}

.quiz-femme .question label {
  font-size: 1.5rem;
  display: block;
  margin: 0.7rem 0;
  text-align: left;
  padding-left: 0.5rem;
  font-weight: 400;
}

.quiz-femme .submit-btn {
  margin-top: 4rem;
  padding: 1rem 2rem;
  background-color: #43073b;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quiz-femme .submit-btn:hover {
  background-color: #3B82F6;
}

#message-erreur-femme {
  background-color: #FEE2E2;
  border: 1px solid #FCA5A5;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
}

.question.incomplete {
  border: 2px solid #e63946;
  /* rouge */
  background-color: #fff5f5;
  /* léger rose */
  transition: border 0.3s ease;
}

.erreur-message {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  color: #B91C1C;
  font-size: 1.4rem;
  text-align: center;
  background-color: #FEF2F2;
  border: 1px solid #FCA5A5;
  padding: 1rem 1.5rem;
  margin: 1.5rem auto 2rem auto;
  max-width: 800px;
  border-radius: 12px;
  font-weight: 500;
}

.incomplete {
  border: 2px solid #ff4d4d !important;
  animation: clignote 0.4s ease-in-out;
}

@keyframes clignote {
  0% {
    box-shadow: 0 0 0px red;
  }

  50% {
    box-shadow: 0 0 10px red;
  }

  100% {
    box-shadow: 0 0 0px red;
  }
}

/* QUIZ HOMME */

.quiz-homme header {
  position: fixed;
  z-index: 10;
  width: 100vw;
  padding: .5rem;
  display: flex;
  color: var(--blanc);
}

.quiz-homme {
  font-family: Inter, sans-serif;
  background-color: var(--bleu-fonce);
  padding-top: 7rem;
  min-height: 100vh;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 100vh;
}

.quiz-homme .quiz-container {
  max-width: 100%;
  max-width: 900px;
  margin: 2rem auto;
  background: var(--blanc);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.quiz-homme h1 {
  margin-top: 1rem;
  padding-bottom: 1.9rem;
  text-align: center;
  color: #111111;
  font-size: 2.7rem;
}

.quiz-homme ol {
  counter-reset: question;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.quiz-homme li {
  position: relative;
  padding: 1.5rem 1rem 1.5rem 2rem;
  margin: 2rem auto;
  margin-bottom: 1.5rem;
  background-color: #f1f6fa;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  font-size: 1.15rem;
  width: 100%;
}

.quiz-homme li::before {
  counter-increment: question;
  content: counter(question) ".";
  position: absolute;
  left: 0.7rem;
  top: 1.2rem;
  font-weight: bold;
  color: var(--gris-fonce);
  font-size: 1.4rem;
}

.quiz-homme .question {
  margin: 1.5rem 0;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.8rem;
}

.quiz-homme .question p {
  font-size: 1.5rem !important;
  margin-top: 1.5rem;
}

.quiz-homme .question label {
  font-size: 1.5rem;
  display: block;
  margin: 0.7rem 0;
  text-align: left;
  padding-left: 0.5rem;
  font-weight: 400;
}

.quiz-homme .submit-btn {
  margin-top: 4rem;
  padding: 1rem 2rem;
  background-color: #0e194d;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quiz-homme .submit-btn:hover {
  background-color: #111f34;
}

#message-erreur-homme {
  background-color: #FEE2E2;
  border: 1px solid #FCA5A5;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
}

.question.incomplete {
  border: 2px solid #e63946;
  /* rouge */
  background-color: #fff5f5;
  /* léger rose */
  transition: border 0.3s ease;
}

.erreur-message {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  color: #B91C1C;
  font-size: 1.4rem;
  text-align: center;
  background-color: #FEF2F2;
  border: 1px solid #FCA5A5;
  padding: 1rem 1.5rem;
  margin: 1.5rem auto 2rem auto;
  max-width: 800px;
  border-radius: 12px;
  font-weight: 500;
}

.incomplete {
  border: 2px solid #ff4d4d !important;
  animation: clignote 0.4s ease-in-out;
}

@keyframes clignote {
  0% {
    box-shadow: 0 0 0px red;
  }

  50% {
    box-shadow: 0 0 10px red;
  }

  100% {
    box-shadow: 0 0 0px red;
  }
}


/* RESULTATS */

.resultats header {
  position: fixed;
  z-index: 10;
  width: 100vw;
  padding: .5rem;
  display: flex;
  color: var(--blanc);
}

.resultats {
  margin-top: 0rem;
  text-align: center;
  padding: 1rem;
}

.resultats #intro {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: #1E293B;
  font-weight: 500;
}

.resultat-box {
  background-color: #f1f6fa;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.resultat-box h2 {
  color: #0d1d49;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.resultat-box p {
  color: #1E293B;
  font-size: 1.5rem;
  line-height: 1.7;
  text-align: left;
}

.resultats .container {
  padding-top: 7rem;
}

.resultat-box ul {
  margin: 0.5rem 0 1rem 1.5rem;
  padding: 0;
  color: #1E293B;
  font-size: 1.3rem;
  line-height: 1.6;
  text-align: left;
  list-style-position: outside;
  display: flex;
  flex-direction: column;
}

.resultat-box ul li {
  list-style-type: "-";
}



@media screen and (min-width: 1300px) {

  div.interface {
    width: 99vw;
  }

  .femme h2,
  .homme h2,
  .cadre-profesionnel h2 {
    font-size: 4rem;
  }

  .femme h3,
  .homme h3,
  .cadre-profesionnel h3 {
    font-size: 2rem;
  }

  /* HEADER */

  header {
    position: fixed;
    z-index: 10;
    width: 100vw;
    height: 160px;
    background-color: var(--bleu-fonce);
    padding: .5rem;
    display: flex;
    color: var(--blanc);
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }

  button.menu-toggle-princ {
    display: none;

  }

  nav.menu-principal-desktop {
    display: block;
    margin: 0;
  }

  header li {
    padding: .7rem;
  }

  header ul li:not(:last-child):before {
    /* IM TRYING SOMETHING */
    content: "";
    display: block;
    background-color: white;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1px;
  }

  header div {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  header a {
    color: inherit;
    font-size: 1.7rem;
  }

  header a:hover {
    color: #0096db;
    transition: .4s;
  }

  header nav {
    display: flex;
    align-items: center;
    margin-left: 28px;
  }

  header ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  header img {
    object-fit: cover;
    border-radius: 10px;
  }

  .image-header {
    display: block;
    object-fit: cover;
    width: 99vw;
    height: 80vh;
    background-position: bottom;
    border-radius: 0px;
    margin-bottom: 0;
  }

  header h1,
  h1#titre_professionel {
    margin-top: .6rem;
    margin-right: 2.5rem;
    color: white;
    font-size: 3rem;
  }

  /* MAIN */

  main {
    padding: 0;
    padding-top: 13rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 99vw;
  }

  main p {
    font-size: 1.5rem;
    padding: 3rem;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
  }

  main .cadre-index {
    position: absolute;
    top: 550px;
    right: 30px;

  }

  main img {
    width: 100%;
    border-radius: 20px;
    object-fit: contain;
  }

  main .cadre-index h1 {
    font-size: 9rem;
    color: #ffffff;
  }

  main .image-index {
    display: grid;
    /* flex-direction: column; */
    /* align-items: center; */
    justify-content: center;
    justify-items: center;
    align-items: center;
    grid-template-columns: 40vw 40vw;
    grid-template-rows: 25vw 25vw 25vw 25vw 50vw 25vw 15vw 15vw;
    gap: 3rem;
  }

  main div.cadre-index+p,
  div.cadre-index+p+p+div+p {
    width: 70%;
    grid-column: 1 / 3;
  }

  main div+div+p+p {
    grid-column: 1 / 3;
    width: 50%;
  }

  main div+div+p+p+div {
    grid-column: 1 / 3;
    width: 20%;
  }

  main .image-homme {
    display: grid;
    /* flex-direction: column; */
    /* align-items: center; */
    justify-content: center;
    justify-items: center;
    align-items: center;
    grid-template-columns: 40vw 40vw;
    grid-template-rows: 25vw 25vw 25vw 25vw 50vw 25vw 15vw 15vw;
    gap: 3rem;
  }

  /* FOOTER */

  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer .contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer p {
    width: 40%;
  }

  /* DIVs .image-x */

  div.image-homme,
  div.image-femme,
  div.image-couple,
  div.cadre-profesionnel,
  div.image-video {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* QUIZ */
  body {
    background-color: #fafafa;
  }

  li.question {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  li.question p {
    align-self: center;
  }

  p.intro {
    margin: 0 auto 0 auto;
  }

  main.quiz-homme,
  main.quiz-femme {
    padding-top: 20rem;
  }

  div.choix-genre{
    margin-top: 12rem;
  }

  /* MENU CATÉGORIES */

  nav.sections {
    position: fixed;
    left: -32px;
    width: 20vw;
    top: 170px;
    flex-direction: column;
    align-items: flex-end;
  }

  /* ARTICLES */

  div.cadre-articles {
    max-width: 60vw;
  }
  div.cadre-articles div{
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem;
  }
  div.cadre-articles h2{
    font-size: 3rem;
  }

  /* VIDEOS */

  div.cadre-video {
    display: flex;
    width: 80vw;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    margin-bottom: 5rem;
  }
  div.formation{
    background-color: var(--bleu-fonce);
    color: white;
  }

  /* PRODUITS */
div.cadre-produit{
  background-color: white;
  border-radius: 20px;
  margin-top: 12rem;
  max-width: 70%;
}
div.cadre-produit p{
  margin: 0;
}

  section.produits h2 {
    font-size: 3rem;
    color: white;
    justify-self: center;
    margin-top: 5rem;
  }
  section.produits section section {
    display: grid;
    grid-template-columns: 30vw 30vw 30vw;
    justify-content: center;
    gap: 2rem;
  }

  section.produits section section div {
    height: 40rem;
    background-color: rgb(224, 234, 255);
  }

  section.produits section section img {
    align-self: center;
    width: 10vw;
    height: 80%;
    background-color: white;
  }

  section.produits section section h3 {
    width: 15vw;
    font-size: 2rem;
  }

  section.produits section section p {
    width: 15vw;
    font-size: 16px;
  }

  section.produits section section a {
    border-radius: 20px;
    padding: 1rem;
    align-self: center;
    justify-self: flex-end;
    width: 60%;
  }

  section.produits section section div {
    height: 100%;
  }

  /* POLITIQUE */

  .politique{
    font-size: 1.3rem;
    /* color: white; */
  }
  .cadre-politique{
    margin: 12rem 0 4rem 0 ;
  }

  /* PROFESSIONNEL */
  .professionnel p{
    padding: 1rem;
    max-width: 70%;
  }
}