 /* Pour éviter un footer flottant */
 body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
  }
  
  main {
    flex: 1;
  }

/* HEADER NAVIGATION STYLE */
.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
  }
  
 .logo img {
  height: 100px !important;
  filter: brightness(0) saturate(100%);
}

  
  .nav-menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu a {
    font-family: 'Poppins', sans-serif;
    font-weight: 300; /* light comme sur l’image */
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
  }
  
  
  .nav-menu a::before,
  .nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #94b49f; 
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .nav-menu a::before {
    top: 0;
    transform-origin: left;
  }
  
  .nav-menu a::after {
    bottom: 0;
    transform-origin: right;
  }
  
  .nav-menu a:hover::before,
  .nav-menu a:hover::after {
    transform: scaleX(1);
  }

  /* ----- BURGER MENU ANIMÉ ET RESPONSIVE ----- */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.burger-menu span {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #94b49f;
  border-radius: 2px;
  transition: 0.4s ease;
}

.burger-menu span:nth-child(1) {
  top: 0;
}
.burger-menu span:nth-child(2) {
  top: 10px;
}
.burger-menu span:nth-child(3) {
  top: 20px;
}

.burger-menu.open {
  animation: pop 0.2s ease;
}

@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}


/* Animation CROIX */
.burger-menu.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.burger-menu.open span:nth-child(2) {
  opacity: 0;
}
.burger-menu.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    backdrop-filter: blur(8px); /* effet flou */
    background-color: rgba(255, 255, 255, 0.8); /* semi-transparent */
    padding: 30px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .nav-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-menu li {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInLink 0.4s ease forwards;
  }

  .nav-menu.active li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .nav-menu.active li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .nav-menu.active li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .nav-menu.active li:nth-child(4) {
    animation-delay: 0.4s;
  }
  .nav-menu.active li:nth-child(5) {
    animation-delay: 0.5s;
  }
  .nav-menu.active li:nth-child(6) {
    animation-delay: 0.6s;
  }

  @keyframes fadeInLink {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu li a {
    font-size: 16px;
    color: #111;
    text-decoration: none;
    font-weight: 300;
    text-transform: uppercase;
  }
}

/* footer */

.site-footer {
    background-color: transparent;
    padding: 20px 60px 0;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #94b49f;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .footer-left {
    flex: 1;
    text-align: left;
  }
  
  .footer-logo {
    height: 70px;
    filter: brightness(0) saturate(100%);
  }
  
  .footer-links {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #94b49f;
  }
  
  .footer-socials {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
  }
  
  .footer-socials img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(61%) sepia(12%) saturate(893%) hue-rotate(72deg) brightness(93%) contrast(85%);
    transition: transform 0.3s ease;
  }
  
  .footer-socials a:hover img {
    transform: scale(1.1);
  }
  
  .footer-bottom {
    text-align: center;
    padding: 5px 0 10px;
    margin: 0;
  }
  
  .footer-bottom p {
    font-size: 13px;
    color: #94b49f;
    margin: 0;
    padding: 0;
  }


  /* STYLE GÉNÉRAL DU BODY POUR UNE AMBIANCE ZEN */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #f2f8f6 0%, #ffffff 100%);
    color: #111;
    overflow-x: hidden;
    transition: background 0.6s ease;
    animation: fadeInBody 1s ease-out;
  }
  
  /* ANIMATION DE FONDU DU BODY À L'ARRIVÉE */
  @keyframes fadeInBody {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  html {
    scroll-behavior: smooth;
  }
  body::before {
    content: "";
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, #94b49f26 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
  }
  
  .card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* GRID GÉNÉRALE POUR PRODUITS / ARTICLES / VIDÉOS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    margin-top: 30px;
  }
  
  .video-wrapper iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  
  /* IMAGES DES CARTES */

  .card img {
  width: 100%;
  height: 200px; /* Hauteur fixe pour toutes les images */
  object-fit: cover; /* Remplit la zone sans déformer l’image */
  border-radius: 15px;
  margin-bottom: 15px;
}

  
  /* TITRE DES CARTES */
  .card h3 {
    font-size: 18px;
    color: #333;
    margin: 0 0 10px;
  }
  
  /* PARAGRAPHES DES CARTES */
  .card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
  }
  .card p.article-excerpt {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.6em * 4); /* 4 lignes * hauteur de ligne */
}

  
  
  /* STYLES POUR IFRAME VIDÉO DANS LES CARTES */
  .card iframe {
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    margin-bottom: 15px;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }
  /* --- CONTAINERS GÉNÉRAUX --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  /* .section-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: #94b49f;
  }*/

  /*.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #5a7d6c;
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 0.02em;
    transition: all 1s ease;
}*/

  
  /* --- ABOUT CARD AMÉLIORÉE --- */
  .about-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    padding: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
  }
  .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

  
  .about-image {
    flex: 1 1 300px;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    object-fit: cover;
  }
  
  .about-text {
    flex: 2 1 400px;
    font-size: 10px;
    line-height: 1.7;
    color: #333;
    font-family: 'Poppins', sans-serif;
  }
  
  .about-text strong {
    color: #94b49f;
  }
  
  /* Responsive : image au-dessus du texte */
  @media (max-width: 768px) {
    .about-card {
      flex-direction: column;
      padding: 20px;
    }
  
    .about-text {
      text-align: center;
    }
  }
  .view-all {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 40px;
  }
  .view-all a {
    font-size: 13px;
    color: #94b49f;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .view-all a:hover {
    color: #678d7a;
  }

  /* FILTER FORM - GAIA STYLE LIGHT */
