/* Tout le texte en Quicksand */
body, p, a, li {
    font-family: "Quicksand", sans-serif;
}

/* Titres en Cormorant Garamond */
h1, h2, h3, h4, h5, h6 {
    font-family: "Cormorant Garamond", sans-serif;
}

.h1{
    line-height: 1.6;
}

.h2{
    line-height: 1.6;
}

.h3{
    line-height: 0.5;
}

/* Style du menu */
body {
    margin: 0;
    padding-top: 80px;
    font-family: "Quicksand", sans-serif;
    overflow-x: hidden; /* BUGFIX: évite le scroll horizontal parasite sur mobile */
}



header {
  background: #A8AD92;
  width: 100%;            /* ← prend toute la largeur */
  min-height: 80px;        /* BUGFIX: min-height au lieu de height fixe pour laisser le menu passer sur 2 lignes en mobile sans être coupé */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding-top: 0;
  padding-left: 20px;     /* espace à gauche pour le menu */
  padding-right: 20px;
  border-radius: 0; /* arrondi en bas seulement */
  margin-top: 0;
  box-shadow: 0 4px 80px rgba(0,0,0,0.5);

  /* pour centrer verticalement le menu dans la barre */
  display: flex;
  align-items: center;
  box-sizing: border-box; /* BUGFIX: le padding ne fait plus déborder la largeur totale de 100% */
}

.menu ul {
  list-style: none;
  display: flex;
  flex-direction: row;    /* ← menu horizontal */
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 30px;              /* espace entre les liens */
  flex-wrap: wrap;        /* BUGFIX: permet au menu de passer à la ligne au lieu de déborder sur petit écran */
  row-gap: 8px;
}

.menu li {
  margin: 0;
  transition: transform 0.2s ease;
}

.menu li:hover {
  transform: translateY(-3px); /* petit effet vers le haut */
}

.menu a {
  color: #E9E9E9;
  text-decoration: none;
  font-weight:normal;
  transition: color 0.3s;
}


.menu a:hover {
    color: #C9F27C;
}

/* ---- Scrollbar fine, arrondie, avec glow/blur ---- */

/* Pour Chrome, Edge, Safari (WebKit) */
html::-webkit-scrollbar {
  width: 6px;           /* très fine */
  height: 6px;
}

html::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.15);  /* fond très léger, visible juste un peu */
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: rgba(168, 173, 146, 0.9);  /* couleur de ta barre */
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 8px rgba(168, 173, 146, 0); /* effet glow/blur */
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(168, 173, 146, 1);
  box-shadow: 0 0 12px rgba(168, 173, 146, 0);
}

/* Pour Firefox (pas de blur possible, juste couleur + fine) */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(168, 173, 146, 0.9) rgba(0, 0, 0, 0.15);
}

/* BUGFIX: sélecteur ".img.bouleau" corrigé en ".img.bouleau" ET la classe HTML corrigée
   côté HTML (voir index.html) pour que cette règle s'applique réellement à l'image */
.img-bouleau{
  display: block;       /* évite les petits espaces en inline */
  margin-left: 0;       /* aucun espace à gauche */
  margin-right: auto;   /* pousse tout le reste à droite si besoin */
  max-width: 250px;
  width: 100%;           /* BUGFIX: l'image ne dépasse plus la largeur de son conteneur sur mobile */
  height: auto;
  
}

@media (max-width: 768px) {
    .img-bouleau {
        display: none;
    }
}


/* Sections */
section {
  padding: 40px 20px;
  text-align: center;
  transition: background-color 0.8s ease-in-out;
}

#section1 {
    display: flex;                
    align-items: stretch;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0px;
    gap: 2px;
    flex-wrap: wrap;
    position: relative;
}



.separator {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(137, 138, 90, 4.747),
    transparent
  );
  margin: 0;
}

.separator-v {
  width: 1px;
  height: 70%;                /* hauteur de la barre (ajuste) */
  max-height: 500px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(168, 173, 146, 0.7),
    transparent
  );
  align-self: center;         /* centré verticalement */
}

.texte {
    flex: 1 1 300px;
    display: flex;             
    flex-direction: column;    
    gap: 1px;    
    margin-top: 40px;
    padding: 0 20px; /* BUGFIX: petite marge pour que le texte ne colle pas aux bords sur mobile */
    box-sizing: border-box;
}

