@charset "UTF-8";

/* POLICES */
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("fonts/Poppins-SemiBold.woff2") format("woff2"),
    url("fonts/Poppins-SemiBold.woff") format("woff"),
    url("fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.woff2") format("woff2"),
    url("fonts/Poppins-Regular.woff") format("woff"),
    url("fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Bold";
  src: url("fonts/Poppins-Bold.woff2") format("woff2"),
    url("fonts/Poppins-Bold.woff") format("woff"),
    url("fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Light";
  src: url("fonts/Poppins-Light.woff2") format("woff2"),
    url("fonts/Poppins-Light.woff") format("woff"),
    url("fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* GENERAL */
* {
  box-sizing: border-box;
}

body {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Poppins";
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal;
  /* letter-spacing: 0.025em; */
}

p,
blockquote,
article,
ul,
ol,
li {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

h1 {
  margin: 0;
  padding: 45px 0;
  font-family: "Poppins-SemiBold";
  font-size: 36px;
}

h2 {
  font-family: "Poppins-SemiBold";
  font-size: 24px;
}

h3 {
  margin: 0;
  margin-bottom: 15px;
  padding: 0;
  font-family: "Poppins-SemiBold";
  font-size: 24px;
}

div#container > section,
main > section {
  margin-bottom: 45px;
}

.bouton-principal {
  padding: 8px 24px;
  border: 1px solid #16a085;
  border-radius: 60px;
  font-family: "Poppins-SemiBold";
  text-decoration: none;
  color: #ffffff;
  background-color: #16a085;
}

.bouton-principal:hover {
  border: 1px solid #0f6c59;
  color: #ffffff;
  background-color: #0f6c59;

  transition: 0.25s;
}

.bouton-lien {
  font-size: 18px;
  color: #16a085;

  transition: 0.25s;
}

.bouton-lien:hover {
  color: #0f6c59;

  transition: 0.25s;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}

/* NAVIGATION */

/* LOGO */
.logo {
  display: flex;
  align-items: top;
  margin-left: 30px;
  width: 130px;
  height: 65px;
}

/* NAVIGATION PRINCIPALE */

nav#navigation {
  margin-left: 30px;
}

nav#navigation ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

nav#navigation li {
  display: inline-block;
  line-height: 65px;
}

nav#navigation li a {
  padding: 10px 15px;
  text-decoration: none;
  color: #000000;
}

nav#navigation li a:hover {
  border-radius: 60px;
  color: #ffffff;
  background-color: #0f6c59;
  transition: 0.25s;
}

nav#navigation ul li a.active {
  border-radius: 60px;
  color: #ffffff;
  background-color: #16a085;
}
nav#navigation ul li a.active:hover {
  color: #ffffff;
  background-color: #0f6c59;
}

/* SOUS MENU */

.sous-menu {
  display: none;
  position: absolute;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background-color: #ffffff;
}

.sous-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.sous-menu li {
  display: block;
  padding: 0 15px;
  line-height: 65px;
}

.sous-menu li a {
  text-decoration: none;
  color: #000000;
}

.sous-menu li a:hover {
  background-color: #f1f1f1;
}

nav#navigation li:hover .sous-menu {
  display: block;
}

.sous-menu {
  display: none;
}

/* NAVIGATION SECONDAIRE */
nav#navigation-secondaire {
  margin: auto;
  margin-right: 30px;
}

nav#navigation-secondaire ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

nav#navigation-secondaire li {
  display: inline-block;
  margin-left: 30px;
}

nav#navigation-secondaire li a {
  padding: 8px 24px;
  border: 1px solid #16a085;
  border-radius: 60px;
  font-family: "Poppins-SemiBold";
  text-decoration: none;
  color: #16a085;
}

nav#navigation-secondaire .bouton-principal {
  color: #ffffff;
  background-color: #16a085;
}

nav#navigation-secondaire li a:hover {
  color: #0f6c59;
  border: 1px solid #0f6c59;
  background-color: #f2f2f2;
  transition: 0.25s;
}

nav#navigation-secondaire .bouton-principal:hover {
  border: 1px solid #0f6c59;
  color: #ffffff;
  background-color: #0f6c59;
}

/* CAROUSEL */
.mySlides {
  display: none;
}

img {
  vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  max-width: 100%;
  height: 650px;
  margin: auto;
}

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

/* Caption text */
.text {
  position: absolute;
  top: 65%;
  left: 50%;
  font-family: "Poppins-SemiBold";
  font-size: 24px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  color: #ffffff;
}

