@charset "UTF-8";
/* CSS Document */


/* --------------------------------
   BODY
----------------------------------- */
/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "neulis-neue", system-ui, -apple-system, BlinkMacSystemFont,
	"Segoe UI", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}


/* --------------------------------
   STICKY HEADER LOGO
----------------------------------- */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px 0 20px;

  /* caché au chargement */
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* visible après scroll */
.sticky-header.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sticky-logo {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .sticky-logo:hover {
    transform: scale(1.05);
  }
}

@media (min-width: 768px) {
  .sticky-header {
    height: 110px;
  }
  .sticky-logo {
    height: 70px;
  }
}

@media (min-width: 1600px) {
  .sticky-header {
    height: 120px;
  }
  .sticky-logo {
    /*height: 80px;*/
  width: 240px;
  }
}


/* --------------------------------
   FOOTER
----------------------------------- */

.footer-section {
position: relative;
z-index: 10000; /* au-dessus de .hero et .hero-bg */
width: 100%;
background-color: #004538;
color: #FFFFFF;
}

.footer-inner {
  margin: 0 auto;
  max-width: 374px;/* smartphone : grille 374px */
  padding-inline: 20px;
  padding-top: 100px;
  padding-bottom: 150px;
  text-align: center;
}

.footer-logo svg {
  width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* © Nourience 2025 */
.footer-adresse {
  margin-top: 50px;
  font-family: "neulis-neue", system-ui, sans-serif;
  font-weight: 400;/* medium */
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
}

/* Liens */
.footer-links {
  margin-top: 25px;
  display: flex;
  flex-direction: column; /* mobile : liens les uns sous les autres */
  align-items: center;
  gap: 8px;
  font-family: "neulis-neue", system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.footer-link {
  text-decoration: none;
  color: inherit;
}

.footer-link:hover {
  /*text-decoration: underline;*/
  color: #badbb8;
}

/* le bullet n’apparaît pas en mobile */
.footer-separator {
  display: none;
}

/* TABLETTE : 708px de grille (marges 30px) */
@media (min-width: 768px) {
  .footer-inner {
    max-width: 708px;
    padding-inline: 30px;
    padding-top: 100px;
    padding-bottom: 150px;
  }

  .footer-links {
    flex-direction: row;/* liens sur une ligne */
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .footer-separator {
    display: inline-block;
    margin-inline: 8px;
  }
}

/* DESKTOP : 900px de grille */
@media (min-width: 1600px) {
  .footer-inner {
    max-width: 900px;
    padding-inline: 0;
    padding-top: 100px;
    padding-bottom: 150px;
  }
}
	  