* {
   font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-style: normal;
}
:root {

  /* Couleurs principales */

  --green: #BDD983;
  --yellow: #F3F2D1;
  --marron: #40202D;
  --light-purple: #E3C7F5;
  --white: #FFFAF7;
}

body {
    background-color: var(--white);
        overflow-x: hidden;

}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; /* Supprime l'espace des marges externes */
  min-width: 0;

  }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  min-width: 0;
}

[class*="col-"] {
    min-height: 80px;
    padding: 0 10px;
    box-sizing: border-box;
    /* border: 1px solid red;
    background-color: rgba(255, 0, 0, 0.4); */
}

strong {
  font-weight: bold !important;
}

/* Largeur des colonnes */

.col-1 { flex-basis: 8.33%; max-width: 8.33%;}
.col-2 { flex-basis: 16.66%; max-width: 16.66%;}
.col-3 { flex-basis: 25%; max-width: 25%;}
.col-4 { flex-basis: 33.33%; max-width: 33.33%;}
.col-5 { flex-basis: 41.66%;max-width: 41.66%; }
.col-6 { flex-basis: 50%; max-width: 50%;}
.col-7 { flex-basis: 58.33%; max-width: 58.33%;}
.col-8 { flex-basis: 66.66%; max-width: 66.66%;}
.col-9 { flex-basis: 75%; max-width: 75%;}
.col-10 { flex-basis: 83.33%; max-width: 83.33%;}
.col-11 { flex-basis: 91.66%;max-width: 91.66%; }
.col-12 { flex-basis: 100%; max-width: 100%;}

.burger {
  display: none;
  cursor: pointer;
}

.burger-dev{
  display: block;
  width: 24px;
  height: 3px;
  background: #FFFAF7;
  margin: 5px 0;
}

/* MARQUEE */
/* On cache ce qui dépasse */
.track {
  overflow: hidden;
  border-radius: 0px;
  padding: 12px 0;
  background: var(--purple);
  color: var(--marron);
  font-family: "epilogue";
  font-weight: bold;
  font-size: 18px;
  border-top: 4px solid var(--marron);
  border-bottom: 4px solid var(--marron);
}

/* La liste défile grâce à l'animation */
.items {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  width: max-content;
  animation: scroll 12s linear infinite;
}

/* On met l'animation en pause au survol */
.items:hover {
  animation-play-state: paused;
}

/* L'animation : on translate de -50% car le conten est dupliqué */
@keyframes scroll {
  from { transform: translateX(0%); }
  to { transform: translateX(-50%); }
}

/* Titres */

.title {
    font-weight: 600;
    color: var(--white);
}

.type-h1 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 155px;
  text-align: center;
  position: relative;
  z-index: 0;

}
.aurore-h1 {
  font-family: "La Belle Aurore", cursive;
  text-align: center;
  display: block;
  margin-top: -30px;
  position: relative;
  z-index: 1;

}


.type-h2 {
  font-size: 80px !important;
  line-height: 0.8;
  color: var(--marron);
  text-align: center;
  font-family: "Instrument Serif", serif;
  font-style: normal;
  font-weight: 500;

}
.aurore-h2 {
    font-family: "La Belle Aurore", cursive;
    font-size: 80px !important;

}

.type-h3 {
  font-size: 42px !important;
  line-height: 1;
  margin : 0 ;
  font-family: "Instrument Serif", serif;
  display: flex;
  justify-content: center;
  padding-top: 60px;
  color: var(--marron);
  font-style: normal;
  font-weight: 400;
}
.aurore-h3 {
    font-family: "La Belle Aurore", cursive;
    color: var(--marron);
    font-size: 42px;
}

.type-h4 {
    font-size: 30px !important;
    line-height: 1.1;
  font-family: "Instrument Serif", serif;
    display: flex;
    text-align: center;

}

.type-h5 {
    font-size: 18px !important;
    line-height: 1.1;
    color: var(--cream);
}

/* Boutons */

.btn {
    position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 27px;
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}



.btn--secondary {
 background: transparent;
     position: relative;

color: var(--marron);
  border: 2px solid var(--marron);
  transition: color 0.45s ease;
}

.btn--primary {
  background: var(--light-purple);
  color: var(--marron);
  border: none;
  transition: color 0.45s ease;
}



/* HOVER */

[data-slide] .btn--primary:hover {
    color: var(--white);
}

.btn--primary:hover::after {
  height: 100%;
}

.btn--primary:hover {
  color: var(--white);
}

.btn--primary span {
  position: relative;
  z-index: 1;
}


.btn--secondary:hover::after {
  height: 100%;
}

.btn--secondary:hover {
  color: var(--white);
}

.btn--secondary span {
  position: relative;
  z-index: 1;
}

.btn--primary::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: var(--marron);
  transition: height 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}

.btn--secondary::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: var(--marron);
  transition: height 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}

/* HEADER */
header {
    position: absolute;
    width: 100%;
    z-index: 9999;
    isolation: isolate;
}


/* couleurs - hero */

body.page-light .navigation-menu__link,
body.page-light .burger {
  color: var(--yellow);
}
body.page-light .logo img.logo-marron { opacity: 0; }
body.page-light .logo img.logo-blanc  { opacity: 1; }
body.page-light .title {
  color: var(--yellow);
}

/* ── Header adaptatif ─────────────────────────── */

/* Transition douce sur liens et burger */
.navigation-menu__link,
.burger {
  transition: color 0.8s ease;
}

/* Logo — les deux versions, transition opacity */
.logo img {
  position: absolute;
  transition: opacity 0.8s ease;
}
.logo img.logo-marron { opacity: 1; }
.logo img.logo-blanc  { opacity: 0; }
.logo {
  position: relative;
  display: inline-block;
  width: 206px;
  height: 54px;
}