.texte h1 {
    font-size: 55px;        
    font-family: 'Cormorant Garamond', sans-serif;
    font-weight: 800;
    background: #272d07; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.texte h2 {
    color: #4f3706;
    font-size: 60px;
    font-weight:bolder;
  
}




#section1 { background: #f4f0e789; }
#section2 { background: #f4f0e7; }
#section3 { background: #f4f0e7; }
#section4 { background: #f4f0e7; }


/* Ajout d'un effet fluide au scroll */
html {
    scroll-behavior: smooth;
}




.montserrat-mm {
  font-family: "Playwrite Österreich", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}


/*Forme autour des contacts*/
.contact-cards {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap; /* BUGFIX: évite le débordement horizontal sur mobile */
}




.contact-card {
    background: linear-gradient(135deg, #004644, #008A86);  
    color: white;
    border-radius: 15px;
    padding: 2px 5px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.contact-card1 {
    background: linear-gradient(135deg, #004644, #008A86);  
    color: white;
    border-radius: 15px;
    padding: 5px 10px;
    text-align: center;
    min-width: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    
    
}

#section2 {
    display: flex;                
    align-items: stretch;
    justify-content: space-between;
    min-height: 40vh;
    padding: 0px;
    gap: 2px;
    flex-wrap: wrap;
    position: relative;
}


#section3 {
    display: flex;                
    align-items: stretch;
    justify-content: space-between;
    min-height: 40vh;
    padding: 0px;
    gap: 2px;
    flex-wrap: wrap;
    position: relative;
}


.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card1:hover {
    transform: translateY(-5px);
}

.emoji {
    font-size: 40px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.coordonnees {
    font-size: clamp(11px,2vw + 10px , 20px) ;
    align-items: center;  
    gap: 8px; 
    text-decoration: none;
    color: #ffffff; 
    font-weight: bold;
}

.coordonnees2 {
    font-size: 18px;
    align-items: center;  
    gap: 4px; 
    text-decoration: none;
    color: #ffffff; 
    font-weight: bold;
}

.contact-card1 .coordonnees{ 
    display: flex;         /* indispensable pour align-items */
    justify-content: center; /* centre horizontalement */
    align-items: center;     /* centre verticalement */
    gap: 8px;
    font-size: 18px;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;}



.contact-card a {
    color: white;         
    text-decoration: none; 
    justify-content: center;
    margin-top: 0px;
}

    .contact-card1 a {
    color: white;         
    text-decoration: none; 
    justify-content: center;
    margin-top: 20px;
}

.contact-card a:hover {
    text-decoration: underline; 
    color: #f0f0f0;             
}

/*style pour les images*/
.images {
    width: 100%;        
    max-width: 560px;   
    height: auto;        
    display: block;
    border-radius: 10px;     
    box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5);
    margin-left: 0;   /* plus aucun espace à gauche */
    object-fit: cover;   /* l'image remplit le bloc, zoom si nécessaire */
}

.contact-img { 
    width: 80px;
    height: 80px;
    border-radius: 50%; 
    object-fit: cover;
    margin-top: 30px;
    position: center;
    margin-right: 50px;
    display: flex;           /* active flexbox */
    justify-content: center; /* centre horizontalement */
    align-items: left;     /* centre verticalement */

}

.contact-card,
.contact-card1 {
    overflow: hidden;
    position: relative;
}

/* Coordonnées et images – taille normale */
.contact-card .coordonnees,
.contact-card1 .coordonnees,
.contact-card .contact-img,
.contact-card1 .contact-img,
.contact-card1 .emoji {
    transition: transform 0.3s ease, opacity 0.3s ease;  /* effet smooth */
}

/* Quand on survole la carte */
/* BUGFIX: le sélecteur ".contact-card1:hover .coordonnees .coordonnees2" (espace = descendant)
   ne correspondait à aucun élément réel ; remplacé par une virgule comme pour les autres règles */
.contact-card:hover .coordonnees,
.contact-card1:hover .coordonnees,
.contact-card1:hover .coordonnees2 {
    transform: translateY(-50px);  /* texte monte */
}

.contact-card:hover .contact-img,
.contact-card1:hover .contact-img,
.contact-card:hover .emoji {
    opacity: 0;  /* disparait */
    transform: translateY(-20px); /* optionnel : un peu de mouvement pour effet */
}

/* Coordonnées */
.coordonnees, 
.coordonnees a {
    transition: transform 0.3s ease; /* texte monte doucement */
    display: inline-block; /* important pour que translateY fonctionne sur les liens */
}

.txt2 {
    
    margin: 2px;
}

.bloc {
    background-color: #094947;
    border-radius: 20px;
    display: flex;
    gap: 5px; /* espace entre l’image et le texte */
    text-align: left;
    justify-content: left;
    box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5);
    margin-left: 55px;
    flex-wrap: wrap; /* BUGFIX: évite que l'image force un débordement horizontal sur mobile */
}

