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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --light: #ffffff;
  --dark: #000000;
  --blue: #3decf2;
  --blue1: #00748e;
  --blue2: #00d9e0;
  --blue3: #0068e0;
  --orange: #a600ff;



  --gradient-1: linear-gradient(140deg, var(--blue1) 0%, var(--blue2) 100%);
  --gradient-2: linear-gradient(140deg, var(--blue2) 0%, var(--blue1) 100%);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--light);
  background-image: 
  linear-gradient(rgba(0, 62, 85, 0.5), rgba(0, 62, 85, 0.5)), /* Calque sombre */
  url("images/fonds/neuronnes-repeat.png");
  background-repeat: repeat;
  background-attachment: scroll; 
  background-size: 100% auto;
  background-position: center 0px; /* Position de départ */
  overflow-x: hidden;
}



/* Header */
header {
  background: var(--dark);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Logo SVG */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  width: 50px;
  height: auto;
  transform: translateY(3.5px); /* Descend l'image de 3 pixels sans casser le reste du menu */
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--light);
  background: rgba(45, 90, 135, 0.05);
  border-color: rgba(45, 90, 135, 0.2);
}

.nav-links a.active,
.nav-links a.active:hover,
.nav-links a.active:focus {
  color: var(--light);
  background: var(--gradient-1);
  border-color: var(--light);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gradient-1);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

#hero {
  width: 100vw; /* prend toute la largeur de la fenêtre */
  margin-top: 60px;
  min-height: 50vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* occupe toute la largeur du hero */
  height: 100%; /* occupe toute la hauteur du hero */
  background-image: none;
  z-index: 0;
  transform: none; /* plus de recentrage 50%/50% */
}


.hero-content {
  text-align: center;
  z-index: 1;
  padding: 2rem;
  max-width: 1600px;
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  text-align: center;
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 550;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 3em;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--blue);
  color: var(--dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* About Section - Complete Redesign */
#about {
  padding: 5rem 5%;
  max-width: 1500px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  color: var(--light);
}

.section-subtitle {
  text-align: center;
  font-weight: 550;
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--light);
  font-size: 1.1rem;
}

/* Floating Cards Design */
.about-floating-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;

  /* Pour que la grille prenne toute la largeur */
  width: 100%;
  max-width: 100vw; /* largeur maximale = écran */
  padding: 0 1rem; /* un petit padding pour éviter que ça touche exactement le bord */
  box-sizing: border-box;
}

.floating-card {
  /* Effet de verre dépoli avec un léger dégradé électrique */
  background: linear-gradient(
    135deg, 
    rgba(157, 0, 255, 0.1), 
    rgba(0, 210, 255, 0.1)
  ) !important;
  
  /* Flou d'arrière-plan pour le côté premium */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  /* Bordure fine et lumineuse pour attraper la lumière du fond */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  
  /* Ombre portée douce pour décoller la carte du fond */
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
  
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* On s'assure que le contenu reste au-dessus */
  z-index: 1;
}

.floating-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none; 
  z-index: -1; /* Placé derrière le contenu de la carte */
  transition: opacity 0.4s ease;
}

.floating-card:hover {
  /* Animation de flottement légèrement plus douce */
  transform: translateY(-8px) rotate(0.5deg);
  
  /* On remplace l'ombre orange par un halo cyan/bleu cohérent avec ton fond */
  box-shadow: 0 15px 45px rgba(0, 210, 255, 0.15);
  
  /* On rend la bordure un peu plus visible au survol */
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(
    135deg, 
    rgba(157, 0, 255, 0.15), 
    rgba(0, 210, 255, 0.15)
  ) !important;
}

.floating-card:hover::before {
  opacity: 1; /* Le halo de lumière interne s'active au survol */
}

.card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  position: relative;
}

.icon-wrapper {
  width: 100%;
  height: 100%;
  background: var(--blue);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 10px 25px rgba(136, 176, 211, 0.3);
}

.floating-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.floating-card p {
  color: var(--light);
  line-height: 1.4;
}