/* Slide 0 — champ lumineux → couleurs sombres */
body[data-slide="0"] .navigation-menu__link,
body[data-slide="0"] .burger {
  color: var(--marron);
}
body[data-slide="0"] .logo img.logo-marron { opacity: 1; }
body[data-slide="0"] .logo img.logo-blanc  { opacity: 0; }

/* Slide 1 — végétation sombre → blanc */
body[data-slide="1"] .navigation-menu__link,
body[data-slide="1"] .burger {
  color: var(--yellow);
}
body[data-slide="1"] .logo img.logo-marron { opacity: 0; }
body[data-slide="1"] .logo img.logo-blanc  { opacity: 1; }

/* Slide 2 — herbe lumineuse → sombre */
body[data-slide="2"] .navigation-menu__link,
body[data-slide="2"] .burger {
  color: var(--yellow);
}
body[data-slide="2"] .logo img.logo-marron { opacity: 0; }
body[data-slide="2"] .logo img.logo-blanc  { opacity: 1; }

/* Slide 3 — verger sombre → blanc */
body[data-slide="3"] .navigation-menu__link,
body[data-slide="3"] .burger {
  color: var(--yellow);
}
body[data-slide="3"] .logo img.logo-marron { opacity: 0; }
body[data-slide="3"] .logo img.logo-blanc  { opacity: 1; }

/***********************************************
 ***************** Navigation *****************/
.burger {
  background-color: var(--yellow);
  border-radius: 6px;
  padding: 6px 8px;
}
.navigation {
  display: flex;
  align-items: center;
  justify-content: center; /* logo centré desktop */
  position: relative;
  padding: 1rem 0;
    z-index: 9999;

}
 
/* Logo toujours centré */
.logo {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
 
/* Liens desktop (à droite) */
.navigation-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  list-style: none;
  margin-right: 20px;
  padding: 0;
  margin-left: auto;
}
 
.navigation-menu__link {
  font-family: "Instrument Serif", serif;
  font-size: 25px;
  color: var(--marron);
  text-decoration: none;
  transition: opacity 0.2s ease;
   font-weight: 400;
  font-style: italic;
color: inherit;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.4s ease;
}
 


.navigation-menu__link:hover {
  opacity: 1;
  background-size: 100% 1px;
}
 
/* Éléments exclusifs au mobile — cachés sur desktop */
.burger,
.burger-topbar,
.burger-illustration {
  display: none;
}
 

/* FOOTER */

.footer {
  background-color: var(--green);
  color: var(--marron);
  padding: 40px 0;
  font-family: "Instrument Serif", serif;
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 20px;
}

.footer .row {
  display: flex;
  align-items: flex-end;
  min-height: 400px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px;
  margin: 0;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.footer-logo {
  width: 100% !important;
  height: auto !important;
  display: block;
  max-width: 100% !important;
  min-width: 0;
margin-top: 90px;
}

.footer-legende {
  display: flex;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
  font-family: 'Satoshi', sans-serif;
  font-style: normal;
justify-content: center;
align-items: center;
}

.footer-legende p {
  font-size: 14px;
  font-style: normal;
}

.footer .col-2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 50px;
}

.footer .col-3 img {
  max-width: 100%;
  height: auto;
}

.footer .col-3 .col-6 {
display: flex;
flex-direction: column;
justify-content: flex-start;
}

.footer-infos {
  display: block;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}

.footer-infos h4,
.footer-infos h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.footer-link {
  color: var(--marron);
  text-decoration: none;
  font-style: normal;
  font-size: 16px;
}

.footer-link:hover {
  text-decoration: underline;
}

.newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 32px;
  text-decoration: none;
  color: var(--marron);
  margin-top: 0;
}

.newsletter-title .arrow {
  border: 2px solid var(--marron);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 20px;
}

.newsletter-mail {
  font-size: 18px;
  color: var(--marron);
  text-decoration: none;
  border-bottom: 1px solid var(--marron);
  padding-bottom: 4px;
  width: fit-content;
}

.footer-catchphrase {
  font-size: 14px;
  font-style: italic;
  color: var(--marron);
  text-decoration: none;
}

.illustration-sac{
  position: relative;
  top: 60px; 
  right: 0px;
  width: 211px;
  height: 193px;
  pointer-events: none;
}

.footer-social{
  display: inline-block;
  width: auto;
    text-decoration: none;
    font-size: 18px !important;
    line-height: 1.1;
    color: var(--marron);
    font-weight: 500;
    margin-left: 20px;
    position: relative;
color: inherit;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.4s ease;
}


.footer-social:hover {
  background-size: 100% 1px;
}


.newsletter-form {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  border-bottom: 1px solid var(--marron);
  padding-bottom: 4px;
  width: fit-content;
}

.newsletter-mail {
  font-size: 18px;
  color: var(--marron);
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  min-width: 250px;
}

.newsletter-mail::placeholder {
  color: var(--marron);
  opacity: 0.5;
}

.newsletter-submit {
  background: transparent;
  border: none;
  color: var(--marron);
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease, color 0.3s ease;

}

.newsletter-submit:hover {
  transform: translateX(6px);
  color: var(--marron);
  cursor: pointer;
}















/***********************************************
 ***************** HOME *****************/

.section-hero .row{
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
}

.hero-content__catchphrase{
    color: var(--marron);
    font-style: italic;
    font-size: 70px;
    text-align: center;
}

.hero-content .aurore-h1 {
  color: var(--white);
  font-size: 97px;
}

.hero-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 280px;
}

.hero-content span{
  font-style: italic;
  
}

.hero__cta{
  margin-left: 0;
  margin-top: 20px;
}


/* ── Hero Slideshow ───────────────────────────── */