.filter-form {
    margin: 2rem 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    animation: fadeInSoft 0.6s ease-out both;
  }
  
  .filter-form label {
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .filter-form label:hover {
    color: #2a9d8f;
  }
  
  .custom-select-wrapper {
    position: relative;
    width: 220px;
  }
  
  .filter-form select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    font-size: 0.95rem;
    color: #333;
    appearance: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  
  .filter-form select:hover {
    border-color: #ccc;
  }
  
  .filter-form select:focus {
    outline: none;
    border-color: #2a9d8f;
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
  }
  
  /* Soft fade in */
  @keyframes fadeInSoft {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fade-in {
    opacity: 1;
    transition: opacity 0.4s ease;
  }
  
  .fade-out {
    opacity: 0;
    transition: opacity 0.4s ease;
  }
    
  
  
  .product-category {
    display: inline-block;
    background-color: #94b49f;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .latest-products {
    padding: 2rem;
    background: #f9f9f9;
}
.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.product-card {
    flex: 1 1 300px;
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.product-card .category {
    font-style: italic;
    color: #666;
}
.thumbnail-index {
  width: 100%;
  max-width: 300px;      /* Limite la largeur */
  height: auto;          /* Garde les proportions naturelles */
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}


/* Contact */

.contact-section {
    padding: 60px 20px;
    background: #94b49f26;
    animation: fadeIn 0.8s ease-in-out;
  }
  /* .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
  }*/
  .section-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
  }
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  .contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out;
    transition: background 0.4s ease-in-out;
  }
  .floating-label {
    position: relative;
    margin-bottom: 20px;
  }
  .floating-label input,
  .floating-label textarea {
    background: #ffffffee;
    border: 1px solid #ccc;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
  }
  .floating-label label {
    position: absolute;
    left: 20px;
    top: 12px;
    color: #888;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.2s ease-out;
  }
  .floating-label input:focus + label,
  .floating-label input:not(:placeholder-shown) + label,
  .floating-label textarea:focus + label,
  .floating-label textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 16px;
    font-size: 12px;
    background: #f7f9f7;
    padding: 0 4px;
    color: #94b49f;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #94b49f;
    outline: none;
  }
  .submit-btn {
    background-color: #94b49f;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  .submit-btn:hover {
    background-color: #7da389;
    transform: scale(1.05);
  }
  @media (max-width: 768px) {
    .contact-wrapper {
      grid-template-columns: 1fr;
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .alert-success, .alert-error {
    margin: 20px auto;
    max-width: 600px;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    animation: fadeIn 0.8s ease-in-out;
  }
  .alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }
  .alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  .social-links img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(61%) sepia(12%) saturate(893%) hue-rotate(72deg) brightness(93%) contrast(85%);
    transition: transform 0.3s ease;
  }
  .social-links a:hover img {
    transform: scale(1.1);
  }

  .contact-info {
  background-color: #eef7f0;
  border-radius: 16px;
  padding: 25px;
  margin-top: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: #2b4634;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #3c6e4e;
}

.contact-info a {
  color: #3c6e4e;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links img {
  width: 28px;
  transition: transform 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.2);
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  padding: 40px 0;
}

.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.partner img {
  width: 110px;
  height: auto;
  filter: grayscale(100%) contrast(0.8);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.partner p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #555;
}

.partner:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.03);
}

.partner.visible {
  transform: translateY(0);
  opacity: 1;
}
/* .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #5a7d6c;
  opacity: 0;
  transform: translateY(20px);
  letter-spacing: 0.02em;
  transition: all 1s ease;
} 

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
  letter-spacing: 0.05em;
}*/

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #5a7d6c;
  opacity: 0;
  transform: translateY(20px);
  letter-spacing: 0.02em;
  transition: all 1s ease;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
  letter-spacing: 0.05em;
}


a.btn {
  display: inline-block;
  padding: 10px 26px;
  margin-top: 16px;
  background: transparent;
  border: 2px solid #94B49F;
  color: #94B49F;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  transition: all 0.3s ease;
}

a.btn:hover {
  background: #94B49F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(148, 180, 159, 0.35);
}

.featured-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.featured-visual.reverse {
  flex-direction: row-reverse;
}

.visual-text {
  flex: 1 1 300px;
}

.visual-text h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #333;
}

.visual-text p {
  color: #555;
  line-height: 1.5;
}

.visual-video {
  flex: 1 1 400px;
}

.visual-video video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9;
}