/* Stats Banner */
.stats-banner {
  background: var(--gradient-2);
  border-radius: 30px;
  padding: 1rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.stats-banner1 {
  background: var(--gradient-2);
  border-radius: 30px;
  padding: 3rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.stat-value1 {
  font-size: 1.8rem;
  margin-top: 2rem;

  font-weight: bold;
  color: var(--light);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stats-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.stat-block {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0rem; /* au lieu de 1rem ou plus */
}

.stat-value {
  font-size: 1.1rem;
  font-weight: bold;
  font-style: italic;
  color: var(--light);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0.25rem 0;
}

.stat-desc {
  color: var(--light);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0.25rem 0;
}

/* Feature Showcase */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(45, 90, 135, 0.03) 0%,
    rgba(74, 124, 138, 0.03) 100%
  );
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.feature-showcase::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(45, 90, 135, 0.02) 20px,
    rgba(45, 90, 135, 0.02) 40px
  );
  animation: slidePattern 30s linear infinite;
}

/* titre "Nos offres" centré et plus grand */
.feature-showcase h2 {
  text-align: center; /* centre le texte */
  font-size: 2.5rem; /* augmente la taille (ajuste selon besoin) */
  font-weight: 700; /* optionnel : plus gras */
  margin-bottom: 3rem; /* espace sous le titre */
  color: var(--light); /* couleur texte, à ajuster selon ton design */
}

.feature-showcase h3 {
  text-align: center; /* centre le texte */
  font-size: 2rem; /* taille plus grande */
  font-weight: 700; /* optionnel : pour un titre plus marqué */
  margin-bottom: 1.8rem; /* espace en dessous */
  color: var(--light); /* couleur texte, à ajuster selon ton design */
}

.feature-showcase li,
.feature-showcase strong {
  color: var(--light);
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-list li {
  display: flex;
  flex-direction: column; /* Empile les éléments verticalement */
  align-items: center;
  text-align: justify;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--gradient-1);
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(241, 229, 172, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.feature-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  background: var(--gradient-2);
}

.feature-list li:hover::before {
  left: 100%;
}

.feature-check {
  width: 35px;
  height: 35px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.feature-list li:hover .feature-check {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 5px 15px rgba(241, 229, 172, 0.4);
  background: var(--blue);
}


      #programme {
        padding: 60px 5% !important;
        background: transparent !important;
        display: block !important;
        width: 100% !important;
      }

      #programme h2 {
        text-align: center !important;
        font-size: 2.5rem !important;
        margin-bottom: 40px !important;
        color: var(--light) !important;
      }

      /* Conteneur des cartes */
      #programme .program-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 850px !important;
        margin: 0 auto !important;
        padding: 0 !important;
      }

      /* La carte individuelle */
      #programme .program-card {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        background: var(--gradient-1) !important;
        border-radius: 20px !important;
        padding: 25px 35px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.4s ease !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        box-sizing: border-box !important;
      }

      /* Effet au survol */
      #programme .program-card:hover {
        transform: translateX(15px) !important;
        background: var(--gradient-2) !important;
      }

      /* Séance X */
      #programme .program-index {
        font-size: 1.4rem !important;
        font-weight: 800 !important;
        color: var(--light) !important;
        min-width: 110px !important; /* Aligne le début des textes */
        margin-right: 30px !important; /* L'ESPACE DEMANDÉ */
        display: inline-block !important;
        white-space: nowrap !important;
      }

      /* Texte descriptif */
      #programme .program-text {
        color: var(--light) !important;
        font-size: 1.15rem !important;
        line-height: 1.4 !important;
        font-weight: 500 !important;
        text-align: left !important;
        flex: 1 !important;
        margin: 0 !important;
      }


/* Practices Section - Futuristic Timeline Design */
#practices {
  background: var(--gradient-1);
  padding: 5rem 5%;
}

.practices-container {
  max-width: 1200px;
  margin: 0 auto;
}

.practice-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

/* Futuristic Left Timeline */
.timeline-track {
  position: relative;
  padding: 2rem 0;
}

.timeline-progress {
  position: absolute;
  left: 50%;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: rgba(107, 91, 149, 0.1);
  transform: translateX(-50%);
}

.timeline-progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--gradient-1);
  animation: fillTimeline 3s ease forwards;
}

@keyframes fillTimeline {
  to {
    height: 100%;
  }
}