.section-hero {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Slides en pseudo-layers */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Images */
.hero-slide:nth-child(1) { background-image: url("../styles/assets/home/img/img-hero.png"); }
.hero-slide:nth-child(2) { background-image: url("../styles/assets/home/img/img-hero2.png"); }
.hero-slide:nth-child(3) { background-image: url("../styles/assets/home/img/img-hero3.png"); }
.hero-slide:nth-child(4) { background-image: url("../styles/assets/home/img/img-hero4.png"); }

/* Contenu au-dessus des slides */
.section-hero .row {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}

/* Transition couleur texte + bouton */
.hero-content, .btn--primary {
  transition: color 0.8s ease, border-color 0.8s ease;
}

/* ── Couleurs hero par slide ──────────────────── */
body[data-slide="0"] .hero-content { color: var(--yellow); } /* champ lumineux */
body[data-slide="1"] .hero-content { color: var(--yellow); } /* végétation sombre */
body[data-slide="2"] .hero-content { color: var(--yellow); } /* herbe lumineuse */
body[data-slide="3"] .hero-content { color: var(--yellow); } /* verger sombre */

/* ── Bouton CTA adaptatif ─────────────────────── */
body[data-slide="0"] .btn--primary,
body[data-slide="2"] .btn--primary {
  border-color: var(--marron);
  color: var(--marron);
}
body[data-slide="1"] .btn--primary,
body[data-slide="3"] .btn--primary {
  color: var(--marron);
}







    /* Zone sticky : la section colle pendant que l'utilisateur scrolle */
    .lua-sticky-wrap {
      position: relative;
      height: 300vh; /* hauteur de la "piste" de scroll */
    }
 
    .lua-sticky-inner {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .intro-texte {
      font-family: "Instrument Serif", serif;
      font-size: 41px;
      font-weight: 500;
      text-align: center;
      font-style: normal;
      line-height: 1.45;
      max-width: 680px;
      padding: 0 24px;
    }
 
    /* ─── Mots ─── */
    .lua-word {
      display: inline-block;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
 
    .lua-word.visible {
      opacity: 1;
      transform: translateY(0);
    }
 
    .lua-word.em {
      font-style: italic;
      position: relative;
    }
 
    .lua-word.em::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 0%;
      height: 1px;
      background: currentColor;
      opacity: 0.3;
      transition: width 0.5s ease;
    }
 
    .lua-word.em.ul::after {
      width: 100%;
    }
 
    .after-mock {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: sans-serif;
      font-size: 13px;
      letter-spacing: 0.06em;
      color: #bbb;
    }
 
/* LUA SAC */

.section-titre-page {
    background-color: var(--white);
    padding-left: 40px;
    position: relative;
}


.section-titre-page .type-h2 {
    margin: 0;
    color: var(--marron);
}

.illustration-bouquet-1 {
    position: absolute;
    top: -82px;
    right: -85px;
    height: auto;
    z-index: 2;

}


/* ─── Section intro ─── */
    .section-intro {
      padding-top: 0px;
      padding-bottom: 30px;
    }
 
    .intro-content {
      padding: 120px 0px;
    }
 
.illustration-bouquet-2{
  position: absolute;
  top: -82px;
  left: -90px;
  height: auto;
  z-index: 2;
}

.section-elegance {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.elegance-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.section-elegance .container {
    position: relative;
    z-index: 1;
}

.elegance-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-left: 30px;
}

.elegance-content .type-h3 {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
    color: var(--marron);
    text-align: left;
    gap: 0;
}

.elegance-texte {
  font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    color: var(--marron);
    max-width: 480px;
    line-height: 1.2;
}




/* VALEURS */
.section-valeurs {
  background-color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.section-valeurs .type-h2 {
  margin: 0;
}

.texte-valeurs {
  font-family: "La Belle Aurore", cursive;
  font-size: 32px;
  color: var(--marron);
  text-align: center;
  line-height: 1.5;
  margin: 30px auto 80px;
  max-width: 800px;
}

.section-valeurs ul.row {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-valeurs ul.row .col-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.section-valeurs__img {
  width: auto;
  height: 140px;
  margin-bottom: 20px;
}

.section-valeurs .type-h3 {
  flex-direction: column;
  padding-top: 0;
  gap: 0;
  color: var(--marron);
}

.section-valeurs .aurore-h3 {
  display: block;
}

.type-paragraph {
  font-family: 'Satoshi', sans-serif;
  font-style: normal;
  font-size: 16px;
  color: var(--marron);
  max-width: 320px;
  line-height: 1.4;
}

.section-valeurs .cta {
  margin-top: 60px;
}


/* ATELIERS */

.section-ateliers {
  background-color: var(--light-purple);
  position: relative;
  padding: 170px 20px;
  overflow: visible;
  margin-top: 70px;
}

.section-ateliers > .container > .row > img {
  position: absolute;
  top: -120px;
  left: -8px;
  width: 682px;
  max-width: 40%;
  height: auto;
  z-index: 2;
}

.section-ateliers .row {
  align-items: center;
}

.atelier-texte {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 100px;
  text-align: center;
}

.titre-ateliers {
  font-family: "Instrument Serif", serif;
  font-style: normal;
  font-size: 64px;
  font-weight: 400;
  color: var(--marron);
  margin: 0;
  display: flex;
  flex-direction: column;
}

.aurore-atelier {
  font-family: "La Belle Aurore", cursive;
  font-size: 36px;
  font-weight: 400;
}

.atelier-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.atelier-illustration img {
  width: 100%;
  height: auto;
}

.btn--secondary {
  border: 2px solid var(--marron);
  color: var(--marron);
  font-family: "Satoshi", sans-serif;
  font-size: 16px;
  font-weight: 600;
  width: fit-content;
}

.btn--secondary:hover {
  background-color: var(--marron);
  color: var(--white);
}

/* REDIRECTION */


.redirection-card {
  position: relative;
  flex-basis: 33.333%;
  max-width: 33.333%;
  height: 70vh;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.redirection-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.redirection-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--marron);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  text-decoration: underline;
}

.redirection-card:nth-child(1) .redirection-overlay { background-color: var(--yellow); }
.redirection-card:nth-child(2) .redirection-overlay { background-color: var(--light-purple); }
.redirection-card:nth-child(3) .redirection-overlay { background-color: var(--marron); }

.redirection-titre {
  position: relative;
  z-index: 3;
  color: var(--white);
  margin: 0;
  text-align: center;
  transition: color 0.4s ease;
}

.redirection-card:hover .redirection-img {
  opacity: 0;
}

.redirection-card:hover .redirection-overlay {
  opacity: 1;
}

.redirection-card:hover .redirection-titre {
  color: var(--marron);
  text-decoration: 2px underline;
}

.redirection-card:nth-child(3):hover .redirection-titre {
  color: var(--white);
}











/***********************************************
 ***************** PAGE PRODUIT *****************/
.intro-lua1-content h2{
  color: var(--marron) !important;
}

.intro-lua1{
  padding-top: 120px;
  padding-bottom: 50px;
}

.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .product-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
  }

  /* ----- Colonne gauche : galerie qui défile ----- */
  .gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .gallery img {
    width: 100%;
    display: block;
    border-radius: 4px;
    object-fit: cover;
  }
  .gallery img:nth-child(1),
  .gallery img:nth-child(2) {
    aspect-ratio: 4 / 5;
  }
  .gallery img:nth-child(3),
  .gallery img:nth-child(4) {
    aspect-ratio: 3 / 2;
  }

  /* ----- Colonne droite : sticky ----- */
  .info-col {
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .product-title {
    text-align: center;
  }
  .product-title h1 {
    font-size: 32px;
    margin: 0;
    letter-spacing: 1px;
    font-family: "Instrument Serif", serif;

  }
  .product-title .subtitle {
  font-family: "Instrument Serif", serif;
    font-style: italic;
    font-size: 20px;
    color: var(--marron);
    margin: 4px 0 8px;
  }
  .product-title .price {
    font-size: 14px;
    color: var(--marron);
    margin: 0;
      font-family: "Satochi", sans-serif;

  }

  /* Image principale du sac (change selon l'angle choisi) */
  .main-image-wrap {
    background: transparent;
    border-radius: 4px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
  }
  .main-image-wrap img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    transition: opacity 0.2s ease;
  }
  .main-image-wrap img.fading {
    opacity: 0;
  }

  /* Vignettes des angles */
  .angles {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .angle-btn {
    width: 64px;
    height: 64px;
    padding: 4px;
    border: 1px solid var(--marron);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s ease;
  }
  .angle-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
  }
  .angle-btn:hover {
    border-color: #999;
  }
  .angle-btn.active {
    border-color: #1a1a1a;
  }
  /* titres */
.product-title h2{
    color: var(--marron) !important;
}

  /* Détails */
  .details h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--marron);

  }
  .details ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: var(--marron);
    line-height: 1.5;
  }

  /* CTA */
  .cta-wrap {
    text-align: center;
  }
  
  /* ----- dimensions produits ----- */

