
html:focus-within {
  scroll-behavior: auto !important;
}


.banner-area {
  height: 100px; /* hauteur fixe pour la bannière */
}

.gallery-area {
 /* height: calc(100vh - 100px); /* tout le reste de l'écran */  
 overflow-y: auto; 
  padding-right: 10px; /* pour éviter que la scrollbar cache du contenu */
  box-sizing: border-box;
}

	

.scroll-button {
  display: inline-block;
  background-color: #357361C4;
  color: white;
  padding: 10px 24px;
  margin: 20px auto;
  border-radius: 25px;
  text-decoration: none;
  font-size:22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-button:hover {
  background-color: rgba(201, 167, 126, 0.54);
  transform: scale(1.08);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  color: #fff;
}

  
  
  .button-container {
  margin-left:150px;
  margin-top:150px;
  
  
  }
  
/* NAVIGATION GÉNÉRALE */
.navmenu {

  background: #ffffffcc; /* blanc légèrement transparent */
  backdrop-filter: blur(8px); /* flou élégant */
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(53, 115, 97, 0.1);
  padding: 16px 24px;
  max-width: 1290x;
    width: 100%;       /* pour s’adapter au parent */
  overflow: visible; /* éviter de couper le contenu */
  margin: 30px auto;
  transition: all 0.3s ease-in-out;
}

/* CONTENEUR INTÉRIEUR */
.navmenu-inner {
  display: flex;
    justify-content: center;
  align-items: center;
    flex-wrap: nowrap;       
  position: relative;
}
/* LOGO */
.logo img.rounded-logo {
  height: 40px;

  margin-right: 20px;
}

/* LIENS */
.nav-links {
margin: 0 auto;
  justify-content: center;
  list-style: none;
  display: flex;
    flex-wrap: nowrap; /* empêcher les liens de passer à la ligne */
  white-space: nowrap; /* empêcher le texte des liens de se couper */
  gap: 30px;

}

.nav-links li a {
  text-decoration: none;
  color: #357361F5;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: #357361C4;
  color: #2f4f4f; /* éviter que le texte devienne blanc */;
}


.nav-links li a:focus

{
	 outline: none;
  color: #2f4f4f;
}



/* BOUTON BURGER - par défaut caché */
.mobile-nav-toggle {
  display: none;
}



/* VERSION MOBILE */
@media (max-width: 1024px) {

  .navmenu-inner {
    align-items: flex-start !important; /* 👈 très important si un style global le centre */
    justify-content: flex-start !important;
    flex-direction: column;
    width: 100%;
  }


  .mobile-nav-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
    position: absolute;
    top: 10px;
    left: 20px;
    background: none;
    border: none;
    color: #357361C4;
  }

  .nav-links {

    display: none;
    flex-direction: column;
    width: auto;
    margin-top: 20px;
    gap: 16px;
    align-items: flex-start;
  }

  .nav-links.show {
    display: flex;
  }

  .logo {
    align-self: center;
    margin-bottom: 10px;
  }
}





.inner-title2 {
  color: #357361 !important;
  font-size: 2rem;
  text-align: center;
  margin: 1em 0;
  visibility: visible;
  opacity: 1;
}


  header {
    position: fixed;
    top: 0; left: 0; right: 0;
   
   background: transparent;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 0 20px;
    transition: height 0.4s ease, padding 0.4s ease;
    z-index: 1000;
	justify-content: center;

  }


  header.scrolled {
    height: 40px;
    padding: 0 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  }

  /* Ajuster le contenu pour qu'il s'adapte */
  header .navmenu-inner {
    font-size: 2rem;
    transition: font-size 0.4s ease;
  }

  header.scrolled .navmenu-inner {
    font-size: 1.2rem;
  }
  
    /* Ajuster le contenu pour qu'il s'adapte */
  header .navmenu {
    font-size: 2rem;
     transition: font-size 0.4s ease, padding 0.3s ease;
  }

  header.scrolled .navmenu {
    font-size: 1.2rem;
	 padding: 0;
  }



.gallery-area {
  margin-bottom: -100px !important;
}

.pb-40 {
  padding-bottom: 10px !important;
}