.bloc img {
  width: 500px; /* tu ajustes la taille */
  max-width: 100%; /* BUGFIX: ne dépasse plus le conteneur sur petit écran */
  height: auto;
  margin-right: 20px;
}

/* PC / large écran */
.element {
  width: 400px;
  font-size: 18px;
}

/* Tablette */
@media (max-width: 1024px) {
  .element {
    width: 70%;
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .element {
    width: 90%;
    font-size: 14px;
  }
}

/* =========================
   SECTION 2
========================= */

#section2 {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    display: flex;
    gap: 30px;

    padding: 40px;

    background: #f4f0e7;
}


/* =========================
   CONTENEURS
========================= */

.contenaire1,
.contenaire2 {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;

    box-sizing: border-box;

    padding: 25px;

    border-radius: 15px;

    display: flex;
    align-items: center;

    gap: 25px;

    overflow: hidden;
}


/* Couleurs */

.contenaire1 {
    background: #e3e0d6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);  /* ombre légère au repos */
}

.contenaire2 {
    background: #d6d2c6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);  /* ombre légère au repos */
}


.contenaire1:hover{
    transform: translateY(-4px);                 /* monte un peu */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);  /* ombre plus forte */
  background-color:#cfc6b3;

    
}

.contenaire2:hover{
    transform: translateY(-4px);                 /* monte un peu */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);  /* ombre plus forte */
  background-color:#cfc6b3;
    
}

/* =========================
   IMAGE À GAUCHE
========================= */

.ventre,
.hands {
    flex: 0 1 180px;

    width: 180px;
    max-width: 35%;

    height: auto;

    object-fit: contain;
}


/* =========================
   CONTENU À DROITE
========================= */

.contenu {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
}


/* =========================
   TITRE
========================= */

.h3 {
    margin: 0 0 10px 0;

    color: #4C5243;

    font-size: 25px;
    line-height: 1.2;

    text-align: right;

    overflow-wrap: anywhere;
}


/* Ligne sous le titre */

.h3::after {
    content: "";

    display: block;

    width: 60px;
    height: 5px;

    margin: 8px 0 0 auto;

    background: #B7995F;
}

.h3 {
  transition: transform 0.25s ease, color 0.25s ease;
}

.h3:hover {
  transform: translateY(-3px);  /* monte un peu */
  color: #b7995f;               /* change légèrement la couleur */
}

/* =========================
   TEXTE
========================= */

.contenu p {
    margin: 0 0 15px 0;

    color: #4C5243;

    font-size: 15px;
    line-height: 1.5;

    text-align: right;

    overflow-wrap: anywhere;
}


/* =========================
   BOUTON
========================= */

.en-savoir-plus {
    display: block;

    color: #4C5243;

    text-align: right;

    text-decoration: none;

    font-size: 14px;

    max-width: 100%;

    overflow-wrap: anywhere;

    transition: transform 0.25s ease;  /* animation douce */
}

.en-savoir-plus:hover {
    color: #B7995F;
    transform: translateX(5px);        /* décale de 5px vers la droite */
}


/* =========================
   TABLETTE
========================= */

@media (max-width: 768px) {

    #section2 {
        flex-direction: column;
        gap: 20px;

        padding: 20px;
    }

    .contenaire1,
    .contenaire2 {
        width: 100%;
        padding: 20px;

        gap: 20px;
    }

    .ventre,
    .hands {
        width: 140px;
        max-width: 30%;
    }

    .h3 {
        font-size: 21px;
    }

    .contenu p {
        font-size: 14px;
    }
}


/* =========================
   PETIT TÉLÉPHONE
========================= */

@media (max-width: 450px) {

    #section2 {
        padding: 12px;
    }

    .contenaire1,
    .contenaire2 {
        padding: 15px;

        gap: 12px;
    }

    .ventre,
    .hands {
        width: 75px;
        max-width: 25%;
    }

    .h3 {
        font-size: 18px;
    }

    .contenu p {
        font-size: 12px;
        line-height: 1.4;
    }

    .en-savoir-plus {
        font-size: 12px;
    }
}