.section-information {
  padding-bottom: 80px;
  padding-top: 60px;
}

.section-information .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.section-information .row {
  display: flex;
  flex-direction: column;
}

/* Titres */
.section-information .title.type-h4 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--marron);
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

/* Texte courant */
.section-information .type-paragraph {
  font-family: "Satochi", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--marron);
  margin: 0;
  white-space: pre-line;
}

/* ─── Blocs info (texte + séparateur) ─── */
.section-information .information-texte {
  padding: 30px 0px;
  border-bottom: 1px solid var(--marron);
}

.section-information .information-texte:last-child {
  border-bottom: none;
}

.section-information .information-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
}

/* ─── Colonnes 50/50 ─── */
.section-information .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.section-information .info-content-1 {
  display: flex;
  align-items: stretch;
  min-height: 380px;
}

.section-information .info-content-1 > .col-6:first-child {
  background-color: var(--color-cream);
}

.section-information .info-content-1 > .col-6:last-child {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-information .info-content-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-information .info-content-2 {
  display: flex;
  align-items: stretch;
  min-height: 380px;
}

.section-information .info-content-2 > .col-6:first-child {
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 10px;
  order: 2;
}

.section-information .info-content-2 > .col-6:last-child {
  background-color: var(--color-cream);
  order: 1;
}

.section-information .info-content-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Liste Livraisons & retours ─── */
.section-information ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-information ul li {
  font-family: "Satochi", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--marron);
  margin-bottom: 0.4rem;
}

/* Liens soulignés dans la liste */
.section-information ul li:nth-child(2),
.section-information ul li:nth-child(4) {
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}







/***********************************************
 ***************** PAGE CONTACT *****************/

header.over-hero .navigation-menu__link,
header.over-hero .burger {
  color: var(--yellow);
}
header.over-hero .logo img.logo-marron { opacity: 0; }
header.over-hero .logo img.logo-blanc  { opacity: 1; }

.section-hero--secondary {
  width: 100%;
  height: 665px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

 .section-contact {
    padding: 80px 0;
}

.contact-box {
    background-color: var(--green);
    border-radius: 12px;
    padding: 50px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    width: 1340px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-form-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.contact-form-col .type-h3 {
  display: block;
  white-space: normal;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: "Instrument Serif", serif;
    color: var(--marron);
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--marron);
    padding: 8px 0;
    font-family: 'Satoshi', sans-serif;    
    font-size: 16px;
    color: var(--marron);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--marron);
    opacity: 0.7;
    font-style: italic;
}

.contact-form textarea {
    border: 1px solid var(--marron);
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    min-height: 130px;
    resize: vertical;
}

.contact-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    font-family: 'Satoshi', sans-serif;
    font-size: 12px;
    color: var(--marron);
    line-height: 1.3;
}

.contact-checkbox input {
    margin-top: 2px;
}


.contact-image-col {
    flex: 1;
    position: relative;
}

