/* =========================
   BASE
========================= */


body {
  font-family: 'Syne', sans-serif;
  color: #313131;
}

.home {
  font-family: 'Syne', sans-serif;
  color: #313131;
}

.home h1,
.home h2,
.home h3 {
  font-weight: 500;
  letter-spacing: -0.02em;
}

.home p {
  line-height: 1.6;
  font-size: 1rem;
}



/* =========================
   HERO FULL WIDTH
========================= */


.hero {
  position: relative;
  min-height: 65vh;
  overflow: hidden;
}

/* Vidéo plein écran */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Voile pour lisibilité */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2;
}

/* Contenu au-dessus */
.hero-content {
  position: relative;
  z-index: 3;
}

/* Offres au-dessus */
.hero-offers {
  position: absolute;
  z-index: 4;
}




.hero {
  position: relative;
  min-height: 65vh;
  width: 100%;
  overflow: visible;
}

/* Image de fond */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  text-align:center;
}

/* Voile léger pour lisibilité */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 2;
}

/* Contenu texte */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  padding: 120px 40px 200px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  text-align:center;
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 20px;
  text-align:center;
}

/* Bouton */
.hero-btn {
  margin-top: 30px;
  display: inline-block;
  padding: 14px 30px;
  background: #b87354;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  text-align:center;
}

.coach-photo video {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}



/* =========================
   HERO BTN – MOBILE ONLY
========================= */

/* Caché par défaut (desktop) */
.hero-btn {
  display: none;
}

/* Visible uniquement sur mobile */
@media (max-width: 900px) {
  .hero-btn {
    display: inline-block;
  }
}


/* =========================
   OFFRES SUPERPOSÉES – STYLE PILL
========================= */

.hero-offers {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  width: calc(100% - 80px);
  max-width: 1200px;
}

.offer-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 35px 30px;
  text-align: center;
  text-decoration: none;
  color: #313131;
border: 1px solid #C7C7C7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
	background: #f7efe7;
	border: 1px solid #b87354!important;
  transform: translateY(-8px);
}

/* Icône ronde en haut */

.offer-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(184, 115, 84, 0.12); /* #b87354 light */
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Titre */

.offer-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 500;
}

/* Texte */

.offer-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 25px;
}

/* Bouton */

.offer-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: #b87354;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.offer-card:hover .offer-btn {
  background: #98604f;
}

/* =========================
   RESPONSIVE OFFRES
========================= */

@media (max-width: 900px) {

  .hero-offers {
    grid-template-columns: 1fr;
    bottom: -140px;
  }

}




/* =========================
   OFFRES
========================= */

.offers {
  background: #ffffff;
}

.offers h2 {
  margin-bottom: 50px;
}

.offers a {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offers a:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.offers img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* =========================
   PRESENTATION
========================= */

.presentation {
  background: #f7f7f7;
}

.presentation img {
  border-radius: 20px;
}


/* =========================
   TÉMOIGNAGES – VERSION STATIQUE
========================= */

.testimonials-static {
  background: #f6ebe3;
  padding: 120px 40px;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-title {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #98604f;
  font-weight: 500;
}

/* Grille */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

/* Carte témoignage */
.testimonial-card {
  position: relative;
  padding-left: 30px;
}

/* Ligne verticale décorative */
.testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 2px;
  height: 80%;
  background: #b87354;
}

/* Citation */
.testimonial-card blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #98604f;
  margin-bottom: 30px;
}

/* Auteur */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-meta strong {
  display: block;
  font-size: 0.9rem;
  color: #98604f;
}

.author-meta span {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .testimonials-static {
    padding: 90px 20px;
  }
}




/* =========================
   CTA
========================= */

.cta {
  background: #ffffff;
}

.cta a {
  padding: 16px 32px;
  background: #313131;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  transition: background 0.3s ease;
}

.cta a:hover {
  background: #000;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .hero {
    min-height: 60vh;
  }


  
  
  .offers,
  .values-cards,
.coach-values {
  grid-template-columns: 1fr !important;
}


  .presentation div {
    grid-template-columns: 1fr !important;
  }

}

/* =========================
   SECTION COACH (PRESENTATION + VALEURS)
========================= */

