/* Tout le texte en Quicksand */
body, p, a, li {
    font-family: "Quicksand", sans-serif;
}

/* Si tu veux aussi les titres en Quicksand */
h1, h2, h3, h4, h5, h6, strong {
    font-family: "Cormorant Garamond", sans-serif;
}

/* Style du menu */
body {
    margin: 0;
    padding-top: 80px;
    font-family: "Quicksand", sans-serif;
    line-height: 1.6;
}



header {
  background: #A8AD92;
  width: 100%;            /* ← prend toute la largeur */
  height: 80px;           /* ← hauteur de la barre en haut */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding-top: 0;
  padding-left: 20px;     /* espace à gauche pour le menu */
  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;
}

.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 */
}

.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);
}

.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: 560px;
  height: auto;
  border-radius: 10px;
  box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5);
}


/* Sections */
section {
    min-height: 100vh;
    padding: 50px;
    text-align: center;
  min-height: 100vh;
transition: background-color 0.8s ease-in-out;
background-color: #e1cfa39c;

}

#section1 {
  display: flex;
  align-items: stretch;
  justify-content: center;      /* ← centre les .texte horizontalement */
  min-height: 100vh;
  padding: 0;
  gap: 2px;
  flex-wrap: wrap;
  position: relative;
  background-color: #e1cfa3;
}

.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;
  align-items: center;   /* centre horizontalement le contenu */
  text-align: center;    /* centre le texte à l’intérieur */
}

/* Ton h1 */
h1 {
  font-size: 115px;
  font-family: 'Cormorant Garamond', sans-serif;
  font-weight: 80;
  color: #4e5044;
  -webkit-background-clip: text;
  text-align: center;     /* centre les lignes si le texte passe à la ligne */
  margin: 0;              /* enlève les marges par défaut si besoin */
}

.texte h2 {
    color: #B7995F;
  
}

p{
    text-align: left;
}


#section { background: #e1cfa3; }
#section2 { background: #e1cfa3; }
#section3 { background: #e1cfa3; }
#section4 { background: #e1cfa3; }


/* 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;
}




.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;
}

.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;
    margin: 0 left;
    border-radius: 10px;     
    box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5);
    margin-left: 55px; 
    margin-left: 0;   /* plus aucun espace à gauche */
    display: block;   /* pour éviter les petits gaps */
    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 */
.contact-card:hover .coordonnees ,
.contact-card1:hover .coordonnees .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 */
}

.contact-card1:hover .coordonnees {
    transform: translateY(-50px);  /* texte monte */
}

.contact-card1:hover .coordonnees2 {
    transform: translateY(-50px);  /* texte monte */
}

/* Coordonnées */
.coordonnees, 
.coordonnees a {
    transition: transform 0.3s ease; /* texte monte doucement */
    display: inline-block; /* important pour que translateY fonctionne sur les liens */
}

/* Au survol de la carte */
.contact-card:hover .coordonnees,
.contact-card1:hover .coordonnees {
    transform: translateY(-50px);
}

.contact-card:hover .coordonnees a,
.contact-card1:hover .coordonnees a {
    transform: translateY(-50px);
}

.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;
}

.bloc img {
  width: 500px; /* tu ajustes la taille */
  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;
  }
}


.contenaire3{
    background-color: #B7995F;
    border-radius: 15px;
  width: 80%;          /* or 600px, 100%, etc. */
  max-width: 1200px;   /* never wider than this */
  height: auto;        /* adapts to content */
  padding: 20px;       /* space inside */
  margin: 0 auto;      /* centers horizontally if width < 100% */
}
    

/* 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 */
}

strong {
  display: block;
  text-align: center;
}


.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;

}