.contact-image-col img:first-child {
    width: 100%;
    border-radius: 8px;
    display: block;
    width: 424px;
    height: 711px;
    max-width: 100%;
}

.contact-illustration {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 110px;
    height: 110px;
    background-color: var(--white);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 1px var(--marron);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-illustration img {
    width: 50px;
}

.section-mot-fin{
padding: 80px 40px;
}

.mot-fin-img-col {
  position: relative;
}

.mot-fin-bouquet {
  position: absolute;
  top: -140px;
  right: -163px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.mot-fin-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

.mot-fin-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px;
}

.mot-fin-titre {
  display: block !important;
  white-space: normal;
  justify-content: flex-start !important;
  padding-top: 0 !important;
}
.mot-fin-textes {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  margin: 20px 0;
}

.signature-equipe {
  display: block;
  margin-left: auto;
  margin-top: auto;
}








/***********************************************
 ***************** PAGE UNIVERS *****************/
.section-fondatrices{
  background-color: var(--yellow);
}

.section-fondatrices {
  background-color: var(--yellow);
  padding: 80px 0;
}

.section-fondatrices .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-fondatrices .row {
 display: flex;
flex-direction: row;
  align-items: center;
}

.section-fondatrices .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0;
}

.fondatrices-img {
 width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fondatrices-img:hover {
  transform: scale(1.03) rotate(2deg);
}

.fondatrices-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fondatrices-content img {
  height: auto;
}

.fondatrices-content .type-h3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--marron) !important;
  gap: 0;
  margin: 0;
  padding-top: 0 !important;
}


/* marquee */
.marquee-wrapper {
      width: 100%;
      overflow: hidden;
      padding-top: 120px;
      padding-bottom: 120px;

    }
 
.marquee-track {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      width: max-content;
      animation: scroll 30s linear infinite;
    }
 
.marquee-track:hover {
      animation-play-state: paused;
    }
 
.marquee-track img {
      height: auto;
      width: 260px;
      object-fit: cover;
      display: block;
      flex-shrink: 0;
    }



/* SECTION ZOOM FONDATRICES. */
.section-zoom-fondatrices{
  padding: 80px 40px;
}

.prenom-fondatrices{
    font-family: "La Belle Aurore", cursive;
    font-size: 42px;
    color: var(--marron);
    bottom: 16px;
  background: var(--couleur-fond);
  padding: 2px 10px;
  display: inline-block;
}

.fonction-fondatrices{
   font-family: "Satoshi", sans-serif;
    font-size: 18px;
    color: var(--marron);
    font-weight: 600;
}

.texte-fondatrices{
  font-family: "Satoshi", sans-serif;
    font-size: 18px;
    color: var(--marron);
right: 24px;
}

.col-4 {
  position: relative;
  overflow: hidden;
}

.zoom-fondatrices-img {
  width: 100%;
  height: auto;
  display: block;
}

.prenom-fondatrices,
.fonction-fondatrices,
.texte-fondatrices {
  position: absolute;
  left: 24px;
  margin: 0;
  transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* positions par défaut (sans hover) */
.prenom-fondatrices  { bottom: 48px; }
.fonction-fondatrices {
  bottom: 16px;
  background: var(--couleur-fond);
  padding: 2px 10px;
  display: inline-block;
}

/* texte caché en dessous par défaut */
.texte-fondatrices {
  bottom: -200px; /* hors de l'image */
  background: var(--couleur-fond);
  padding: 12px 14px;
  opacity: 0;
  transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

/* couleurs */
.col-4:nth-child(1) { --couleur-fond: var(--green); }
.col-4:nth-child(2) { --couleur-fond: var(--yellow); }
.col-4:nth-child(3) { --couleur-fond: var(--light-purple); }

/* hover : tout monte, texte apparaît */
.col-4:hover .prenom-fondatrices  { bottom: 200px; }
.col-4:hover .fonction-fondatrices { bottom: 168px; }
.col-4:hover .texte-fondatrices {
  bottom: 16px;
  opacity: 1;
}



/*-- SECTION SCHEMA-->*/

.section-schema{
background-color: var(--yellow);
padding: 120px;
}

.section-schema h2{
  color: var(--marron) !important;
}


/*-- SECTION HISTOIRE-->*/

.section-histoire {
  padding-top: 60px;
}
.section-histoire .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.section-histoire h2.type-h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--marron) !important;
}

.section-histoire .col-6 {
  padding: 0;
}

.section-histoire .aurore-h3 {
  display: block !important;
}

