.bodystyle{
    background-color: greenyellow;

}
/* On prépare le lien */
.custom-link {
    position: relative;
    transition: color 0.3s ease;
}

/* Création de la ligne invisible */
.custom-link::after {
    content: "";
    position: absolute;
    background-color: #ff9800; /* La couleur orange de votre bouton */
    height: 2px;
    width: 0;
    left: 0;
    bottom: 5px;
    transition: width 0.3s ease;
}

/* Animation au survol */
.custom-link:hover::after {
    width: 100%;
}
/* --- SECTION HERO NATURALINE --- */

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  /* Modification : Vert forêt doux au lieu du violet */
  background: radial-gradient(circle, color-mix(in srgb, #2d5a27, transparent 85%) 0%, transparent 70%);
  border-radius: 50%;
  top: -20%;
  right: -10%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  /* Modification : Doré cosmétique léger */
  background: color-mix(in srgb, #d4af37, transparent 88%);
  border-radius: 50%;
  bottom: 10%;
  left: 5%;
  filter: blur(40px);
  animation: float 4s ease-in-out infinite reverse;
  z-index: 1;
}

/* ... (le reste reste identique jusqu'au titre) ... */

.hero .hero-title .typed {
  /* Modification : Dégradé Vert vers Doré (plus luxueux pour Naturaline) */
  background: linear-gradient(135deg, #2d5a27 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero .hero-title .typed::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  /* Rappel du dégradé sur la barre soulignée */
  background: linear-gradient(135deg, #2d5a27 0%, #d4af37 100%);
  border-radius: 2px;
}

.hero .hero-actions .action-btn.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Bouton au survol plus doux */
  background: linear-gradient(135deg, #3d7a36 0%, #2d5a27 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Animation de flottement (obligatoire pour que les bulles bougent) */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
  100% { transform: translateY(0px); }
}
/* Cherchez cette ligne dans votre code */
.sitename {
    display: flex;
    flex-direction: column; /* Aligne les mots l'un au-dessus de l'autre */
    align-items: center;    /* Centre horizontalement NATURALINE et COSMETIQUE */
    text-align: center;     /* Assure que le texte lui-même est centré */
    line-height: 1.2;
}

.sub-brand {
    font-size: 0.6em;       /* Rend COSMETIQUE plus petit (environ 60% de la taille) */
    text-transform: uppercase;
    letter-spacing: 2px;    /* Ajoute de l'élégance */
    width: 100%;            /* S'assure qu'il prend toute la largeur pour bien se centrer */
}
/* Style pour tous les liens du menu */
#navmenu ul li a {
    position: relative;
    text-decoration: none;
    padding: 10px 0;
    transition: 0.3s;
}

/* Création du curseur (ligne) sous le menu */
#navmenu ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #D4A373; /* Couleur dorée assortie à votre logo */
    transition: width 0.3s ease;
}

/* Animation au survol pour tous les éléments */
#navmenu ul li a:hover::after {
    width: 100%;
}

/* 1. ESPACEMENT : On donne de l'espace à chaque lien du menu */
.navmenu ul li {
    padding: 0 10px; /* Ajoute 10px à gauche et à droite de chaque mot */
}

/* 2. LE CURSEUR : Configuration pour que le trait suive la taille du texte */
.navmenu a {
    position: relative;
    padding: 0 !important; /* On retire les paddings par défaut sur le lien lui-même */
    display: inline-block;
}

/* 3. STYLE DU TRAIT : On crée le trait sous le texte */
.navmenu a::after {
    content: "";
    position: absolute;
    bottom: -5px; /* Ajustez la distance sous le texte ici */
    left: 0;
    width: 0; /* Caché par défaut */
    height: 2px;
    background-color: #D4A373; /* Votre couleur dorée */
    transition: width 0.3s ease; /* Animation fluide */
}

/* 4. ACTIVATION : Affiche le trait au survol et sur la page active */
.navmenu a:hover::after, 
.navmenu a.active::after {
    width: 100%; /* Le trait prend 100% de la largeur du MOT uniquement */
}
/* Modification du fond des cartes */
.single-feature {
    background: #ffffff !important; /* Change le fond noir en blanc (ou la couleur de votre choix) */
    border: 1px solid #e0e0e0;     /* Ajoute une fine bordure pour définir la carte sur fond clair */
    padding: 30px;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}

/* Changement de la couleur des icônes (l'orange actuel) */
.single-feature .feature-icon i {
    color: #2D5A27 !important; /* Change l'orange en Vert Naturaline (ou autre) */
}

/* Changement de la couleur du titre (le vert actuel) */
.single-feature h3 {
    color: #333333 !important; /* Change le titre en noir/gris foncé pour la lisibilité */
}

/* Effet au survol (Hover) */
.single-feature:hover {
    background: #fdfaf5 !important; /* Un léger beige au survol */
    transform: translateY(-10px);   /* La carte monte légèrement */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.whatsapp-float {
  position: fixed;
  bottom: 85px; /* Placé au-dessus du bouton 'scroll-top' */
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  padding: 10px 20px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float i {
  font-size: 24px;
  margin-right: 8px;
}

.whatsapp-float span {
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #fff;
  transform: translateY(-5px);
}

/* Masquer le texte sur mobile pour ne garder que l'icône si besoin */
@media (max-width: 768px) {
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 12px;
    bottom: 70px;
    right: 15px;
  }
  .whatsapp-float i {
    margin-right: 0;
  }
}
/* Personnalisation des cartes de la section Services */
.services .service-item {
    background-color: #ffffff !important; /* Remplacez #ffffff par la couleur de votre choix */
    border: 1px solid #eef2ef; /* Optionnel : ajoute une petite bordure pour délimiter la carte */
}

/* Changer la couleur du texte à l'intérieur pour qu'il soit visible sur un fond clair */
.services .service-item p {
    color: #090909 !important; /* Couleur du texte (noir/gris foncé) */
}

/* Changer la couleur du titre de la carte */
.services .service-item h3, 
.services .service-item .title {
    color: #194d2c !important; /* Couleur verte de vos autres titres */
}

/* {
.header .btn-getstarted
background: #3e810c;
} */


.header .btn-getstarted, .header .btn-getstarted:focus {
background: #34981f; 
}

.feature-item:hover .feature-item:focus {
 background-color: var(--surface-color);  
  color: var(--surface-color);
}