.about-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 30px 60px;
  background: #f3eee5;
  border: 1px solid rgba(167, 145, 110, 0.25);
  min-height: 280px;
  box-sizing: border-box;
}

.about-banner__image {
  flex: 1.3;
  min-width: 0;
}

.about-banner__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

.about-banner__content {
  flex: 1;
  color: #6f5d49;
  text-align: left;
}

.about-banner__content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 2px;
  margin: 0 0 14px 0;
  text-transform: uppercase;
}

.about-banner__content p {
  font-family: "Quicksand", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px 0;
  max-width: 360px;
}

.about-banner__link {
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-decoration: none;
  color: #6f5d49;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-banner__link span {
  font-size: 18px;
}

.about-banner__circle {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(167, 145, 110, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.about-banner__circle-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  letter-spacing: 2px;
  color: #b59663;
  text-align: center;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
  .about-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .about-banner__content {
    text-align: center;
  }

  .about-banner__content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .about-banner__circle {
    width: 130px;
    height: 130px;
  }
}

.bol{
    width: 200px;      /* largeur fixe */
  max-width: 100%;    /* BUGFIX: ne dépasse plus le conteneur sur très petit écran */
  height: auto;      /* hauteur automatique pour garder les proportions */
  border-radius: 15px;
}

/* SECTION FEATURES TRÈS COMPACTE */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #f6f2ec;
  border-top: 1px solid rgba(167, 145, 110, 0.2);
  border-bottom: 1px solid rgba(167, 145, 110, 0.2);
  padding: 4px 0;            /* quasi pas d’espace haut/bas */
  min-height: 0;             /* pas de hauteur forcée */
}

.feature {
  text-align: center;
  padding: 6px 6px;          /* mini padding dans chaque bloc */
  border-right: 1px solid rgba(167, 145, 110, 0.15);
  color: #6f5d49;
  min-height: 0;             /* pas de hauteur forcée */
}

.feature:last-child {
  border-right: none;
}

.feature__icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 4px auto;
  border-radius: 50%;
  border: 1px solid rgba(167, 145, 110, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #9e8a66;
}

.feature h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 1px;
  margin: 0 0 3px 0;
  font-weight: 600;
}

.feature p {
  font-family: "Quicksand", sans-serif;
  font-size: 11px;
  line-height: 1.35;
  margin: 0;
}

/* FOOTER PLEINE LARGEUR */
.site-footer {
  background: #98a184;              /* fond vert/gris */
  color: #f3efe7;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px 40px 12px 40px;     /* pas trop haut */
  align-items: flex-start;
  width: 100%;                      /* prend toute la largeur */
  box-sizing: border-box;
  margin: 0;                        /* aucune marge autour */
}

/* Bloc marque à gauche */
.footer__brand h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  letter-spacing: 2px;
  margin: 0 0 6px 0;
  font-weight: 600;
}

.footer__brand p {
  margin: 0;
  color: #e8dfcf;
  font-size: 13px;
}

/* Titres de colonnes */
.footer__col h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 2px;
  margin: 0 0 6px 0;
  font-weight: 600;
}

/* Liens + texte */
.footer__col a,
.footer__col p {
  display: block;
  margin: 0 0 4px 0;
  color: #f3efe7;
  text-decoration: none;
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.footer__col a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 18px 20px 10px 20px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    grid-template-columns: 1fr;
    padding: 16px 16px 10px 16px;
  }
}


.bg-video {
  position: fixed;       /* ou absolute si tu veux juste une section */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* remplit tout l’écran sans déformer */
  z-index: -2;           /* derrière tout */
}
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* noir à 50% d’opacité */
  z-index: -1;                     /* entre la vidéo et le contenu */
  pointer-events: none;            /* clics passent au travers */
}


.footer__brand a{
  display: block;
  margin: 0 0 4px 0;
  color: #f3efe7;
  text-decoration: none;
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  line-height: 1.4;

}


/* La section doit servir de repère */
#section1 {
    position: relative;
}

/* Bouton flèche */
.fleche {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #4e5044;
    border-radius: 50%;

    color: #4e5044;
    font-size: 20px;
    text-decoration: none;

    animation: flotte 2s ease-in-out infinite;
    transition: 0.3s ease;
}

/* Animation légère haut/bas */
@keyframes flotte {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* Au survol */
.fleche:hover {
    transform: translateX(-50%) translateY(5px);
    background: #4e5044;
    color: #e1cfa3;
}