.coach-section {
  position: relative; /* indispensable */
  background-color: #efddc5;
  padding: 100px 40px;
  overflow: hidden; /* évite les débordements */
}

/* Image décorative bas gauche */
.coach-section::after {
  content: "";
  position: absolute;
  left: 100px;
  bottom: 0px;
  width: 424px;       
  height: 326px;
  background-image: url("https://www.ffitness.fr/wp-content/uploads/2026/02/logo-c2-background-2.png");
  background-repeat: no-repeat;
  background-size: contain;     
  pointer-events: none;
    opacity: 1;  
}

/* --- Présentation --- */

.coach-presentation {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.coach-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}


.sous-titre-portrait {
  margin: 10px 0 22px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #98604f;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.coach-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Photo coach */

.coach-photo img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

/* --- Valeurs --- */



/* =========================
   VALEURS – COVER + CARDS SUPERPOSÉES
========================= */

.values-section {
  background: #efddc5;
  padding-bottom: 160px;
}

/* Cover image */
.values-cover {
  position: relative;
  height: 420px;
  background-image: url("https://www.ffitness.fr/wp-content/uploads/2026/02/background-home-2.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color:#b87354;
  background-attachment:fixed;
}

/* Overlay sombre */
.values-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

/* Titre */
.values-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

.values-overlay h2 {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

/* Séparateur */
.values-separator {
    display: block;
    width: 70px;
    height: 2px;
    background: #efddc5;
    margin: 0 auto 55px;
    border-radius: 2px;
}

/* =========================
   CARTES VALEURS
========================= */

.values-cards {
  max-width: 1200px;
  margin: -140px auto 0; /*  SUPERPOSITION */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 40px;
  position: relative;
  z-index: 3;
}



/* =========================
   ANIMATION FADE IN UP – VALEURS
========================= */

.value-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Décalage progressif */
.values-cards .value-card:nth-child(1) {
  animation-delay: 0.1s;
}

.values-cards .value-card:nth-child(2) {
  animation-delay: 0.3s;
}

.values-cards .value-card:nth-child(3) {
  animation-delay: 0.5s;
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .values-cover {
    height: 360px;
  }

  .values-cards {
    grid-template-columns: 1fr;
    margin-top: -100px;
    padding: 0 20px;
  }

  .value-card {
    border-radius: 58px;
    padding: 45px 30px;
  }

}

.coach-values {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
      background: #b87354;
  border-radius: 48px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.value-card:hover {
background: #98604f;
transition: 1.3s ease;
}



.value-card img {
  width: 48px;
  margin-bottom: 18px;
}

.value-card h3 {
	color:#f7efe7;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.value-card p {
	color:#f7efe7;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

.value-card i {
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 18px;
  display: block;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .coach-section {
    padding: 80px 20px;
  }

  .coach-presentation {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 40px;
  }

  .coach-values {
    grid-template-columns: 1fr;
  }

}

/* =========================
   HEADER / MENU
========================= */

.site-header {
  background-color: #efddc5;
}

/* Conteneur principal */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-branding img {
  max-height: 60px;
  width: auto;
  display: block;
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
}

/* Liste du menu */
.site-nav .main-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Liens du menu */
.site-nav .main-menu a {
  display: flex;
  align-items: center;
  color: #98604f;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
}

/* Hover / actif */
.site-nav .main-menu a:hover,
.site-nav .main-menu .current-menu-item > a {
  color: #b87354;
}

/* Underline élégant */
.site-nav .main-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #b87354;
  transition: width 0.3s ease;
}

.site-nav .main-menu a:hover::after,
.site-nav .main-menu .current-menu-item > a::after {
  width: 100%;
}


/* =========================
   MENU – BOUTON "ME CONTACTER"
========================= */

#menu-item-124 > a {
  display: inline-block;
  padding: 14px 30px;
  background: #b87354;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 30px;
  text-align: center;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover */
#menu-item-124 > a:hover {
  background: #98604f;
}

/* Supprimer l'underline éventuel du menu */
#menu-item-124 > a::after {
  display: none;
}


/* =========================
   RESPONSIVE HEADER
========================= */

@media (max-width: 900px) {

  .header-inner {
    flex-direction: column;
    gap: 20px;
  }

  .main-menu {
    gap: 20px;
  }

}
