/* ==============================
   GOOGLE FONT
   ============================== */

@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

/* ==============================
   POLICE PAR DEFAUT SITE
   ============================== */

html,
body {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
}

/* ==============================
   HERITAGE TEXTE GLOBAL
   ============================== */

body,
p,
span,
div,
li,
ul,
ol,
td,
th,
label,
input,
textarea,
select,
button,
a,
small,
strong,
em,
blockquote,
figcaption {
  font-family: inherit;
}

/* ==============================
   TITRES
   ============================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 600;
}

/* ==============================
   FORMULAIRES
   ============================== */

input,
textarea,
select,
button {
  font-family: inherit;
}

/* ==============================
   EXCLUSION DES POLICES D’ICÔNES
   ============================== */

/* Font Awesome */
.fa,
.fas,
.far,
.fal,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
}

/* Icomoon ou icônes personnalisées */
[class^="icon-"],
[class*=" icon-"] {
  font-family: "icomoon";
}

/* ==============================
   AMELIORATION RENDU TYPO
   ============================== */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*---------------------------------- ANNOUNCEMENT BAR --------------------------------------*/
.announcement-bar {
  background-color: transparent !important; /* Force la transparence */
  position: relative;
  z-index: 10000;
  height: 40px; /* Ajustez cette valeur selon vos besoins */
  display: flex;
  align-items: center;
}

.announcement-bar .container {
  width: 100%;
}

.announcement-bar .announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff; /* Texte en blanc pour contraste sur vidéo */
  font-size: 14px;
}