.section-histoire .type-h3 {
  text-align: center;
  color: var(--marron) !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
/* ─── Bloc 50/50 ─── */
.histoire-content {
  display: flex;
  align-items: stretch;
  min-height: 380px;
  gap: 0;
}
.histoire-content .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Colonne image */
.histoire-content .col-6.col-img {
  overflow: hidden;
}
.histoire-content .col-6.col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Colonne texte */
.histoire-content .col-6.col-texte {
  display: flex;
  align-items: center;
  padding: 40px 24px;
}
.histoire-content .histoire-texte {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.histoire-texte .type-paragraph{
  max-width : 600px;
}
h3.title.type-h3.bloc-2#titre-special {
  color: var(--yellow) !important;
}
.histoire-content:nth-child(1) .col-texte { background-color: var(--green); }
.histoire-content:nth-child(2) .col-texte { background-color: var(--marron); }
.histoire-content:nth-child(3) .col-texte { background-color: var(--light-purple); }

.histoire-content:nth-child(2) .col-texte .title,
.histoire-content:nth-child(2) .col-texte .aurore-h3,
.histoire-content:nth-child(2) .col-texte .type-paragraph {
  color: var(--yellow);
}

.histoire-content:nth-child(1) .col-texte { order: 1; }
.histoire-content:nth-child(1) .col-img   { order: 2; }

.histoire-content:nth-child(2) .col-img   { order: 1; }
.histoire-content:nth-child(2) .col-texte { order: 2; }

.histoire-content:nth-child(3) .col-texte { order: 1; }
.histoire-content:nth-child(3) .col-img   { order: 2; }












/***********************************************
 ***************** PAGE ENGAGEMENTS *****************/

.titre-engagements{
  color: var(--yellow)!important; 
}


 /* valeurs */
.section-zoom-valeurs .row {
  display: flex;
  gap: 15px;
}

.section-zoom-valeurs{
  padding: 40px 40px;
}

.section-zoom-valeurs .col-4 {
  flex: 0 0 calc(33.33% - 11px);
  max-width: calc(33.33% - 11px);
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.zoom-valeurs-img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.4s ease;
}

.card-default {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 24px;
  transition: opacity 0.3s ease;
}

.card-default .type-h3 {
  color: var(--yellow);
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-default .aurore-h3 {
  color: var(--yellow);
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 32px;
  opacity: 1;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.section-zoom-valeurs .col-4:nth-child(1) .card-overlay { background-color: var(--yellow); }
.section-zoom-valeurs .col-4:nth-child(2) .card-overlay { background-color: var(--green); }
.section-zoom-valeurs .col-4:nth-child(3) .card-overlay { background-color: var(--light-purple); }

.card-overlay .type-h3 {
  color: var(--marron);
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-overlay .aurore-h3 {
  color: var(--marron);
}

.card-overlay .type-paragraph {
  color: var(--marron);
  text-align: center;
  margin: 0;
}

.valeurs__icone {
  width: 100px;
  height: auto;
}

/* Hover */

.section-zoom-valeurs .col-4:hover .card-overlay {
  transform: translateY(0);
}

 /* fabrication */

.section-fabrication{
  background-color: var(--yellow);
  padding: 120px;
}

.img-fabrication-schema{
  padding-top: 50px;
}

.img-mobile {
  display: none;
}

 /* intro */

.texte-intro-engagements{
font-family: "La Belle Aurore", cursive;
font-size: 42px;
color: var(--marron);
text-align: center;
padding-top:230px;
padding-bottom:230px;

}



 /* synderme */

.section-synderme .container {
  position: relative;
    overflow: visible;

}

.bouquet-synderme{
position: absolute;
top: -306px;
left: -180px;
z-index: 10;
}

.section-synderme {
  background-color: var(--light-purple);
  padding: 120px 0;
  position: relative;
  overflow: visible;
  z-index: 0;

}

.section-synderme .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Bouquet en haut à gauche */
.section-synderme::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-image: url('styles/assets/univers/bouquet-2.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

/* Titre centré */
.section-synderme .col-12 {
  text-align: center;
  margin-bottom: 60px;
}

.section-synderme h2.type-h2 {
  color: var(--marron);
  margin-bottom: 12px;
}

.definition-synderme {
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-style: italic;
  color: var(--marron);
  line-height: 1.2;
  margin-top: 10px;
}

/* Row */
.section-synderme .row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

/* Colonnes */
.section-synderme .col-5 {
  flex: 0 0 41.66%;
  max-width: 41.66%;
  padding: 0;
}

.section-synderme .col-1 {
  flex: 0 0 8.33%;
  max-width: 8.33%;
}

.section-synderme .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0;
}

/* Image */
.synderme-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* Blocs texte */
.synderme-textes {
  margin-bottom: 65px;
}

.synderme-textes:last-child {
  margin-bottom: 0;
}

.synderme-textes .type-h3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--marron);
  margin: 0 0 16px 0;
  gap: 0;
  padding-top: 0px !important;
}

.synderme-textes .type-paragraph {
  color: var(--marron);
  white-space: pre-line;
  max-width: 629px !important;

}

.fabrication{
  padding-top: 0 !important;
}
 /* voyage */


.section-voyage {
  padding: 100px 140px;
  background-color: var(--color-cream);
  position: relative;
}

.section-voyage .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-voyage h2.type-h2 {
  text-align: center;
  color: var(--marron);
  margin-bottom: 60px;
}

.section-voyage .row {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.section-voyage .col-6 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
}

.voyage-content img {
  width: 100%;
  display: block;
  margin-left: 318px;
}

.voyage-escales {
  position: absolute;
  top: 20%;
  left: 0;
  background-color: var(--green);
  padding: 32px 28px;
  width: 280px;
  transform: rotate(-3deg);
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.voyage-escales:hover {
  transform: rotate(0deg) translateY(-8px);
}

.voyage-escales h3 {
  font-family: "Instrument Serif", serif;
  font-size: 42px;
  color: var(--marron);
  text-align: center;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.voyage-escale-item {
  margin-bottom: 14px;
}

.voyage-escale-item strong {
  font-family: "Satoshi", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--marron);
  display: block;
}

.voyage-escale-item span {
  font-family: "Satoshi", sans-serif;
  font-size: 13px;
  color: var(--marron);
  display: block;
}
/***********************************************
 ***************** MENTIONS LEGALES *****************/


html {
    scroll-behavior: smooth;
  }

.section-legal{
  background-color: var(--light-purple);
    text-align: left;
padding-left: 20px;
padding-bottom: 50px;
padding-top: 140px;
}

.section-legal  h1 {
    font-family: 'Instrument Serif', serif;
    font-size: 80px;
    font-style: normal;
    margin-bottom: 40px;
  }

.section-legal  h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.8rem;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--marron);
    scroll-margin-top: 30px;
  }

.section-legal  h3 {
    font-weight: 500;
    font-size: 40px;
    margin-top: 24px;
    color: var(--marron);
    font-style: italic;

  }

  .section-legal  h4 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 24px;
    color: var(--marron);
  }

.section-legal  p, li {
    color: var(--marron);
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;

  }

.section-legal  a {
    color: var(--marron);
    text-decoration: underline;
  }

.section-legal  .signature {
     font-family: 'La Belle Aurore', cursive;
  font-size: 1.6rem;
  margin-top: 80px;
  text-align: right;
  }








  