/* The dots/bullets/indicators */
.dot {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px;
  }
}

/* MAIN */
main {
  margin-top: 65px;
}

/* CONTAINER */
div#container {
  margin: 0 auto;
  width: 1140px;
  text-align: center;
}

/* BARRE DE CHEMINEMENT / PUCES DE LISTE PERSONNALISÉES */ 
.cheminement {
  margin-top: 155px;
}

.cheminement ol {
  display: flex;
  justify-content: center;
  gap: 60px;
  list-style: none;
  counter-reset: etape;
}

.cheminement a {
  width: 160px;
  font-family: "Poppins-SemiBold";
  text-decoration: none;
  color: #000;
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.cheminement a.etape-active {
  cursor: pointer;
  pointer-events: auto;
  opacity: 1;
}

.cheminement a.etape-active li::before {
  background-color: #2ecc71;
}

.cheminement a.etape-active span {
  visibility: visible;
}

.cheminement a.etape-precedente {
  cursor: pointer;
  pointer-events: auto;
  opacity: 0.5;
}

.cheminement a.etape-precedente li::before {
  background: #2ecc71;
}

.cheminement ol li {
  counter-increment: etape;
}

.cheminement ol li::before {
  display: inline-block;
  width: 160px;
  margin-bottom: 15px;
  border-radius: 45px;
  font-family: "Poppins-SemiBold";
  font-size: 3.375em;
  line-height: 160px;
  color: #000;
  background: #cccccc;
  content: counter(etape);
}

.cheminement span {
  visibility: hidden;
}

/* BOITES */
.boites > div + div {
  margin: 90px 0;
}

.boites div {
  display: flex;
  justify-content: center;
}

.boites article,
.boites figure {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 15px;
  border-radius: 45px;
  transition: 0.25s;
}

.boites article:hover,
.boites figure:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: 0.25s;
}

.boites article::after,
.boites figure::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 45px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 15%, transparent 40%);
  content: "";
}

.boites article a {
  transition: all 0.5s ease;
}

.boites a {
  text-decoration: none;
  color: #000;
}

.boites figcaption {
  margin-top: 15px;
}
.boites article img,
.boites figure img {
  width: 100%;
  height: 100%;
  border-radius: 45px;
  object-fit: cover;
}

.boites article h2,
.boites figure h2 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 45px;
  text-align: center;
  color: white;
}

/* RECETTES */
.recettes div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.recettes article {
  position: relative;
  height: 568px;
}

.recettes article::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 15%, transparent 50%);
  content: "";
}

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

.recettes article h2,
.recettes article p {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 45px;
  color: white;
}

.recettes article h2 {
  margin-bottom: 30px;
}

.recettes div:last-child {
  display: flex;
}
.recettes div:last-child a {
  margin: 45px auto 0;
}
.recettes a {
  display: inline-block;
  width: 500px;
  padding: 12px;
  font-size: 24px;
  text-decoration: none;
}

.recettes a:not(.bouton-principal) {
  border: 1px solid #16a085;
  border-radius: 45px;
  font-family: "Poppins-SemiBold";
  color: #16a085;
}

.recettes a:not(.bouton-principal):hover {
  border: 1px solid #0f6c59;
  color: #0f6c59;
  background-color: #f2f2f2;
  transition: 0.25s;
}

/* TEMOIGNAGES */
.temoignages div {
  display: flex;
  justify-content: center;
}

.temoignages article {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 15px;
  border-radius: 45px;
}

.temoignages article::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 45px;
  background: linear-gradient(to top, rgb(255, 255, 255), transparent);
  content: "";
}

.temoignages article img {
  width: 100%;
  height: 100%;
  border-radius: 45px;
  object-fit: cover;
}