.announcement-bar .announcement-content p {
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.announcement-bar .announcement-bar-links {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.announcement-bar .announcement-bar-links .social-link svg {
  fill: #fff; /* Icônes en blanc */
  width: 18px;
  height: 18px;
}

/*---------------------------------- MENU PRINCIPAL --------------------------------------*/
/* Conteneur du menu */
.navigation-menu-wrapper {
  height: auto;
  min-height: 60px;
  z-index: 9999;
  display: flex;
  align-items: center;
}

/* Pour garantir que le menu reste bien aligné */
.navigation-menu-wrapper .navigation-menu {
  margin: 0;
  padding: 0;
}

/* Menu desktop - liste */
.navigation-menu.desktop {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Items du menu */
.navigation-menu.desktop .menu-item {
  margin: 0;
  padding: 0;
}

/* Liens du menu */
.navigation-menu.desktop .menu-item a {
  display: block;
  padding: 12px 6px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: none;
  color: #fff; /* Blanc pour visibilité sur vidéo */
  transition:
    color 0.25s ease,
    transform 0.15s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hover */
.navigation-menu.desktop .menu-item a:hover {
  color: #c68a2b;
  transform: translateY(-1px);
}

/* Menu actif */
.navigation-menu.desktop .menu-item.current a {
  color: #c68a2b;
  font-weight: 600;
}

/* Ajustement pour le header sticky */
.header.sticky-nav .navigation-menu-wrapper {
  height: auto;
}

/* Grand écran */
@media (min-width: 1200px) {
  .navigation-menu.desktop {
    gap: 34px;
  }
  .navigation-menu.desktop .menu-item a {
    padding: 14px 8px;
    font-size: 16px;
  }
}

/*---------------------------------- VIDEO SECTION --------------------------------------*/
.video-container2 {
  --video-height: 80vh;
  --video-vertical-align: 50%;
  height: var(--video-height);
  width: 100%;
  overflow: hidden;
  position: relative;
}

.video-container2 video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: var(--video-vertical-align);
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.video-container2 .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  width: 100%;
  padding: 0 20px;
  z-index: 10;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

/*---------------------------------- PLEINE LARGEUR --------------------------------------*/
.full-width {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  left: 0;
  right: 0;
}

.full-width .video-container2 {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}

/*---------------------------------- STYLES MOBILE --------------------------------------*/
@media (max-width: 768px) {
  .full-width {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .full-width .video-container2 {
    --mobile-video-height: 400px;
    height: var(--mobile-video-height);
    width: 100%;
    margin: 0;
  }

  .full-width .video-container2 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    top: 90px;
    left: auto;
    transform: none;
  }

  .video-container2 .caption {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    color: #333;
    text-shadow: none;
    font-size: 1.5em;
    padding: 20px;
    background: transparent;
    width: 100%;
    text-align: center;
    font-weight: bold;
  }
}
/*---------------------------------- STICKY MENU BACKGROUND --------------------------------------*/
/* Fond du header quand sticky */
.header.sticky-nav.scrolled {
  background-color: rgba(0, 0, 0, 0.85) !important; /* Blanc à 90% d'opacité */
  /* transition: background-color 0.3s ease; */
}

/* Ajustement des liens en sticky (déjà ajouté avant) */
.header.sticky-nav.scrolled .navigation-menu.desktop .menu-item a {
  color: #444 !important;
}

.header.sticky-nav.scrolled .navigation-menu.desktop .menu-item a:hover {
  color: #c68a2b !important;
}
/*----------------------------------reglages divers ---------------------------------*/
/* Mobile ≤ 768px */
@media (max-width: 768px) {
  .hide {
    display: none !important;
  }
}
.tit1 {
  font-size: 3em !important;
}
.tit1a {
  font-size: 2em !important;
}
.tit2 {
  font-size: 1.2em !important;
  font-weight: 200 !important;
}
.omb {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}
.caption {
  font-size: 4em !important;
}
.box0 {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.box2 {
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 25px;
}
.box4 {
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 25px;
  background: #fff;
}
.box1 {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 15px;
  background: #f4f8f5;
  padding: 25px;
  margin-top: 30px;
}
.pa25 {
  padding: 25px !important;
}
.rdv-text {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.rdv-btn {
  margin-top: 25px;
  display: inline-block;
  background: #ff6d2d;
  color: #fff;
  font-size: 18px;
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.rdv-btn:hover {
  background: #ff6d2d;
}

/*---------------------------------- CACHE MENU DESKTOP SUR MOBILE ----------------------------------*/
@media (max-width: 768px) {
  /* Forcer le masquage du menu desktop */
  .navigation-menu.desktop {
    display: none !important;
  }
}
/*---------------------------------- HEADER SUPERPOSE A LA VIDEO SUR MOBILE (CORRIGE) ----------------------------------*/
@media (max-width: 768px) {
  /* Positionner le header en absolu au-dessus de la vidéo */
  .header.sticky-nav {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999 !important; /* Z-index très élevé pour passer devant */
    background-color: transparent !important;
  }

  /* Réduire le z-index de la vidéo pour qu'elle reste derrière */
  .video-container2 {
    z-index: 1 !important;
    position: relative !important;
  }

  /* S'assurer que le conteneur de la vidéo n'a pas de padding-top qui créerait un espace */
  #slideshow-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* Forcer la vidéo à commencer en haut */
  .full-width:first-of-type {
    margin-top: 0 !important;
  }

  /* Ajuster le premier conteneur */
  body > .container:first-of-type {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}
/*---------------------------------- STYLES MOBILE POUR LOGO ET HAMBURGER ----------------------------------*/
@media (max-width: 768px) {
  /* Ajustement hauteur */
  .header.sticky-nav {
    top: 20px !important; /* Modifiez cette valeur */
  }

  /* Marges latérales */
  .header .logo {
    margin-left: 25px !important;
  }

  .hamburger {
    margin-right: 25px !important;
  }

  /* Taille du logo */
  .header .logo img.show-sticky {
    width: 35px !important; /* Modifiez cette valeur */
    height: auto !important;
  }

  /* Logo noir */
  .header .logo img.hide-sticky {
    display: none !important;
  }

  .header .logo img.show-sticky {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Conteneur logo visible */
  .header .logo {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Barres hamburger noires */
  .hamburger .bar {
    background-color: #000000 !important;
  }

  .hamburger-icon .bars .bar {
    background-color: #000000 !important;
  }
  header .header-wrapper {
    height: 20px;
  }
  .hamburger .bar {
    width: 30px !important; /* Largeur des barres */
    height: 3px !important; /* Hauteur/épaisseur des barres */
    margin: 6px 0 !important; /* Espace entre les barres */
  }
}
.hamburger-icon {
  margin-top: 45px;
}
/*---------------------------------- PADDING GLOBAL SUR MOBILE ----------------------------------*/
@media (max-width: 768px) {
  /* Padding pour tout le contenu sauf la vidéo */
  .container,
  section,
  div:not(.full-width):not(.video-container2):not(#slideshow-container) {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  /* La vidéo reste sans padding */
  .full-width,
  .video-container2,
  #slideshow-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/*---------------------------------- MENU GRAND ECRAN UNIQUEMENT ----------------------------------*/
/* Styles appliqués seulement sur écran > 768px */
@media (min-width: 769px) {
  /* Fond du header au chargement */
  .header.sticky-nav {
    background-color: rgba(0, 0, 0, 0.7) !important;
    transition: background-color 0.3s ease;
  }

  /* Logo blanc au démarrage */
  .header.sticky-nav .logo img.hide-sticky {
    display: inline-block !important;
  }

  .header.sticky-nav .logo img.show-sticky {
    display: none !important;
  }

  /* Liens du menu en blanc */
  .navigation-menu.desktop .menu-item a {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  /* Hover couleur dorée */
  .navigation-menu.desktop .menu-item a:hover {
    color: #c68a2b !important;
  }
}

/*---------------------------------- STICKY MENU GRAND ECRAN UNIQUEMENT ----------------------------------*/
@media (min-width: 769px) {
  /* Quand le header devient sticky (après scroll) */
  .header.sticky-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.85) !important;
    transition: background-color 0.3s ease;
  }

  /* Logo noir au sticky */
  .header.sticky-nav.scrolled .logo img.hide-sticky {
    /* display: none !important; */
  }

  .header.sticky-nav.scrolled .logo img.show-sticky {
    display: inline-block !important;
  }

  /* Liens du menu en noir au sticky */
  .header.sticky-nav.scrolled .navigation-menu.desktop .menu-item a {
    color: #444444 !important;
    text-shadow: none;
  }

  /* Hover couleur dorée conservée au sticky */
  .header.sticky-nav.scrolled .navigation-menu.desktop .menu-item a:hover {
    color: #c68a2b !important;
  }
}
/*--------------------------------- FOOTER -------------------------------------*/
.footer {
  color: #fff;
  padding: 60px 0 30px;
}

.footer .sub-heading {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/*--------------------------------- LOGO COLONNE -------------------------------------*/
.footer-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

/*--------------------------------- MENUS COLONNES -------------------------------------*/
.footer-nav,
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li,
.contact-info li {
  margin-bottom: 10px;
  font-size: 16px !important;
}

.footer-nav a,
.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover,
.contact-info a:hover {
  color: #fff;
}

/*--------------------------------- CONTACT COLONNE -------------------------------------*/
.contact-info li:first-child {
  color: #fff;
  line-height: 1.5;
  margin-bottom: 15px;
}

/*--------------------------------- COPYRIGHT SIGNATURE -------------------------------------*/
.copyright {
  text-align: left;
  margin-left: 20px;
  text-decoration: none;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.copyright a {
  color: #ccc !important  ;
  text-decoration: none !important;
  text-transform: none;
  font-size: 14px;
}

.copyright a:hover {
  color: #fff !important;
}
/*--------------------------------- TYPOGRAPHIE -------------------------------------*/
.jus1 {
  font-size: 16px;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 200;
  font-family: "Nunito", sans-serif;
  color: #000;
}
.jus2 {
  font-size: 16px;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 8px !important;
  font-weight: 200;
  font-family: "Nunito", sans-serif;
  color: #000;
}
.service-detail-section .service-detail-wrapper p {
  margin-bottom: 0rem;
}
.jus1 li {
  font-size: 16px;
  line-height: 1.6;
  /* margin-bottom: 8px; */
  font-weight: 100 !important;
  font-family: "Nunito", sans-serif;
  color: #000;
}
.features-section .headings {
  margin-bottom: 2rem;
}
.ita {
  font-style: italic;
}
.logs {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.im50 {
  width: 50px !important;
  height: auto !important;
}
/*-------------------------------------------------------------------------------------------------*/
.service-detail-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.service-content-block {
  display: block;
}

.service-top {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.service-img-block {
  width: 100%;
}

.service-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.text-box {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
}

.text-box p {
  margin-bottom: 18px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .service-detail-wrapper {
    grid-template-columns: 1fr;
  }

  .form-button-area {
    margin-bottom: 40px;
  }
}
/* =========================================
   SECTION PARALLAX — CITATION MARTA
   ========================================= */

.quote-parallax {
  background-image: url("images/parallax-chien.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 20px;
  position: relative;
}

.quote-overlay {
  background: rgba(0, 0, 0, 0.35);
  padding: 60px 20px;
  text-align: center;
}

.quote-text {
  max-width: 900px;
  margin: auto;
}

.quote-main {
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
}

.quote-author {
  margin-top: 15px;
  font-size: 18px;
  color: #e6e6e6;
}

/* Correction mobile pour le parallax */

@media (max-width: 768px) {
  .quote-parallax {
    background-attachment: scroll;
  }
}
/* bouton secondaire - en savoir plus */

.btn-more {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #ff6d2d;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-more:hover {
  background: #ff6d2d;
}
/*-------------------------------------------padding sections ------------*/
.features-section {
  padding: 5rem 0;
}
.service-detail-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
/* =========================================
   BLOCS SERVICES / FEATURES
   cartes image ronde + titre
   ========================================= */

.feature-block {
  display: block;
  text-align: center;
  padding: 25px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: 0.3s;
  text-decoration: none;
}

.feature-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* cercle image */

.img-block {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

/* image dans le cercle */

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* titre */

.feature-block .title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

/* =========================================
   VIGNETTES ACTIVITÉS
   version compacte des feature-block
   ========================================= */

.features-activites .feature-block {
  padding: 20px;
}

.features-activites .img-block {
  width: 200px;
  height: 200px;
  margin: 0 auto 15px auto;
}

.features-activites .feature-block .title {
  font-size: 16px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 992px) {
  .features-activites .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-activites .grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   ACTIVITÉS – grille 3 colonnes
   ========================================= */

.features-activites .grid {
  grid-template-columns: repeat(3, 1fr);
}
/* =========================================
   CORRECTION IMAGES FEATURES
   neutralise la règle du thème
   ========================================= */

.features-section .feature-block .img-block .feature-img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}
/* =========================================
   APPARITION TEXTE AU SCROLL
   ========================================= */

.fade-text {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s ease;
}

.fade-text.visible {
  opacity: 1;
  transform: translateY(0);
}
/* =========================================
   SECTION VIDEO YOUTUBE
   ========================================= */

.video-wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 25px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* =========================================
   GALERIE STAGES
   ========================================= */

.gallery-stages {
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}

/* effet hover */

.gallery-item:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.gallery-item:hover img {
  transform: scale(1.06);
}
/*----------------------------------bandeau pages int--------------------------------*/
.page-header-section {
  background-image: url(images/bandeau.jpg);
  background-color: var(--primary-black);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
/* =========================================
   FORMULAIRE CONTACT
   ========================================= */

.form-group {
  margin-bottom: 12px;
}
/*========================================= */
/* Correction pour mobile - section activités avec images rondes */
@media screen and (max-width: 768px) {
  .features-section .feature-block .img-block .feature-img {
    width: 110% !important;
    height: 110% !important;
    border-radius: 0;
    object-fit: cover;
  }
  .features-activites .grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 15px;
    margin: 0; /* Ajouté */
    width: 100%; /* Ajouté */
  }

  .features-activites .feature-block {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    padding: 0; /* Ajouté */
    border: none; /* Ajouté */
    box-sizing: border-box; /* Ajouté */
  }

  .features-activites .img-block {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
    padding: 0; /* Ajouté */
    display: block; /* Ajouté */
    line-height: 0; /* Ajouté - supprime l'espace sous l'image */
  }

  .features-activites .feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block; /* Ajouté */
    margin: 0; /* Ajouté */
    padding: 0; /* Ajouté */
  }

  .features-activites .feature-block:hover .feature-img {
    transform: scale(1.1);
  }

  .features-activites .title {
    padding: 10px 0;
    margin: 0;
    font-size: 1.3rem;
    color: #333;
    width: 100%; /* Ajouté */
  }

  /* Correction du conteneur grid-4-col */
  .features-activites .grid-4-col {
    display: flex;
    flex-direction: column;
    margin: 0; /* Ajouté */
    padding: 0; /* Ajouté */
    width: 100%; /* Ajouté */
  }
}

/* Pour les très petits écrans */
@media screen and (max-width: 480px) {
  .features-activites .img-block {
    width: 160px;
    height: 160px;
  }

  .features-activites .title {
    font-size: 1.2rem;
  }
}

/* Version desktop */
@media screen and (min-width: 769px) {
  .features-activites .img-block {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0; /* Ajouté */
    line-height: 0; /* Ajouté */
  }

  .features-activites .feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Ajouté */
    margin: 0; /* Ajouté */
    padding: 0; /* Ajouté */
  }

  .features-activites .feature-block {
    text-align: center;
    text-decoration: none;
    color: inherit;
    padding: 0; /* Ajouté */
    border: none; /* Ajouté */
  }
}

@media screen and (max-width: 768px) {
  .features-section .feature-block .img-block {
    overflow: hidden; /* Déjà présent, gardez-le */
    position: relative; /* Ajouté pour le positionnement */
  }

  .features-section .feature-block .img-block .feature-img {
    width: 110% !important;
    height: 110% !important;
    border-radius: 0;
    object-fit: cover;
    position: relative; /* Ajouté */
    left: -5%; /* Ajouté - décale l'image vers la gauche */
  }
}
/* Version desktop - CORRIGÉE */
@media screen and (min-width: 769px) {
  .features-activites .feature-block {
    text-align: center;
    text-decoration: none;
    color: inherit;
    padding: 25px !important; /* Réajouté pour l'espace autour du cercle */
    border: none;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }

  .features-activites .img-block {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    line-height: 0;
  }

  .features-activites .feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
  }

  .features-activites .title {
    padding: 10px 0;
    margin: 0;
    font-size: 1.1rem;
    color: #333;
  }
}

/* Pour les très petits écrans - CORRIGÉ */
@media screen and (max-width: 480px) {
  .features-activites .feature-block {
    padding: 20px !important; /* Espace sur mobile aussi */
  }

  .features-activites .img-block {
    width: 160px;
    height: 160px;
  }

  .features-activites .title {
    font-size: 1.2rem;
  }
}
/*---------------------------------- MENU MOBILE GLASSMORPHISM ----------------------------------*/
.hamburger-content {
  background-color: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hamburger-content .navigation-menu.mobile .menu-item a {
  color: #ffffff !important;
}

.hamburger-content .navigation-menu.mobile .menu-item a:hover {
  color: #c68a2b !important;
}
