/* ================= BASE ================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body, php {
  margin: 0;
  padding: 0;
  overflow-x: visible;
}

body {
  background-color: #f6f6fe;
  font-family: Arial, sans-serif;
  width :100vw;
}

/* Espace vertical */
.spacer {
  height: 50px;
  width: 100%;
}

/* ================= HEADER ================= */



.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Logo */
.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.logo {
  width: 350px;
}

/* ================= BANDEAU STICKY ================= */

#bandeau-categories {
  position: sticky;
  top: 0;
  z-index: 0;

  background-color: rgba(235, 150, 118, 0.85);
  

  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 12px 0;

  font-family: Nunito;
  font-size: 18px; 
}

/* Catégories */
#bandeau-categories .categorie {
  color: white;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.3s ease;
  text-decoration: none; 
}

#bandeau-categories .categorie:hover {
  color: #3f4967;
}

/* ================= IMAGE SOUS HEADER ================= */
.banner-cta {
  position: absolute;
  right: 350px;
  bottom: 40px;
  padding: 10px 20px;
  font-family: Nunito;
  background-color: #EB9676;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.banner-cta:hover {
  background-color: #3f4967;
}
.banner-image {
  position: relative;
  width: 100%;
  overflow: ;
}

.banner-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .logo {
    height: 40px;
  }

  .hero {
    height: 60vh;
  }

  #bandeau-categories {
    font-size: 15px;
    gap: 20px;
  }
}
/* ================= FOOTER ================= */

#footer-categories {
  background-color: #3f4967;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ----- LIGNE CATÉGORIES ----- */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
 
              /* ESPACEMENT ENTRE CATÉGORIES */
}

.footer-link {
  color: white;
   white-space: nowrap;
  text-decoration: none;
  font-family: Nunito;
  font-size: 16px;
}

.footer-link:hover {
  color: #EB9676;
}

/* ----- LIGNE RÉSEAUX SOCIAUX ----- */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  padding-top: 15px;
  width: 100%;

}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: white;
  transition: fill 0.3s ease;
}

.social-link:hover svg {
  fill: #EB9676;
}

/* ----- LIGNE COPYRIGHT ----- */
.footer-copy {
  display: flex;
  justify-content: center;
  color: white;
  font-family: Nunito;
  font-size: 16px;
  padding-top: 15px;}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-link {
    font-size: 14px;
  }
}
h1 {text-align: center; color :#3f4967; font-family: Nunito; font-size:32px;}
h2 {text-align: center; color :#3f4967; font-family: Nunito; font-size: 28px;}
h3 {text-align: center; color :#3f4967; font-family: Nunito; font-size: 22px;padding-left: 25%;
  padding-right: 15%;}
h4 {text-align: center; color :#3f4967; font-family: Nunito; font-size: 16px;padding-left: 25%;
  padding-right: 15%;}
/* BASE */
* {
  box-sizing: border-box;
  font-family: "nunito";
}

/* CONTENEUR */
#contact-form {
  max-width: 760px;
  margin: 80px auto;
  padding: 60px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* LABELS */
#contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #3f4967;
}

/* CHAMPS */
/* CHAMPS (hors checkbox) */
#contact-form input:not([type="checkbox"]),
#contact-form select,
#contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 28px;
  border: 1px solid #3f4967;
  border-radius: 10px;
  background-color: transparent;
  font-size: 15px;
  color: #3f4967;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

}

/* FOCUS ÉLÉGANT */
#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #3f4967;
  box-shadow: 0 0 0 1px rgba(154, 143, 122, 0.35);
}

/* TEXTAREA */
#contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* RGPD */
#contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 40px;
}

/* CHECKBOX */
#contact-form .consent input[type="checkbox"] {
  width: auto;
  margin: 4px 0 0 0;
  padding: 0;
  border: none;
  box-shadow: none;
  accent-color: #3f4967;
}

/* SUPPRESSION FOCUS BLEU */
#contact-form .consent input[type="checkbox"]:focus {
  outline: none;
  box-shadow: none;
}

/* TEXTE RGPD */
#contact-form .consent label {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #3f4967;
  cursor: pointer;
}


/* BOUTON */
#contact-form button {
  display: inline-block;
  padding: 16px 46px;
  background-color: transparent;
  color: #1e2b28;
  border: 1px solid #3f4967;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
}

/* HOVER LUXE */
#contact-form button:hover {
  background-color: #3f4967;
  color: #f7f6f4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #contact-form {
    padding: 35px 25px;
  }