/***********************************************
 ***************** RESPONSIVE MOBILE *****************/

@media (max-width: 768px) {

  /* === GLOBAL === */
   .container {
    padding: 0 16px;
    box-sizing: border-box;
    overflow: visible;
  }

  [class*="col-"] {
    flex-basis: 100% !important;
    max-width: 100% !important;
    min-height: unset;
  }

  .row {
    margin: 0 !important;
  }

  .section-hero--secondary {
    height: 400px;
  }

  /* === TYPOGRAPHIE === */
  .type-h1 { font-size: 52px;
      line-height: 1; }
  .aurore-h1 { font-size: 38px !important;
      margin-top: -10px;
 }
  .type-h2 { font-size: 60px !important; }
   .aurore-h2 { font-size: 50px !important;
      margin-top: -10px;}
  .type-h3 { font-size: 30px !important; padding-top: 40px; }
  .aurore-h3 { font-size: 30px !important;}
  .type-h4 { font-size: 26px !important; }

  .intro-texte {
    font-size: 32px;
  }

  .type-paragraph{
  font-size: 16px;
  }
  .intro-page-projet {
    font-size: 36px;
    padding-top: 30px;
  }

  .btn{ 
    font-size: 16px;
  }

  /* === HEADER === */
.burger {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
  }
 
  .burger {
    background-color: var(--yellow);
    border-radius: 6px;
    padding: 2px 10px;
    
  }
  /* Masque les liens desktop */
  .navigation-menu > li {
    display: none;
  }
 
  /* ── Overlay menu ── */
  .navigation-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 78vh;
    z-index: 200;
    background: var(--light-purple);
    border-radius: 0 0 28px 28px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    margin: 0;
 
    /* Caché par défaut — glisse depuis le haut */
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity   0.3s ease;
  }
 
  .navigation-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
 
  /* Quand le menu est ouvert, les li redeviennent visibles */
  .navigation-menu.active > li {
    display: block;
  }
 
  /* ── Barre du haut dans le menu ── */
  .burger-topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1rem 1rem 0;
    flex-shrink: 0;
  }
 
  .burger-logo {
    display: block;
  }
 
  .burger-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
  }
 
    header .container,
  header .row,
  header .col-12 {
    overflow: visible !important;
  }
  /* Conteneur des liens (les <li>) */
  .navigation-menu > li {
    position: static;
  }
 
  /* Position des liens dans le menu */
  .navigation-menu.active {
    /* Les li sont affichés en colonne à droite */
    display: flex;
  }
 
  /* Liens : alignés à droite, centrés verticalement */
  .navigation-menu > li {
    margin-left: auto;
    padding-right: 1.5rem;
  }
 
  /* On pousse les liens vers le bas */
  .navigation-menu > li:first-of-type {
    margin-top: auto;
  }
  .navigation-menu > li:last-of-type {
    margin-bottom: auto;
  }
 
  .navigation-menu__link {
     font-family: "Instrument Serif", serif !important;
    font-size: clamp(1.3rem, 5vw, 1.6rem) !important;
    font-weight: 400;
    font-style: normal;
    color: var(--marron) !important;
    display: block;
    text-align: right;
    padding: 0.55rem 0;
    text-decoration: none;
  }
 
  /* ── Illustration sac ── */
  .burger-illustration {
    display: block;
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 42%;
    max-width: 200px;
    pointer-events: none;
  }

   .navigation-menu__link:hover {
    opacity: 1; /* annule l'ancien opacity:0.6 */
    background-size: 100% 1px;
  }
 