.temoignages article p {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 15px;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.temoignages article span {
  font-family: "Poppins-SemiBold";
}

/* FAQ RAPIDE */
.faq-rapide {
  padding: 0 45px 45px;
  text-align: center;
  background-color: #f2f2f2;
}

.faq-rapide > div {
  display: grid;
  width: 1140px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}

.faq-rapide div > div {
  padding: 0 45px;
  text-align: left;
}

.faq-rapide div div a {
  font-size: 18px;
  color: #16a085;
}

.faq-rapide div div:first-child a {
  display: inline-block;
  margin-bottom: 15px;
  text-decoration: none;
  color: #000;
  transition: 0.25s;
}

.faq-rapide div div:first-child a:hover {
  text-decoration: underline;
  transition: 0.25s;
}

.faq-rapide div div:first-child {
  border-right: 2px solid #ccc;
}

.faq-rapide div div:last-child {
  margin: auto;
  text-align: center;
}

.faq-rapide div div:last-child a:hover {
  color: #0f6c59;
  transition: 0.25s;
}

/* FAQ */
.faq ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq ul li {
  padding: 45px;
  border-bottom: 2px solid #ccc;
  font-size: 18px;
  text-align: left;
}

.faq ul li:last-child {
  border-bottom: none;
}

/* PARTENAIRES */
.partenaires div {
  display: flex;
  justify-content: center;
}

.partenaires article {
  position: relative;
  width: 160px;
  margin: 0 30px;
}

.partenaires article img {
  width: 160px;
  height: 160px;
  margin-bottom: 15px;
  border-radius: 45px;
  object-fit: cover;
}

.partenaires span {
  font-family: "Poppins-SemiBold";
}

/**************************/
/*         CONTACT        */
/**************************/
/* FORMULAIRE */
.formulaire form {
  max-width: 730px;
  margin: 0 auto;
  padding: 45px 90px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* OU NON? */
  border-radius: 45px;
  background-color: #f2f2f2;
}

form label {
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: left;
}

.radio label,
.erreur-message {
  font-weight: normal;
}

form span {
  font-size: 14px;
  font-weight: normal;
  color: #16a085;
}

.erreur-message {
  visibility: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #ff0033;
}

.colonne {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 15px;
  font-family: "Poppins";
  font-size: 18px;
}

input[type="radio"] {
  margin-right: 5px;
}

input:focus,
textarea:focus {
  outline-color: #16a085;
}

.radio label {
  font-size: 18px;
  accent-color: #16a085;
  cursor: pointer;
}

.radio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.formulaire .message {
  margin-bottom: 30px;
}

#txtMessage {
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  margin-bottom: -7px; /* PROBLEME MARGE BOTTOM 7PX */
  border: 1px solid #ccc;
  border-radius: 15px;
  font-family: "Poppins";
  font-size: 18px;
  resize: vertical;
}

input[type="submit"] {
  margin: 0 auto;
  padding: 15px 30px;
  border: 1px solid #16a085;
  border-radius: 15px;
  font-family: "Poppins-SemiBold";
  font-size: 18px;
  cursor: pointer;
  color: #ffffff;
  background-color: #16a085;
}

/* COORDONNEES */
.coordonnees > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 66%;
  margin: 0 auto;
  text-align: left;
}

.coordonnees div div:last-child iframe {
  margin-bottom: -7px; /* PROBLEME MARGE BOTTOM 7PX */
  border-radius: 15px;
}

.coordonnees a {
  text-decoration: none;
  color: #000;
}

.coordonnees a:hover {
  text-decoration: underline;
}

/************************************/
/*            PIED DE PAGE          */
/************************************/
/* FOOTER */
#footer {
  background-color: #1c2b33;
}

footer {
  width: 1140px;
  margin: 0 auto;
  padding: 45px 15px;
  font-size: 1em;
  text-align: center;
  color: #ffffff;
}

footer > div {
  display: flex;
  justify-content: space-between;
}

/* NAVIGATION FOOTER */
.navigation-footer {
  columns: 2;
  width: 30%;
  padding-right: 45px;
}

.navigation-footer li {
  margin-bottom: 30px;
}

.navigation-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation-footer a {
  text-decoration: none;
  color: #ffffff;
}

.navigation-footer a:hover {
  text-decoration: underline;
}

/* NEWSLETTER */
.infolettre {
  width: 40%;
}

.infolettre form {
  display: flex;
  columns: 2;
}

.infolettre input {
  margin-top: 15px;
  padding: 8px;
  border-radius: 8px;
  font-size: 1.125em;
}

.infolettre button {
  margin-top: 15px;
  margin-left: 15px;
  border-radius: 8px;
  font-size: 1.125em;
  cursor: pointer;
}

/* MEDIA SOCIAUX */
.media-sociaux {
  width: 30%;
  padding-left: 45px;
}

.media-sociaux h3 {
  font-family: "Poppins";
  font-size: 1em;
  font-weight: normal;
}

.media-sociaux ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  margin-top: 15px;
  list-style-type: none;
}

.media-sociaux a.instagram {
  content: url("img/instagram.png");
}

.media-sociaux a.facebook {
  content: url("img/facebook.png");
}

.media-sociaux a.twitter {
  content: url("img/twitter.png");
}
.media-sociaux a:hover {
  transform: scale(1.1);
  transition: 0.25s;
}
/* COPYRIGHT */
.copyright {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  align-items: center;
}