.timeline-points {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.timeline-point {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.futuristic-label {
  position: relative;
  padding: 1rem 2rem;
  background: white;
  border-radius: 50px;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  z-index: 5;
  min-width: 200px;
  text-align: center;
}

.futuristic-label::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.futuristic-label::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.timeline-point:hover .futuristic-label,
.timeline-point.active .futuristic-label {
  animation: zoomPulse 0.6s ease-in-out;
}

@keyframes zoomPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.timeline-point:hover .timeline-indicator,
.timeline-point.active .timeline-indicator {
  transform: translateX(-50%) scale(1.3);
  background: var(--dark);
  box-shadow: 0 0 15px rgba(45, 90, 135, 0.6);
}

.label-text {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

/* Glowing dot indicator */
.timeline-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: rgb(255, 255, 255);
  border: 2px solid var(--dark);
  border-radius: 50%;
  z-index: 2;
}

.timeline-point.active .timeline-indicator {
  background: var(--dark);
  box-shadow: 0 0 20px rgba(91, 111, 149, 0.5);
}

/* Right Content Area */
.practice-content-area {
  display: grid;
  gap: 2rem;
}

.practice-card-new {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.practice-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-1);
}

.practice-card-new:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.practice-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.practice-icon-new {
  width: 60px;
  height: 60px;
  background: var(--gradient-2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.practice-info h3 {
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 0.3rem;
}

.practice-duration {
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 500;
}

.practice-description {
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.practice-benefits {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.benefit-tag {
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(45, 90, 135, 0.1) 0%,
    rgba(74, 124, 138, 0.1) 100%
  );
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.benefit-tag:hover {
  background: var(--gradient-2);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Resources Section - New Structure */
#resources {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.resource-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.8rem 2rem;
  background: white;
  border: 2px solid var(--dark);
  border-radius: 25px;
  color: var(--dark);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--gradient-1);
  color: white;
  border-color: transparent;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.resource-image {
  height: 200px;
  background: var(--gradient-2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-thumbnail {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: transparent;
  position: relative;
  z-index: 1;
}

/* Real thumbnail images */
.morning-meditation {
  background-image: url("images/unsplash-mountain-cloud.avif");
}

.stress-relief {
  background-image: url("images/unsplash-blue-lakeside.avif");
}

.sleep-meditation {
  background-image: url("images/unsplash-mountain-top.avif");
}

.mbsr-course {
  background-image: url("images/unsplash-library-bookshelf.avif");
}

.leadership-course {
  background-image: url("images/unsplash-people-meeting-room.avif");
}

.beginner-course {
  background-image: url("images/unsplash-yoga-session.avif");
}

.timer-tool {
  background-image: url("images/unsplash-meditation-timer.avif");
}

.mood-tracker {
  background-image: url("images/unsplash-mood-tracker.avif");
}

.breathing-tool {
  background-image: url("images/unsplash-breathing-exercise.avif");
}

.resource-image::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.1) 20px
  );
  animation: slide 20s linear infinite;
}

@keyframes slide {
  0% {
    transform: translate(-50%, -50%);
  }

  100% {
    transform: translate(0, 0);
  }
}

.resource-body {
  padding: 1.5rem;
}

/* Contact Section - Two Columns */
#contact {
  padding: 5rem 5%;
  color: var(--light);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-container h2 {
  color:var(--light);
  margin-bottom: 3rem;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;

  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info {
  width: 90%;
  padding: 0rem;
}

.contact-info h3 {
  color: var(--dark);
  margin-bottom: 1rem !important;
  font-size: 1.8rem;
}

.info-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
  padding: 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.info-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(45, 90, 135, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.info-item:hover {
  background: linear-gradient(
    135deg,
    rgba(45, 90, 135, 0.05) 0%,
    rgba(74, 124, 138, 0.05) 100%
  );
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(45, 90, 135, 0.1);
}

.info-item:hover::before {
  left: 100%;
}

.info-item:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(45, 90, 135, 0.3);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.info-text h4 {
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.info-text p {
  color: var(--dark);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.contact-form {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  background: white;
  transition: all 0.3s ease;
  font-family: inherit;
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dark);
  background: white;
}

.submit-btn {
  background: var(--gradient-1);
  color: white;
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 2rem 5%;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--dark);
}

.copyright {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Conteneur général */
.offres-container {
  text-align: center;
  padding: 4rem 2rem;
}

/* Ligne pour aligner les deux blocs */
.offres-row {
  display: flex;
  justify-content: center; /* centre horizontalement */
  gap: 2rem;
  flex-wrap: wrap; /* pour mobile : empile les blocs */
}

/* Bloc commun pour ces offres */
.offre-card {
  background-color: var(--light);
  border-radius: 15px;
  width: 100%;
  max-width: 350px; /* ne dépasse pas 350px sur grand écran */
  height: auto; /* hauteur automatique selon le contenu */
  aspect-ratio: 1 / 1; /* garde un carré */
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.offre-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.offre-card {
  position: relative;
  text-align: center;
  padding: 1rem;
  min-height: 150px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: rgb(255, 255, 255);
}

.offre-card.atelier {
  background-image: url("images/atelier/atelier1.jpg");
  border: 2px solid var(--blue);
}

.offre-card.suivi {
  background-image: url("images/suivi/suivi1.jpg");
  border: 2px solid var(--blue);
}

/* Offre Confiance */
.offre-card.confiance {
  background-image: url("images/confiance/leader.avif");
}
/* Offre Stress */
.offre-card.sens {
  background-image: url("images/sens/mer.avif");
}
/* Offre Sens */
.offre-card.stress {
  background-image: url("images/confiance/miroir.avif");
}
/* Offre Problèmes divers */
.offre-card.probleme {
  background-image: url("images/résultats/boy.avif");
}
/* Offre Épanouissement */
.offre-card.epanouissement {
  background-image: url("images/résultats/femme.jpg");
}

.offre-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  z-index: 1;
}

/* Texte centré et plus gros */
.offre-card h3 {
  position: relative;
  z-index: 2;
  font-size: 1.8rem; /* titre plus grand */
  margin-bottom: 0.8rem;
}

.offre-card p {
  position: relative;
  z-index: 2;
  font-size: 1.1rem; /* paragraphe un peu plus gros */
  line-height: 1.5;
  padding: 0 0.5rem; /* éviter que le texte touche les bords */
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-item {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  transition: all 0.3s ease;
}

.offer-title {
  width: 100%;
  padding: 1.2rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.offer-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.offer-item.active .offer-content {
  max-height: 200px;
  padding: 1rem 1.2rem 1.5rem;
}

/* carte suivi active = on déplie le texte */
.offre-card.suivi.active {
  height: auto; /* laisse la carte grandir */
  padding-bottom: 2rem; /* espace pour le texte */
}

.offre-card.suivi.active .suivi-details {
  max-height: 200px; /* ajustable selon la taille du texte */
  padding: 1rem 1rem 1.5rem;
}
/* texte supplémentaire pour suivi – compact */
.suivi-details {
  max-height: 0;
  overflow: hidden;
  padding: 0 0.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: max-height 0.5s ease, padding 0.5s ease;
  color: #fff;
}

/* cibler le texte à l'intérieur */
.suivi-details p {
  font-size: 0.9rem; /* réduit la police */
  line-height: 1.3; /* interligne compact */
  margin: 0; /* supprime marges par défaut */
}

.offre-card.suivi h3 {
  color: var(--blue);
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
}

.offre-card.atelier h3 {
  color: var(--blue);
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
}

/* hover sur carte suivi = on agrandit et on affiche le texte */
.offre-card.suivi:hover {
  transform: translateY(-5px) scale(1.05);
  min-height: 400px; /* laisse la carte grandir */
  padding-bottom: 2rem; /* espace pour le texte */
}
.offre-card.atelier:hover {
  transform: translateY(-5px) scale(1.05);
  min-height: 400px; /* laisse la carte grandir */
  padding-bottom: 2rem; /* espace pour le texte */
}

/* texte visible au hover */
.offre-card.suivi:hover .suivi-details {
  max-height: 300px; /* assez pour texte complet */
  padding: 1rem 0.5rem 1.5rem;
}

/* 1. Correction Globale (À mettre au début ou à la fin) */
* {
  box-sizing: border-box; /* Indispensable pour éviter que le padding "pousse" les murs */
}

/* Conteneur du bouton */
.cta-offre {
  text-align: center;
  margin-top: 1rem;
  position: relative; /* Important pour le z-index */
  z-index: 10; /* Toujours au-dessus */
}

/* Style du bouton */
.cta-offre .cta-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--blue); /* Couleur visible */
  color: var(--light);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-offre .cta-button:hover {
  background-color: var(--blue);
  transform: scale(1.05);
}

/* ====== BLOC PRODUIT ====== */
.product-offer {
  position: relative;
  z-index: 3;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.product-card {
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
}

/* Image produit */
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contenu */
.product-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--light);
  font-size: 0.75rem;
  padding: 0.4rem 0.7rem;
  border-radius: 20px;
  width: fit-content;
}

.product-content h2 {
  font-size: 1.8rem;
  margin: 0;
}

.product-description {
  color: var(--dark);
  line-height: 1.6;
}

/* Prix */
.product-price {
  margin-top: 0.5rem;
}

.product-price .price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--blue);
}

.product-price .price-detail {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

/* CTA */
.product-cta {
  background-color: var(--blue); /* Un bleu standard moderne */
  color: white; /* Pour que le texte reste lisible */
  margin-top: 1rem;
  align-self: flex-start;
}

.contact-form select {
  width: 100%;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-top: 0.3rem;
}


.page-offre-confiance .contact-info h3 {
  margin-bottom: 1rem !important;
}

/* Style spécifique au bouton de réservation du Hero */
.reservation-bouton {
  display: inline-block;
  margin-top: 2rem;
  padding: 1.2rem 2rem;
  background-color: var(
    --blue
  ); /* Une couleur bleue apaisante, change-la selon tes envies */
  color: var(--light);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4rem;
  border-radius: 10px; /* Un arrondi plus léger pour un look pro */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
  border: 2px solid transparent;
}

/* Effet au survol */
.reservation-bouton:hover {
  background-color: var(--blue);
  color: var(--light);
  border-color: var(--blue);
  transform: scale(1.05); /* Effet de léger grossissement */
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Style spécifique pour la page réservation */
.reservation-hero {
  min-height: 40vh !important; /* Moins haute que l'accueil pour voir le calendrier vite */
  padding-top: 120px;
}

.calendar-section {
  padding: 2rem 1rem 5rem;
  position: relative;
  z-index: 10;
}

.calendar-container {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(
    255,
    255,
    255,
    0.9
  ); /* Fond blanc léger pour faire ressortir le calendrier */
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* --- Sections Légales (Confidentialité / CGU) --- */
.legal-section {
  /* Ajoute un espace important entre le Hero et le premier bloc */
  padding-top: 100px;

  /* Le reste de tes propriétés existantes */
  padding-bottom: 100px;
  padding-left: 10%;
  padding-right: 10%;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.legal-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Grille de la bibliothèque */
.library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}


/* Carte de livre */
.book-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.book-card:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.book-title {
  font-size: 1.1em;
  font-weight: bold;
  color: #fbaf04; /* Couleur or pour le titre */
  margin: 0;
}

.book-author {
  font-size: 0.85em;
  opacity: 0.7;
  font-style: italic;
}

.book-declic {
  font-size: 0.9em;
  line-height: 1.4;
  border-left: 2px solid #fbaf04;
  padding-left: 10px;
  margin: 10px 0;
}

.btn-read {
  margin-top: auto;
  background: white;
  color: black !important;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.8em;
  font-weight: bold;
  transition: 0.3s;
}

.btn-read:hover {
  background: #fbaf04;
}

/* Badge spécial pour les livres */
.book-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.2em;
}

/* ==========================================================
   DESIGN RESPONSIVE OPTIMISÉ (2 BREAKPOINTS)
   ========================================================== */
/* ================================================= */
/* 1. TABLETTES ET MOBILES (max-width: 768px) */
/* ================================================= */

@media (max-width: 768px) {
  /* --- Navigation & Menu --- */

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    transition: right 0.3s ease;
    gap: 1rem;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 80%;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 1rem;
    display: block;
  }

  /* --- Layout global --- */

  .product-card,
  .about-content,
  .contact-wrapper,
  .benefits-grid,
  .practice-layout,
  .feature-list,
  .stats-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* --- HERO --- */

  .reservation-hero {
    min-height: 30vh;
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
    text-align: center;
  }

  /* --- Feature showcase (commun aux 2 pages) --- */

  .feature-showcase {
    width: 100%;
    padding: 0 20px;
  }

  .showcase-content {
    width: 100%;
    text-align: center;
  }

  .showcase-content h2 {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* --- OFFRES --- */

  .offres-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 100%;
  }

  .offre-card {
    width: 90%;
    max-width: 420px;
    margin: 0 auto;
  }

  /* --- Ajustements visuels --- */

  .product-image {
    height: 220px;
    width: 100%;
  }

  .mandala-bg {
    width: 250px;
    height: 250px;
  }

  .cta-group,
  .journey-path,
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* éléments décoratifs supprimés */

  .journey-path::before,
  .timeline-track,
  .stat-item::after {
    display: none;
  }
}

/* ================================================= */
/* 2. PETITS MOBILES (max-width: 480px) */
/* ================================================= */

@media (max-width: 480px) {
  /* --- Typographie --- */

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    max-width: 90%;
    margin: 0 auto 1.5rem;
  }

  /* --- Boutons --- */

  .reservation-bouton,
  .tab-btn {
    width: 100%;
    display: block;
    text-align: center;
  }

  .resource-tabs {
    flex-direction: column;
  }

  /* --- Feature list --- */

  .feature-list li {
    padding: 1.4rem;
    gap: 1rem;
    text-align: center;
  }

  .feature-check {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin: 0 auto;
  }

  /* SECTION OFFRES - STRUCTURE IDENTIQUE */

  #offres-info {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .feature-showcase {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .feature-showcase h2 {
    text-align: center; /* centre le texte */
    font-size: 2rem; /* augmente la taille (ajuste selon besoin) */
    font-weight: 700; /* optionnel : plus gras */
    margin-top: 25px; /* Espace entre le bord du bloc et le titre */
    margin-bottom: 1.6rem; /* espace sous le titre */
    color: var(--light); /* couleur texte, à ajuster selon ton design */
  }

  .showcase-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    padding-bottom: 50px; /* Augmente cette valeur selon l'espace voulu */
    box-sizing: border-box;
  }

  .offres-row {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

.suivi-details {
    display: none !important;
}

.offre-card.suivi, 
.offre-card.suivi:hover, 
.offre-card.suivi:active,
.offre-card.suivi.active {
    transform: none !important;      /* Empêche le grossissement */
    scale: 1 !important;              /* Sécurité supplémentaire */
    height: auto !important;         /* Ne s'étire pas */
    transition: none !important;     /* Supprime l'animation de saut */
    cursor: default;                 /* Optionnel: montre que la carte n'est plus cliquable (seul le bouton l'est) */
}

.offre-card.suivi.confiance {
    pointer-events: none; /* La carte ne réagit plus du tout */
}
.offre-card.suivi.probleme {
    pointer-events: none; /* La carte ne réagit plus du tout */
}.offre-card.suivi.stress {
    pointer-events: none; /* La carte ne réagit plus du tout */
}
.cta-offre {
    pointer-events: auto; /* Mais le bouton à l'intérieur, oui ! */
}

  /* --- Feature list (Le Résumé) --- */
  .feature-list {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .feature-list li {
    width: 100% !important; /* Force la largeur totale */
    box-sizing: border-box !important; /* Inclus le padding dans les 100% */
    margin: 0 0 10px 0 !important;
    padding: 1.5rem !important;
    text-align: center;
    display: block; /* On repasse en block pour stabiliser la largeur */
  }

  .logo-text {
    position: absolute; /* Sort le texte du flux normal */
    left: 50%;          /* Place le début du texte au milieu */
    transform: translateX(-50%); /* Décale le texte de sa propre moitié vers la gauche */
    width: max-content; /* Empêche le texte de revenir à la ligne */
  }

          #programme .program-card {
          padding: 20px !important;
        }
        #programme .program-index {
          margin-right: 25px !important;
          min-width: 90px !important;
          font-size: 1.1rem !important;
        }
        #programme .program-text {
          font-size: 1rem !important;
        }
  
}