.navigation {
    overflow: visible;
    min-height: 54px; /* hauteur du logo pour éviter le collapse */
  }

  /* Scroll bloqué quand le menu est ouvert */
  body.menu-open {
    overflow: hidden;
  }

  /************ === HOME === ************/


  /* === HERO === */
  .section-hero {
    height: auto;
    min-height: 100vh;
    padding-bottom: 60px;
  }

  .section-hero .row {
   align-items: center !important;
    padding-top: 0 !important;
    min-height: 100vh;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    margin-bottom: 0px !important;
  }

  .hero-content__catchphrase {
    font-size: 36px;
  }

  .hero_photo {
    margin-left: 0;
    width: 100%;
  }

   .hero__cta {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero__cta .btn {
    width: fit-content;
  }

  /* === INTRO === */
  .intro-content {
    padding: 60px 0;
  }
.section-titre-page h2{
  padding-bottom: 20px;
}

    .section-intro {
      padding-top: 0px;
      padding-bottom: 30px;
    }
 
    .intro-content {
      padding: 120px 0px;
    }
 
    .illustration-bouquet-2{
      position: absolute;
      top: -92px;
      left: -100px;
      height: auto;
      z-index: 2;
    }

    .illustration-bouquet-1 {
    position: absolute;
    top: -82px;
    right: -135px;
    height: auto;
    z-index: 2;

}
  /* === VALEURS === */

.section-valeurs {
    padding: 60px 16px;
  }

  .texte-valeurs {
    font-size: 24px;
    margin: 20px auto 40px;
    line-height: 1;
  }

  .section-valeurs ul.row {
    flex-direction: column;
    gap: 50px;        /* espace entre chaque valeur */
  }

  .section-valeurs ul.row .col-4 {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }

  /* === ATELIERS === */
.section-ateliers {
    padding: 60px 16px;
    margin-top: 40px;
    overflow: visible; 
  }

  .section-ateliers > .container > .row > img {
    position: absolute;
    top: -60px;
    left: -10px;
    width: 420px;
    max-width: none;
  }

  .section-ateliers .row {
    flex-direction: column;
    gap: 40px;
  }

  .atelier-texte {
    margin-top: 130px; 
    gap: 25px;
  }

  .titre-ateliers {
    font-size: 40px;
  }

  .aurore-atelier {
    font-size: 26px;
  }

  .atelier-illustration img {
    width: 130%;
  }


  /* === REDIRECTIONS === */

 .section-redirections .row {
    flex-direction: column;
     margin: 0;
    padding: 0;

  }

  .section-redirections {
    padding: 0;
  }

.redirection-titre {
    text-decoration: underline;
    text-underline-offset: 6px;
  }
  .redirection-card {
   flex-basis: 100% !important;
    max-width: 100% !important;
    width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1; 
    padding: 0;
  }
  /* === FOOTER === */

  .footer-container .row {
    display: flex;
    flex-wrap: wrap;
  align-items: flex-start;
    gap: 2rem;
  }

  .col-3:first-child {
    order: 1;
    width: 40%; 
    align-self: flex-start;
  }

  .illustration-sac-wrapper {
    height: auto;
    width: 100%;
  }

  .col-6 {
    order: 2;
    width: 100%;
  }

  .col-12:has(.footer-content) {
    order: 3;
    width: 100%;
  }

  .footer-logo {
    width: 100%;
    max-width: none;
    margin-top: 40px;
  }

.footer-social{
  margin: 0;
}

.footer-content{
  padding: 0;
}

  .footer-legende {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
  }

  .illustration-sac{
    padding-bottom: 40px;
  }

  /* === PAGE UNIVERS === */
.section-zoom-fondatrices {
    padding: 40px 16px;
  }

  .section-zoom-fondatrices .row {
    flex-direction: column;
    gap: 24px;
  }

  .col-4:hover .prenom-fondatrices  { bottom: 48px; }
  .col-4:hover .fonction-fondatrices { bottom: 16px; }
  .col-4:hover .texte-fondatrices {
    bottom: -200px;
    opacity: 0;
  }

  .prenom-fondatrices  { 
    bottom: 200px !important;
    transition: none;
  }
  .fonction-fondatrices { 
    bottom: 168px !important;
    transition: none;
  }
  .texte-fondatrices {
    bottom: 16px !important;
    opacity: 1 !important;
    transition: none;
    font-size: 16px;
  }

  /* === PAGE CONTACT === */
.section-contact {
    padding: 40px 16px;
  }

  .contact-box {
    flex-direction: column;  /* empile le form et l'image */
    padding: 30px 20px;
    gap: 30px;
  }

  .contact-form-col {
    width: 100%;
  }

  /* Image en dessous et plus petite */
  .contact-image-col {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .contact-image-col img:first-child {
    width: 60%;        /* plus petite qu'en desktop */
    height: auto;      /* hauteur automatique proportionnelle */
  }

  .mot-fin-content{
    min-height: 0px;
  }

    /* === PRODUIT - LUA -  === */

    .product-layout {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .info-col {
      position: static;
    }

    .section-information .info-content-1,
  .section-information .info-content-2 {
    flex-direction: column;
  }

  .section-information .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .section-information .info-content-2 > .col-6:first-child {
    order: 1;
    min-height: 280px;
  }

  .section-information .info-content-2 > .col-6:last-child {
    order: 2;
  }

  /* SLIDER */
.intro-lua1 {
    padding-top: 80px;
    padding-bottom: 30px;
  }

  .page {
    padding: 20px 0;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gallery {
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding: 0;
    scrollbar-width: none; 
  }

  .gallery::-webkit-scrollbar {
    display: none; 
  }

  .gallery img {
    flex: 0 0 100vw;
    width: 100vw;
    height: 70vw;
    object-fit: cover;
    border-radius: 0;
    scroll-snap-align: start;
    aspect-ratio: unset;
  }

  .info-col {
    position: static;
    padding: 20px 16px;
  }



    /* === PAGE ENGAGEMENTS === */

  /* Cards valeurs */
.section-zoom-valeurs {
    padding: 20px 16px;
  }

  .section-zoom-valeurs .row {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .section-zoom-valeurs .col-4 {
    position: sticky;
    top: 0;
    width: 100% !important;
    max-width: 100% !important;
    cursor: pointer;
  }

  .section-zoom-valeurs .col-4:nth-child(1) { top: 10px;  z-index: 1; }
  .section-zoom-valeurs .col-4:nth-child(2) { top: 20px; z-index: 2; }
  .section-zoom-valeurs .col-4:nth-child(3) { top: 40px; z-index: 3; }

  .zoom-valeurs-img {
    display: none;
  }

  .card-default {
    display: none;
  }

  .section-zoom-valeurs .col-4:hover .card-overlay {
    transform: translateY(100%);
  }

  .card-overlay {
    position: relative;
    transform: translateY(0) !important;
    inset: unset;
    width: 100%;
    min-height: 85vh;  
    padding: 40px 24px;
    box-sizing: border-box;
  }
  /* INTRO */

.texte-intro-engagements{
font-size: 30px;
padding-top: 120px;
padding-bottom: 120px;

}

  /* SYNDERME */

.bouquet-synderme{
  position: absolute;
  top: -252px;
  left: -114px;
  z-index:10
}

.synderme-textes{
padding-top: 20px;
margin-bottom: 18px
}
.definition-synderme{
  font-size: 16px;
}


  /* fabrication */

 .img-desktop {
    display: none;
  }

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

  /* voyage du lua */
.section-voyage {
    padding: 60px 16px;
  }

  .section-voyage .row {
    flex-direction: column;
    gap: 10px;
  }

  .voyage-content img {
    width: 100%;
    margin-left: 0;
  }

  .voyage-escales {
    position: relative;
    top: unset;
    left: unset;
    width: 72%;
    transform: rotate(-2deg);
    box-sizing: border-box;
  }

  .voyage-escales:hover {
    transform: rotate(0deg) translateY(-4px);
  }

  .voyage-escales h3 {
    font-size: 30px;
  }
  .section-voyage .col-6 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .voyage-escales {
    order: 1;
  }

  .voyage-content {
    order: 2;
  }

}


