/* Variables */
:root{
  --brand: #d1875a;
  --brand-dark: #b06f4a;
  --brand-light: #e8a577;
  --text: #1c1c1c;
  --muted: #777;
  --bg: #ffffff;
  --card-bg: #fbfbfb;
  --max-width: 1200px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset + typography */
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html{
  height:100%;
  overflow-x:hidden;
  scroll-behavior:smooth;
}
body{
  margin:0;
  font-family:"Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color:var(--text);
  background:linear-gradient(135deg, #ffffff 0%, #fcfbfa 50%, #f8f6f4 100%);
  background-attachment:fixed;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  position:relative;
  overflow-x:hidden;
}
body.menu-open{
  overflow:hidden;
  position:fixed;
  width:100%;
  left:0;
  right:0;
}

/* Make main take remaining space so footer sticks to bottom */
main{
  flex:1; 
  width:100%; 
  margin:0; 
  padding:0;
}

/* Header */
header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;
  padding:14px 28px;
  background:rgba(255,255,255,0.95);
  backdrop-filter:saturate(180%) blur(20px);
  -webkit-backdrop-filter:saturate(180%) blur(20px);
  border-bottom:1px solid rgba(0,0,0,0.06);
  transition:padding var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
  animation:slideDown 0.6s ease-out;
  width:100%;
  margin-bottom:0;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Enhanced class toggled by JS on scroll */
header.scrolled{
  padding:12px 28px;
  box-shadow:0 8px 24px rgba(25,25,25,0.1);
  background:rgba(255,255,255,0.98);
}

/* Ensure menu toggle stays fixed on mobile even when header changes */
@media (max-width:900px){
  header.scrolled{
    padding: 12px 20px;
  }
}

/* Logo */
header .logo{
  display:flex;
  align-items:center;
  gap:12px;
  animation:fadeIn 0.8s ease-out 0.2s both;
  justify-content:flex-start;
}
header .logo img{
  width:56px;
  height:56px;
  object-fit:cover;
  border-radius:50%;
  border:3px solid rgba(209,135,90,0.15);
  transition:all var(--transition-smooth);
  box-shadow:var(--shadow-sm);
}
header .logo img:hover{
  transform: rotate(360deg) scale(1.1);
  border-color:var(--brand);
}

/* Header right section */
.header-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
  flex-wrap:nowrap;
}

/* Social links */
.social-links{
  display:flex;
  align-items:center;
  gap:10px;
}
.social-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(209,135,90,0.1);
  color:var(--brand-dark);
  transition:all var(--transition-fast);
  text-decoration:none;
  flex-shrink:0;
}
.social-link:hover{
  background:var(--brand);
  color:#fff;
  transform:translateY(-3px);
  box-shadow:0 4px 12px rgba(209,135,90,0.3);
}
.social-link svg{
  width:17px;
  height:17px;
}

/* Nav */
nav{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}
/* Hide mobile menu header on desktop */
.mobile-menu-header{
  display:none;
}
.mobile-reserve-btn{
  display:none;
}
nav a{
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  font-size:0.9rem;
  letter-spacing:0.2px;
  padding:8px 14px;
  border-radius:8px;
  position:relative;
  transition:all var(--transition-fast);
  animation:fadeIn 0.8s ease-out both;
  white-space:nowrap;
}
nav a:nth-child(1) { animation-delay: 0.1s; }
nav a:nth-child(2) { animation-delay: 0.2s; }
nav a:nth-child(3) { animation-delay: 0.3s; }
nav a:nth-child(4) { animation-delay: 0.4s; }
nav a:nth-child(5) { animation-delay: 0.5s; }
nav a:nth-child(6) { animation-delay: 0.6s; }

nav a::before{
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background:linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: translateX(-50%);
  transition:width var(--transition-fast);
}
nav a:hover{
  color:var(--brand);
  background:rgba(209,135,90,0.08);
  transform:translateY(-2px);
}
nav a:hover::before{
  width: 70%;
}
nav a.active{
  color:var(--brand);
  background:rgba(209,135,90,0.12);
}
nav a:active{transform:translateY(0)}

/* Screen reader only class for accessibility */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border-width:0;
}

/* Mobile menu overlay */
.menu-overlay{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  height:100dvh; /* Dynamic viewport height for mobile */
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  z-index:9998;
  opacity:0;
  transition:opacity var(--transition-smooth);
  pointer-events:none;
}
.menu-overlay.active{
  display:block;
  opacity:1;
  pointer-events:all;
}

/* Mobile menu toggle button */
.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:4.5px;
  background:rgba(255,255,255,0.98);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(209,135,90,0.15);
  cursor:pointer;
  padding:9px;
  width:44px;
  height:44px;
  z-index:10001;
  border-radius:12px;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  /* Transition uniquement sur background, border et shadow - PAS sur position/transform */
  transition:background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position:relative;
}
.menu-toggle:hover{
  background:#ffffff;
  border-color:var(--brand);
  box-shadow:0 4px 14px rgba(209,135,90,0.2);
}
.menu-toggle:focus{
  outline:2px solid var(--brand);
  outline-offset:2px;
}
.menu-toggle:focus:not(:focus-visible){
  outline:none;
}
.menu-toggle:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:2px;
}
.menu-toggle-bar{
  display:block;
  width:24px;
  height:2px;
  background:var(--text);
  border-radius:2px;
  /* Transition uniquement sur les barres, pas sur le parent */
  transition:transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
             opacity 0.3s ease,
             background-color 0.3s ease;
  transform-origin:center;
  will-change:transform;
}
.menu-toggle.active{
  background:var(--brand);
  border-color:var(--brand);
  box-shadow:0 4px 16px rgba(209,135,90,0.35);
}
.menu-toggle.active .menu-toggle-bar{
  background:#fff;
}
.menu-toggle.active .menu-toggle-bar:nth-child(1){
  transform:translateY(6.5px) rotate(45deg);
}
.menu-toggle.active .menu-toggle-bar:nth-child(2){
  opacity:0;
  transform:scaleX(0);
}
.menu-toggle.active .menu-toggle-bar:nth-child(3){
  transform:translateY(-6.5px) rotate(-45deg);
}

/* Primary CTA */
header .btn-reserver{
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  color:#fff;
  border:0;
  padding:10px 20px;
  border-radius:10px;
  cursor:pointer;
  font-weight:700;
  font-size:0.85rem;
  box-shadow:0 4px 14px rgba(209,135,90,0.3);
  transition:all var(--transition-fast);
  position:relative;
  overflow:hidden;
  animation: fadeIn 0.8s ease-out 0.7s both;
  text-decoration:none;
  display:inline-block;
  white-space:nowrap;
  text-align:center;
}
header .btn-reserver::before{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:0;
  height:0;
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  transform:translate(-50%, -50%);
  transition:width 0.6s, height 0.6s;
}
header .btn-reserver:hover::before{
  width:300px;
  height:300px;
}
header .btn-reserver:hover{
  transform:translateY(-3px) scale(1.05); 
  box-shadow:0 8px 24px rgba(176,111,74,0.4);
}
header .btn-reserver:active{
  transform:translateY(-1px) scale(1.02);
}

/* HERO */
/* ===== HERO SECTION - FULLSCREEN WITH SLIDER ===== */
.hero{
  position:relative;
  width:100vw;
  height:100vh;
  min-height:700px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  left:50%;
  right:50%;
  margin-left:-50vw !important;
  margin-right:-50vw !important;
  margin-top:0 !important;
  margin-bottom:0 !important;
  padding:86px 0 0 0 !important;
}

/* Hero Slider */
.hero-slider{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1;
}

.hero-slide{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 1.5s ease-in-out;
}

.hero-slide.active{
  opacity:1;
}

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* Hero Overlay */
.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(0,0,0,0.6), rgba(209,135,90,0.4));
  z-index:2;
}

/* Hero Content */
.hero-content{
  position:relative;
  z-index:3;
  width:100%;
  max-width:1200px;
  padding:0 40px;
  text-align:center;
  color:#fff;
}

/* Hero Badges */
.hero-badges{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:40px;
  animation:fadeInDown 1s ease-out 0.3s both;
}

.hero-badge{
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  padding:12px 24px;
  border-radius:50px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:0 8px 24px rgba(0,0,0,0.2);
  transition:all 0.3s ease;
}

.hero-badge:hover{
  transform:translateY(-5px) scale(1.05);
  box-shadow:0 12px 32px rgba(0,0,0,0.3);
}

.badge-icon{
  font-size:2rem;
  line-height:1;
}

.badge-text{
  color:var(--text);
  font-size:0.85rem;
  line-height:1.3;
  text-align:left;
}

.badge-text strong{
  font-size:0.95rem;
  color:var(--brand);
}

/* Hero Main Content */
.hero-main{
  animation:fadeInUp 1s ease-out 0.5s both;
}

.hero-subtitle{
  text-transform:uppercase;
  font-size:0.9rem;
  letter-spacing:3px;
  color:rgba(255,255,255,0.8);
  margin-bottom:16px;
  font-weight:600;
}

.hero h1{
  font-size:clamp(40px, 6vw, 72px);
  line-height:1.1;
  margin-bottom:24px;
  letter-spacing:-1px;
  color:#fff;
  text-shadow:0 4px 20px rgba(0,0,0,0.5);
  font-weight:800;
}

.hero-description{
  font-size:1.2rem;
  line-height:1.6;
  max-width:700px;
  margin:0 auto 40px;
  color:rgba(255,255,255,0.95);
  text-shadow:0 2px 10px rgba(0,0,0,0.3);
}

/* Hero Actions */
.hero-actions{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn-hero-primary,
.btn-hero-secondary{
  padding:16px 40px;
  border-radius:50px;
  font-weight:700;
  font-size:1.05rem;
  transition:all 0.3s ease;
  cursor:pointer;
  text-decoration:none;
  display:inline-block;
  position:relative;
  overflow:hidden;
}

.btn-hero-primary{
  background:linear-gradient(135deg, var(--brand), var(--brand-dark));
  color:#fff;
  border:none;
  box-shadow:0 8px 24px rgba(209,135,90,0.4);
}

.btn-hero-primary:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 12px 32px rgba(209,135,90,0.6);
}

.btn-hero-secondary{
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(10px);
  color:#fff;
  border:2px solid rgba(255,255,255,0.6);
}

.btn-hero-secondary:hover{
  background:rgba(255,255,255,0.25);
  border-color:#fff;
  transform:translateY(-3px);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  text-align:center;
  animation:fadeInUp 1s ease-out 1s both;
}

.hero-scroll-indicator span{
  display:block;
  font-size:0.85rem;
  color:rgba(255,255,255,0.8);
  margin-bottom:8px;
  letter-spacing:1px;
  text-transform:uppercase;
}

.scroll-arrow{
  font-size:1.5rem;
  color:#fff;
  animation:bounce 2s ease-in-out infinite;
}

@keyframes bounce{
  0%, 100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(10px);
  }
}

@keyframes fadeInDown{
  from{
    opacity:0;
    transform:translateY(-30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Apply varied animations to sections */
section.fadeInLeft.visible {
  animation: fadeInLeft 0.8s ease-out forwards;
}

section.fadeInRight.visible {
  animation: fadeInRight 0.8s ease-out forwards;
}

section.fadeInUp.visible {
  animation: fadeInUp 0.8s ease-out forwards;
}

section.scaleIn.visible {
  animation: scaleIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Sections common */
section:not(.hero){
  padding:60px 20px; 
  margin-bottom:40px;
  opacity:1;
  transform:translateY(0);
  transition:opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Sections (except hero) - constrained width */
section:not(.hero){
  max-width:var(--max-width);
  margin-left:auto;
  margin-right:auto;
}
section.animate-on-scroll{
  opacity:0;
  transform:translateY(40px);
}
section.animate-on-scroll.visible{
  opacity:1;
  transform:translateY(0);
}
section h2{
  font-size:clamp(24px, 3vw, 36px);
  margin-bottom:24px;
  color:var(--text);
  position:relative;
  padding-bottom:16px;
}
section h2::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:60px;
  height:4px;
  background:linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius:2px;
}
section p{
  color:var(--muted);
  line-height:1.7;
  font-size:1.05rem;
}

/* About section carousel */
.photo-carousel{
  margin:40px 0;
  position:relative;
}

.carousel-container{
  width:100%;
  overflow:hidden;
  border-radius:20px;
  box-shadow:var(--shadow-lg);
}

.carousel-track{
  display:flex;
  transition:transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-img{
  width:100%;
  height:400px;
  object-fit:cover;
  flex-shrink:0;
}

.carousel-dots{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:20px;
}

.carousel-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:rgba(209,135,90,0.3);
  cursor:pointer;
  transition:all var(--transition-fast);
}

.carousel-dot.active{
  background:var(--brand);
  transform:scale(1.3);
}

.carousel-dot:hover{
  background:var(--brand-light);
}

/* About content */
.about-content{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:32px;
  margin-top:40px;
}

.about .mission,
.about .history{
  padding:24px;
  background:rgba(255,255,255,0.6);
  border-radius:16px;
  border-left:4px solid var(--brand);
  box-shadow:var(--shadow-sm);
  transition:all var(--transition-smooth);
}
.about .mission:hover,
.about .history:hover{
  transform:translateX(8px);
  box-shadow:var(--shadow-md);
}
.about h3{
  color:var(--brand-dark);
  margin-bottom:16px;
  font-size:1.3rem;
}
.about ul{
  margin-left:24px;
  margin-top:12px;
}
.about li{
  color:var(--muted);
  margin-bottom:8px;
  line-height:1.6;
}

/* Membership plans */
.plans{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:24px;
  margin:32px 0;
}
.plan{
  background:linear-gradient(135deg, #ffffff, #fafafa);
  padding:32px;
  border-radius:16px;
  border:2px solid rgba(209,135,90,0.1);
  transition:all var(--transition-smooth);
  position:relative;
  overflow:hidden;
}
.plan::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, var(--brand), var(--brand-light));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform var(--transition-smooth);
}
.plan:hover::before{
  transform:scaleX(1);
}
.plan:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:var(--shadow-lg);
  border-color:var(--brand);
}
.plan h4{
  color:var(--brand-dark);
  font-size:1.4rem;
  margin-bottom:16px;
}

/* Section header centered */
.section-header-center{
  text-align:center;
  max-width:800px;
  margin:0 auto 50px;
}
.section-header-center h2{
  margin-bottom:20px;
}
.section-header-center h2::after{
  left:50%;
  transform:translateX(-50%);
}
.section-header-center p{
  font-size:1.1rem;
}

/* Pricing Section */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:32px;
  margin:40px auto;
  max-width:1400px;
}
.pricing-card{
  background:linear-gradient(145deg, #ffffff, #fafafa);
  padding:40px 32px;
  border-radius:20px;
  border:2px solid rgba(209,135,90,0.12);
  transition:all var(--transition-smooth);
  position:relative;
  overflow:hidden;
}
.pricing-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:linear-gradient(90deg, var(--brand), var(--brand-light));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform var(--transition-smooth);
}
.pricing-card:hover::before{
  transform:scaleX(1);
}
.pricing-card.featured{
  border-color:var(--brand);
  box-shadow:0 10px 40px rgba(209,135,90,0.15);
  transform:scale(1.05);
}
.pricing-card:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:var(--shadow-lg);
  border-color:var(--brand);
}
.pricing-card.featured:hover{
  transform:translateY(-12px) scale(1.08);
}
.pricing-badge{
  display:inline-block;
  background:rgba(209,135,90,0.1);
  color:var(--brand-dark);
  padding:6px 16px;
  border-radius:20px;
  font-size:0.85rem;
  font-weight:700;
  margin-bottom:16px;
  text-transform:uppercase;
  letter-spacing:0.5px;
}
.pricing-badge.popular{
  background:linear-gradient(135deg, var(--brand), var(--brand-dark));
  color:#fff;
  box-shadow:0 4px 12px rgba(209,135,90,0.3);
}
.pricing-card h3{
  font-size:1.6rem;
  color:var(--text);
  margin-bottom:20px;
}
.price{
  margin:24px 0;
}
.price .amount{
  font-size:3rem;
  font-weight:800;
  color:var(--brand-dark);
  line-height:1;
}
.price .period{
  font-size:1.1rem;
  color:var(--muted);
  font-weight:500;
}
.pricing-card .features{
  list-style:none;
  margin:24px 0;
  padding:0;
}
.pricing-card .features li{
  padding:12px 0;
  color:var(--text);
  font-size:0.95rem;
  border-bottom:1px solid rgba(0,0,0,0.05);
  line-height:1.6;
}
.pricing-card .features li:last-child{
  border-bottom:none;
}
.pricing-note{
  font-size:0.85rem;
  color:var(--muted);
  font-style:italic;
  margin:16px 0;
  padding:12px;
  background:rgba(209,135,90,0.05);
  border-radius:8px;
}
.btn-pricing{
  display:block;
  width:100%;
  background:linear-gradient(135deg, var(--brand), var(--brand-dark));
  color:#fff;
  border:none;
  padding:16px 32px;
  border-radius:12px;
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
  transition:all var(--transition-smooth);
  margin-top:20px;
  position:relative;
  overflow:hidden;
  text-decoration:none;
  text-align:center;
}
.btn-pricing::before{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:0;
  height:0;
  border-radius:50%;
  background:rgba(255,255,255,0.3);
  transform:translate(-50%, -50%);
  transition:width 0.6s, height 0.6s;
}
.btn-pricing:hover::before{
  width:400px;
  height:400px;
}
.btn-pricing:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 24px rgba(209,135,90,0.4);
}
.pricing-footer{
  margin-top:40px;
  padding:24px;
  background:rgba(209,135,90,0.05);
  border-radius:16px;
  border-left:4px solid var(--brand);
}
.pricing-footer p{
  margin:8px 0;
  font-size:0.95rem;
  line-height:1.7;
}

/* Cards / Services */
.services-list .service-grid{
  display:grid; 
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); 
  gap:32px;
  padding:20px 0;
}
.service{
  background:linear-gradient(135deg, rgba(255,255,255,0.9), rgba(250,250,250,0.9));
  padding:32px;
  border-radius:16px;
  transition:all var(--transition-smooth);
  border:2px solid rgba(209,135,90,0.08);
  position:relative;
  overflow:hidden;
}
.service::after{
  content:'';
  position:absolute;
  top:-50%;
  right:-50%;
  width:200%;
  height:200%;
  background:radial-gradient(circle, rgba(209,135,90,0.05), transparent 50%);
  opacity:0;
  transition:opacity var(--transition-smooth);
}
.service:hover::after{
  opacity:1;
}
.service:hover{
  transform:translateY(-10px) rotate(1deg); 
  box-shadow:var(--shadow-lg);
  border-color:var(--brand);
}
.service h3{
  margin-bottom:16px;
  color:var(--brand-dark);
  font-size:1.3rem;
}

/* Coaches grid */
.coach-grid{
  display:grid; 
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); 
  gap:32px;
  margin-top:32px;
}
.coach{
  background:linear-gradient(135deg,#fff,#fafafa); 
  padding:24px; 
  border-radius:16px; 
  text-align:center; 
  border:2px solid rgba(209,135,90,0.08);
  transition:all var(--transition-smooth);
  position:relative;
  overflow:hidden;
}
.coach::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(209,135,90,0.05), rgba(210,131,89,0.02));
  transition:left var(--transition-smooth);
  z-index:0;
}
.coach:hover::before{
  left:0;
}
.coach:hover{
  transform:translateY(-8px) scale(1.03);
  box-shadow:var(--shadow-lg);
  border-color:var(--brand);
}
.coach > *{
  position:relative;
  z-index:1;
}
.coach img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:16px;
  border:3px solid rgba(209,135,90,0.1);
  transition:all var(--transition-smooth);
}
.coach:hover img{
  transform:scale(1.05);
  border-color:var(--brand);
}
.coach h4{
  color:var(--brand-dark);
  font-size:1.2rem;
  margin-bottom:8px;
}

/* Calendar download link */
.calendar-download-link{
  color:var(--brand);
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:4px;
  text-decoration-thickness:2px;
  transition:all var(--transition-fast);
  cursor:pointer;
}

.calendar-download-link:hover{
  color:var(--brand-dark);
  text-decoration-thickness:3px;
  text-underline-offset:6px;
}

/* Agenda / Lists */
.agenda-content{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:40px;
  margin-top:32px;
}

.agenda-content-single{
  max-width:1000px;
  margin:32px auto 0;
}
.agenda-block{
  background:linear-gradient(135deg, #fff, #fcfcfc);
  padding:32px;
  border-radius:16px;
  border:2px solid rgba(209,135,90,0.1);
  transition:all var(--transition-smooth);
}
.agenda-block:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
  border-color:var(--brand);
}
.agenda-block h3{
  color:var(--brand-dark);
  margin-bottom:24px;
  font-size:1.4rem;
}
.schedule{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.schedule-item{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:16px;
  background:rgba(209,135,90,0.05);
  border-radius:12px;
  border-left:4px solid var(--brand);
  transition:all var(--transition-fast);
}
.schedule-item:hover{
  transform:translateX(8px);
  background:rgba(209,135,90,0.1);
}
.schedule-item strong{
  color:var(--text);
  font-size:1.05rem;
}
.schedule-item span{
  color:var(--brand-dark);
  font-size:1.2rem;
  font-weight:700;
}
.schedule-item small{
  color:var(--muted);
  font-size:0.9rem;
}
.note-info{
  margin-top:20px;
  padding:12px;
  background:rgba(33, 150, 243, 0.1);
  border-left:4px solid #2196F3;
  border-radius:8px;
  font-size:0.9rem;
  color:#1976D2;
}
.event-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.event-item{
  display:flex;
  gap:20px;
  padding:20px;
  background:rgba(209,135,90,0.03);
  border-radius:12px;
  border:2px solid rgba(209,135,90,0.08);
  transition:all var(--transition-smooth);
}
.event-item:hover{
  transform:translateX(8px);
  border-color:var(--brand);
  box-shadow:var(--shadow-md);
}
.event-date{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-width:70px;
  padding:12px;
  background:linear-gradient(135deg, var(--brand), var(--brand-dark));
  color:#fff;
  border-radius:12px;
  text-align:center;
  box-shadow:var(--shadow-sm);
}
.event-date .day{
  font-size:1.8rem;
  font-weight:800;
  line-height:1;
}
.event-date .month{
  font-size:0.9rem;
  font-weight:600;
  text-transform:uppercase;
  margin-top:4px;
}
.event-details h4{
  color:var(--brand-dark);
  font-size:1.15rem;
  margin-bottom:8px;
}
.event-details p{
  font-size:0.95rem;
  line-height:1.6;
}

/* Calendrier Front */
.calendar-tabs-front {
  display: flex;
  gap: 12px;
  margin: 32px auto 0;
  max-width: 1000px;
  justify-content: center;
  flex-wrap: wrap;
}

.calendar-tab-front {
  padding: 12px 24px;
  border: 2px solid rgba(209, 135, 90, 0.2);
  background: white;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-smooth);
  color: var(--muted);
}

.calendar-tab-front:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

.calendar-tab-front.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.calendar-wrapper-front {
  max-width: 1200px;
  margin: 32px auto 0;
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(209, 135, 90, 0.1);
}

.calendar-header-front {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.calendar-header-front h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-dark);
  text-transform: capitalize;
}

.calendar-nav-btn-front {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid rgba(209, 135, 90, 0.2);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
  color: var(--brand-dark);
}

.calendar-nav-btn-front:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
  transform: scale(1.05);
}

.calendar-grid-front {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day-header-front {
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-dark);
  padding: 12px 8px;
  text-transform: uppercase;
  background: rgba(209, 135, 90, 0.05);
  border-radius: 8px;
}

.calendar-day-front {
  border: 2px solid rgba(209, 135, 90, 0.1);
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: white;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 80px;
  width: 100%;
}

.calendar-day-front:hover {
  background: rgba(209, 135, 90, 0.05);
  border-color: var(--brand);
  transform: scale(1.02);
}

.calendar-day-front.other-month {
  opacity: 0.3;
  background: #f9fafb;
}

.calendar-day-front.today {
  background: rgba(209, 135, 90, 0.15);
  border-color: var(--brand);
  font-weight: 700;
}

.calendar-day-number-front {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.calendar-day-events-front {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  overflow: hidden;
}

.calendar-event-item-front {
  width: 100%;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all var(--transition-fast);
  color: white;
  margin-bottom: 2px;
  line-height: 1.3;
}

.calendar-event-item-front:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.calendar-event-item-front.tournoi {
  background: #ef4444;
}

.calendar-event-item-front.stage {
  background: #3b82f6;
}

.calendar-event-item-front.evenement {
  background: #10b981;
}

.calendar-event-item-front.autre {
  background: #f59e0b;
}

.calendar-event-more {
  font-size: 9px;
  opacity: 0.8;
}

/* Modal Event Details */
.event-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-modal.active {
  display: flex;
  opacity: 1;
}

.event-modal-content {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.event-modal.active .event-modal-content {
  transform: scale(1);
}

.event-modal-header {
  padding: 24px;
  border-bottom: 2px solid rgba(209, 135, 90, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  border-radius: 16px 16px 0 0;
}

.event-modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.event-modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all var(--transition-fast);
}

.event-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.event-modal-body {
  padding: 24px;
}

.event-modal-date {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(209, 135, 90, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--brand);
}

.event-modal-date-icon {
  font-size: 2rem;
}

.event-modal-date-info h4 {
  margin: 0 0 4px 0;
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.event-modal-date-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.event-modal-description {
  line-height: 1.7;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 20px;
}

.event-modal-category {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
}

.event-modal-category.tournoi {
  background: #fee2e2;
  color: #991b1b;
}

.event-modal-category.stage {
  background: #dbeafe;
  color: #1e40af;
}

.event-modal-category.evenement {
  background: #d1fae5;
  color: #065f46;
}

.event-modal-category.autre {
  background: #fef3c7;
  color: #92400e;
}

.calendar-events-list-front {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(209, 135, 90, 0.1);
  max-height: 600px;
  overflow-y: auto;
}

.calendar-events-list-front h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--brand-dark);
  text-align: center;
  position: sticky;
  top: 0;
  background: white;
  padding-bottom: 12px;
  z-index: 10;
}

.event-list-item-front {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(209, 135, 90, 0.03);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 2px solid rgba(209, 135, 90, 0.1);
  transition: all var(--transition-smooth);
}

.event-list-item-front:hover {
  background: rgba(209, 135, 90, 0.08);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.event-list-date-front {
  min-width: 70px;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.event-list-date-front .day {
  font-size: 28px;
  line-height: 1;
}

.event-list-date-front .month {
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.95;
  margin-top: 4px;
}

.event-list-content-front {
  flex: 1;
}

.event-list-content-front h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--brand-dark);
}

.event-list-content-front p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.event-list-badge-front {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.event-list-badge-front.tournoi {
  background: #fee2e2;
  color: #991b1b;
}

.event-list-badge-front.stage {
  background: #dbeafe;
  color: #1e40af;
}

.event-list-badge-front.evenement {
  background: #d1fae5;
  color: #065f46;
}

.event-list-badge-front.autre {
  background: #fef3c7;
  color: #92400e;
}

@media (max-width: 768px) {

  .calendar-grid-front {
    gap: 4px;
  }

  .calendar-day-front {
    height: 60px;
    padding: 6px;
  }

  .calendar-day-number-front {
    font-size: 13px;
  }

  .calendar-event-item-front {
    font-size: 9px;
    padding: 3px 4px;
  }

  .event-list-item-front {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-list-date-front {
    width: 100%;
  }

  .calendar-wrapper-front {
    padding: 16px;
  }

  .calendar-events-list-front {
    padding: 16px;
  }
}

/* News items */
.news .news-item{
  padding:28px;
  border-radius:16px;
  background:linear-gradient(135deg,#fff,#fcfcfc);
  border:2px solid rgba(209,135,90,0.08);
  margin-bottom:24px;
  transition:all var(--transition-smooth);
  position:relative;
  overflow:hidden;
}
.news-item::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:0;
  background:linear-gradient(180deg, var(--brand), var(--brand-light));
  transition:height var(--transition-smooth);
}
.news-item:hover::before{
  height:100%;
}
.news-item:hover{
  transform:translateX(8px);
  box-shadow:var(--shadow-md);
  border-color:var(--brand);
}
.news-date{
  display:inline-block;
  background:linear-gradient(135deg, var(--brand), var(--brand-light));
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:0.8rem;
  font-weight:700;
  margin-bottom:12px;
}
.news-item h4{
  margin-bottom:12px;
  color:var(--brand-dark);
  font-size:1.25rem;
  line-height:1.4;
}
.news-item p{
  font-size:1rem;
  line-height:1.7;
}
.news-item a{
  color:var(--brand);
  text-decoration:underline;
  font-weight:600;
  transition:color var(--transition-fast);
}
.news-item a:hover{
  color:var(--brand-dark);
}


/* Testimonials */
.testimonials{
  background:linear-gradient(135deg, rgba(209,135,90,0.03), rgba(210,131,89,0.01));
  padding:40px !important;
  border-radius:20px;
}
.testimonials blockquote{
  display:block;
  background:rgba(255,255,255,0.9); 
  padding:28px;
  border-radius:16px;
  border-left:6px solid var(--brand); 
  color:var(--muted); 
  margin-bottom:20px;
  font-size:1.05rem;
  font-style:italic;
  line-height:1.7;
  transition:all var(--transition-smooth);
  position:relative;
}
.testimonials blockquote::before{
  content:'"';
  position:absolute;
  top:-10px;
  left:20px;
  font-size:4rem;
  color:var(--brand);
  opacity:0.2;
  font-family:Georgia, serif;
}
.testimonials blockquote:hover{
  transform:translateX(8px);
  box-shadow:var(--shadow-md);
}

/* Contact container - 2 columns layout */
.contact-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:40px;
  align-items:start;
}

/* Contact form */
.contact-form{
  display:grid;
  gap:20px;
  background:linear-gradient(135deg, rgba(255,255,255,0.9), rgba(250,250,250,0.9)); 
  padding:40px 32px;
  border-radius:16px;
  border:2px solid rgba(209,135,90,0.1);
  box-shadow:var(--shadow-md);
  height:100%;
}
.contact-form label{
  font-weight:600;
  font-size:0.95rem;
  color:var(--text);
  margin-bottom:-12px;
}
.contact-form input, 
.contact-form textarea{
  padding:14px 16px;
  border-radius:10px;
  border:2px solid rgba(0,0,0,0.08);
  font-size:1rem;
  background:#fff;
  font-family:inherit;
  transition:all var(--transition-fast);
}
.contact-form input:focus, 
.contact-form textarea:focus{
  outline:none; 
  box-shadow:0 4px 16px rgba(209,135,90,0.2); 
  border-color:var(--brand);
  transform:translateY(-2px);
}
.btn-submit{
  background:linear-gradient(135deg, var(--brand), var(--brand-dark)); 
  color:#fff; 
  padding:14px 32px; 
  border-radius:10px; 
  border:0; 
  font-weight:700; 
  font-size:1rem;
  cursor:pointer;
  transition:all var(--transition-smooth);
  position:relative;
  overflow:hidden;
}
.btn-submit::before{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:0;
  height:0;
  border-radius:50%;
  background:rgba(255,255,255,0.3);
  transform:translate(-50%, -50%);
  transition:width 0.6s, height 0.6s;
}
.btn-submit:hover::before{
  width:400px;
  height:400px;
}
.btn-submit:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-lg);
}

/* Contact info column */
.contact-info{
  display:flex;
  flex-direction:column;
  gap:28px;
}

/* Info row - horizontal layout */
.info-row{
  display:flex;
  align-items:stretch;
  gap:20px;
}

.info-block{
  flex:1;
  background:linear-gradient(135deg, rgba(255,255,255,0.9), rgba(250,250,250,0.9));
  padding:24px;
  border-radius:16px;
  border:2px solid rgba(209,135,90,0.1);
  box-shadow:var(--shadow-sm);
  display:flex;
  flex-direction:column;
}

.info-block h3{
  color:var(--brand-dark);
  font-size:1.3rem;
  margin-bottom:16px;
}

.info-block .address{
  color:var(--text);
  line-height:1.8;
  font-size:1rem;
}

/* Round contact buttons */
.contact-buttons-round{
  display:flex;
  flex-direction:column;
  gap:10px;
  justify-content:center;
}

.contact-btn-round{
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, #ffffff, #fafafa);
  border:2px solid rgba(209,135,90,0.2);
  text-decoration:none;
  transition:all 0.3s ease;
  box-shadow:var(--shadow-sm);
}

.contact-btn-round .icon{
  font-size:1.5rem;
}

.contact-btn-round:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:var(--brand);
}

/* Map container */
.map-container{
  background:linear-gradient(135deg, rgba(255,255,255,0.9), rgba(250,250,250,0.9));
  padding:16px;
  border-radius:20px;
  border:2px solid rgba(209,135,90,0.1);
  box-shadow:var(--shadow-md);
  overflow:hidden;
}

.map-container iframe{
  display:block;
  width:100%;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

/* Footer */
footer{
  margin-top:auto;
  text-align:center;
  padding:40px 24px;
  background:linear-gradient(135deg,#fafafa,#f6f6f6);
  color:var(--muted);
  font-size:0.95rem;
  border-top:2px solid rgba(209,135,90,0.1);
  position:relative;
}
footer::before{
  content:'';
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:100px;
  height:3px;
  background:linear-gradient(90deg, var(--brand), var(--brand-light));
}

/* Footer note */
.footer-note{
  background:rgba(209,135,90,0.05);
  padding:24px;
  border-radius:12px;
  text-align:center;
  margin-top:40px;
}

/* New Footer Styles */
.site-footer {
  margin-top: auto;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: #e0e0e0;
  padding: 60px 24px 24px;
  border-top: 3px solid var(--brand);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: var(--brand);
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-column h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-column p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-contact a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a:hover {
  color: var(--brand);
  transform: translateX(4px);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--brand);
  transform: translateX(4px);
}

.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-newsletter input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.footer-newsletter input::placeholder {
  color: #888;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter button {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.footer-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 135, 90, 0.3);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all var(--transition-fast);
  font-weight: 600;
  font-size: 14px;
}

.footer-social a:hover {
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 135, 90, 0.3);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-newsletter {
    flex-direction: column;
  }

  .footer-newsletter input {
    min-width: 100%;
  }
}

/* Small helpers */
.container{max-width:var(--max-width);margin:0 auto;padding:0 24px}
.kicker{color:var(--brand);font-weight:700;font-size:0.85rem;text-transform:uppercase;letter-spacing:1px}
.cta{
  margin-top:24px;
  padding:16px;
  background:rgba(209,135,90,0.05);
  border-radius:12px;
  border-left:4px solid var(--brand);
}

/* Cookie button - bottom left */
.cookie-btn{
  position:fixed;
  bottom:30px;
  left:30px;
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.98);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border:1.5px solid rgba(209,135,90,0.2);
  border-radius:50px;
  padding:12px 20px;
  color:var(--text);
  font-size:0.9rem;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 4px 20px rgba(0,0,0,0.12);
  transition:all var(--transition-smooth);
  z-index:999;
  font-family:inherit;
}
.cookie-btn:hover{
  background:#fff;
  border-color:var(--brand);
  transform:translateY(-3px);
  box-shadow:0 6px 24px rgba(209,135,90,0.25);
}
.cookie-btn svg{
  width:20px;
  height:20px;
  fill:var(--brand);
  flex-shrink:0;
}
.cookie-btn:active{
  transform:translateY(-1px);
}

/* Cookie Modal */
.cookie-modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  z-index:10000;
  display:none;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:opacity var(--transition-smooth);
}
.cookie-modal.active{
  display:flex;
  opacity:1;
}
.cookie-modal-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.cookie-modal-content{
  position:relative;
  background:#fff;
  border-radius:20px;
  max-width:600px;
  width:90%;
  max-height:85vh;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
  animation:modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display:flex;
  flex-direction:column;
}
@keyframes modalSlideIn{
  from{
    transform:translateY(50px) scale(0.9);
    opacity:0;
  }
  to{
    transform:translateY(0) scale(1);
    opacity:1;
  }
}
.cookie-modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px 28px;
  border-bottom:2px solid rgba(209,135,90,0.1);
}
.cookie-modal-header h3{
  font-size:1.5rem;
  color:var(--text);
  margin:0;
}
.cookie-modal-close{
  width:36px;
  height:36px;
  border:none;
  background:rgba(209,135,90,0.1);
  color:var(--brand-dark);
  border-radius:50%;
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
  transition:all var(--transition-fast);
  display:flex;
  align-items:center;
  justify-content:center;
}
.cookie-modal-close:hover{
  background:var(--brand);
  color:#fff;
  transform:rotate(90deg);
}
.cookie-modal-body{
  padding:24px 28px;
  overflow-y:auto;
  flex:1;
}
.cookie-intro{
  color:var(--muted);
  line-height:1.6;
  margin-bottom:24px;
}
.cookie-category{
  margin-bottom:20px;
  padding:20px;
  background:rgba(209,135,90,0.04);
  border-radius:12px;
  border:1px solid rgba(209,135,90,0.1);
  transition:all var(--transition-fast);
}
.cookie-category:hover{
  background:rgba(209,135,90,0.08);
  border-color:var(--brand);
}
.cookie-category-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
}
.cookie-category-info h4{
  color:var(--brand-dark);
  font-size:1.1rem;
  margin-bottom:8px;
}
.cookie-category-info p{
  color:var(--muted);
  font-size:0.9rem;
  line-height:1.5;
}
/* Toggle Switch */
.cookie-switch{
  position:relative;
  display:inline-block;
  width:52px;
  height:28px;
  flex-shrink:0;
}
.cookie-switch input{
  opacity:0;
  width:0;
  height:0;
}
.cookie-slider{
  position:absolute;
  cursor:pointer;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#ccc;
  transition:var(--transition-fast);
  border-radius:28px;
}
.cookie-slider:before{
  position:absolute;
  content:"";
  height:20px;
  width:20px;
  left:4px;
  bottom:4px;
  background-color:white;
  transition:var(--transition-fast);
  border-radius:50%;
  box-shadow:0 2px 4px rgba(0,0,0,0.2);
}
.cookie-switch input:checked + .cookie-slider{
  background:linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.cookie-switch input:checked + .cookie-slider:before{
  transform:translateX(24px);
}
.cookie-switch.disabled{
  opacity:0.6;
  cursor:not-allowed;
}
.cookie-switch.disabled .cookie-slider{
  cursor:not-allowed;
}
.cookie-modal-footer{
  display:flex;
  gap:12px;
  padding:20px 28px;
  border-top:2px solid rgba(209,135,90,0.1);
  background:rgba(209,135,90,0.03);
}
.cookie-btn-primary,
.cookie-btn-secondary{
  flex:1;
  padding:14px 24px;
  border-radius:10px;
  font-weight:700;
  font-size:0.95rem;
  cursor:pointer;
  transition:all var(--transition-fast);
  border:none;
  font-family:inherit;
}
.cookie-btn-primary{
  background:linear-gradient(135deg, var(--brand), var(--brand-dark));
  color:#fff;
  box-shadow:0 4px 12px rgba(209,135,90,0.3);
}
.cookie-btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(209,135,90,0.4);
}
.cookie-btn-secondary{
  background:#fff;
  color:var(--text);
  border:2px solid rgba(209,135,90,0.3);
}
.cookie-btn-secondary:hover{
  background:rgba(209,135,90,0.1);
  border-color:var(--brand);
}

/* Scroll to top button */
.scroll-top{
  position:fixed;
  bottom:30px;
  right:30px;
  width:50px;
  height:50px;
  background:linear-gradient(135deg, var(--brand), var(--brand-dark));
  border:none;
  border-radius:50%;
  color:#fff;
  font-size:1.5rem;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transition:all var(--transition-smooth);
  box-shadow:var(--shadow-lg);
  z-index:999;
  display:flex;
  align-items:center;
  justify-content:center;
}
.scroll-top.visible{
  opacity:1;
  visibility:visible;
}
.scroll-top:hover{
  transform:translateY(-5px) scale(1.1);
  box-shadow:0 10px 30px rgba(209,135,90,0.4);
}

/* Smooth scroll already defined in html selector above */

/* Loading animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive tweaks */
@media (max-width:900px){
  header{
    padding:16px 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:fixed;
    grid-template-columns:none;
  }
  .hero{
    padding:80px 0 0 0 !important;
  }
  /* Hide reserve button and social links on mobile */
  header .header-right{
    display:none;
  }
  /* Cookie button responsive */
  .cookie-btn{
    bottom:20px;
    left:20px;
    padding:10px 16px;
    font-size:0.85rem;
  }
  .cookie-btn svg{
    width:18px;
    height:18px;
  }
  .scroll-top{
    bottom:90px;
    right:20px;
    width:45px;
    height:45px;
  }
  /* Cookie modal responsive */
  .cookie-modal-content{
    max-width:95%;
    max-height:90vh;
  }
  .cookie-modal-header{
    padding:20px 20px;
  }
  .cookie-modal-header h3{
    font-size:1.3rem;
  }
  .cookie-modal-body{
    padding:20px;
  }
  .cookie-category{
    padding:16px;
  }
  .cookie-modal-footer{
    flex-direction:column;
    padding:16px 20px;
  }
  .cookie-btn-primary,
  .cookie-btn-secondary{
    width:100%;
  }
  /* Menu toggle FIXED - toujours au même endroit, beau et épuré */
  .menu-toggle{
    display:flex !important;
    position:fixed !important;
    right:20px !important;
    top:20px !important;
    z-index:10001 !important;
    /* Force la position fixe sans aucun changement possible */
    transform:none !important;
    margin:0 !important;
    left:auto !important;
    bottom:auto !important;
    /* Lock all position properties */
    inset:20px 20px auto auto !important;
  }
  /* Logo centré parfaitement */
  header .logo{
    margin:0 auto;
    position:static;
    transform:none;
  }
  /* Mobile navigation - FIXED pour suivre le scroll */
  nav{
    position:fixed;
    top:0;
    right:-100%;
    width:85%;
    max-width:380px;
    height:100vh;
    height:100dvh; /* Dynamic viewport height */
    background:rgba(255,255,255,0.98);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    flex-direction:column;
    justify-content:flex-start;
    align-items:stretch;
    gap:4px;
    z-index:9999;
    padding:80px 24px 40px;
    box-shadow:-8px 0 32px rgba(0,0,0,0.15);
    transition:right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y:auto;
    -webkit-overflow-scrolling:touch; /* Smooth scrolling on iOS */
    /* Performance optimizations */
    will-change:right;
    contain:layout style paint;
  }
  nav.mobile-active{
    right:0;
  }
  nav a{
    font-size:1.1rem;
    padding:14px 20px;
    text-align:left;
    width:100%;
    border-radius:10px;
    transition:all var(--transition-fast);
  }
  nav a:focus{
    outline:2px solid var(--brand);
    outline-offset:2px;
  }
  nav a:focus:not(:focus-visible){
    outline:none;
  }
  nav a:focus-visible{
    outline:2px solid var(--brand);
    outline-offset:2px;
  }
  /* Mobile reserve button in menu */
  .mobile-reserve-btn{
    display:block;
    background:linear-gradient(135deg,var(--brand),var(--brand-dark));
    color:#fff !important;
    font-weight:700;
    border-radius:50px;
    margin-top:16px;
    padding:16px 28px;
    box-shadow:0 4px 14px rgba(209,135,90,0.3);
    text-align:center;
  }
  .mobile-reserve-btn:hover{
    background:linear-gradient(135deg,var(--brand-dark),var(--brand));
    transform:translateY(-2px);
  }
  .hero{
    min-height:600px;
  }
  .hero-content{
    padding:0 20px;
  }
  .hero-badges{
    flex-direction:column;
    gap:12px;
  }
  .hero-badge{
    font-size:0.8rem;
  }
  .hero h1{
    font-size:clamp(32px, 8vw, 48px);
  }
  .hero-description{
    font-size:1rem;
  }
  .hero-actions{
    flex-direction:column;
    gap:12px;
  }
  .btn-hero-primary,
  .btn-hero-secondary{
    width:100%;
    max-width:300px;
    padding:14px 30px;
  }
  .hero-scroll-indicator{
    bottom:20px;
  }
  section:not(.hero){
    padding:40px 16px;
  }
  .plans, .services-list .service-grid, .coach-grid{
    grid-template-columns:1fr;
  }
  .pricing-grid{
    grid-template-columns:1fr;
    gap:24px;
  }
  .contact-container{
    grid-template-columns:1fr;
    gap:32px;
  }
  .agenda-content{
    grid-template-columns:1fr;
  }
  .info-row{
    flex-direction:column;
    gap:20px;
  }
  .contact-buttons-round{
    flex-direction:row;
    justify-content:center;
    gap:20px;
  }
  /* Better text alignment on mobile */
  .section-header-center{
    text-align:center;
    padding:0 12px;
  }
  .section-header-center h2{
    text-align:center;
  }
  .section-header-center p{
    text-align:center;
  }
  .about-content{
    gap:24px;
  }
  /* Improve event items on mobile */
  .event-item{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .event-date{
    width:100%;
    max-width:120px;
  }
  .event-details{
    text-align:center;
  }
  .event-details h4,
  .event-details p{
    text-align:center;
  }
  /* Center all buttons on mobile */
  .btn-pricing,
  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-submit{
    margin-left:auto;
    margin-right:auto;
  }
  /* Align service cards content */
  .service{
    text-align:center;
  }
  .service h3,
  .service p{
    text-align:center;
  }
  /* Align pricing cards content */
  .pricing-card{
    text-align:center;
  }
  .pricing-card h3,
  .pricing-card .features li,
  .pricing-note{
    text-align:center;
  }
  /* Align coach cards */
  .coach{
    text-align:center;
  }
  .coach h4,
  .coach p{
    text-align:center;
  }
  /* Align news items */
  .news-item{
    text-align:left;
  }
  .news-item h4{
    text-align:left;
  }
  /* About section alignment */
  .mission,
  .history{
    text-align:left;
  }
  .mission h3,
  .history h3{
    text-align:left;
  }
  /* Pricing footer alignment */
  .pricing-footer{
    text-align:center;
  }
  .pricing-footer p{
    text-align:center;
  }
}

@media (max-width:520px){
  header{
    padding:14px 16px;
  }
  header .logo{
    margin:0 auto;
    position:static;
    transform:none;
  }
  header .logo img{
    width:48px;
    height:48px;
  }
  header.scrolled{
    padding:12px 16px;
  }
  .hero{
    padding:70px 0 0 0 !important;
  }
  /* Cookie button on small screens */
  .cookie-btn{
    bottom:16px;
    left:16px;
    padding:8px 14px;
    font-size:0.8rem;
    gap:6px;
  }
  .cookie-btn svg{
    width:16px;
    height:16px;
  }
  .cookie-btn span{
    display:none;
  }
  .scroll-top{
    bottom:80px;
    right:16px;
    width:42px;
    height:42px;
  }
  /* Cookie modal on small screens */
  .cookie-modal-header h3{
    font-size:1.2rem;
  }
  .cookie-modal-close{
    width:32px;
    height:32px;
    font-size:1.5rem;
  }
  .cookie-category-info h4{
    font-size:1rem;
  }
  .cookie-category-info p{
    font-size:0.85rem;
  }
  .cookie-btn-primary,
  .cookie-btn-secondary{
    font-size:0.9rem;
    padding:12px 20px;
  }
  /* Menu toggle fixed on small screens - compact et toujours au même endroit */
  .menu-toggle{
    right:16px !important;
    top:16px !important;
    width:42px;
    height:42px;
    padding:8px;
    gap:4px;
    /* Assure qu'il n'y a aucun mouvement */
    transform:none !important;
    margin:0 !important;
    left:auto !important;
    bottom:auto !important;
    /* Lock all position properties */
    inset:16px 16px auto auto !important;
  }
  .menu-toggle-bar{
    width:22px;
  }
  .menu-toggle.active .menu-toggle-bar:nth-child(1){
    transform:translateY(6px) rotate(45deg);
  }
  .menu-toggle.active .menu-toggle-bar:nth-child(3){
    transform:translateY(-6px) rotate(-45deg);
  }
  /* Menu items on small screens */
  nav{
    width:92%;
    max-width:340px;
    padding:70px 16px 30px;
  }
  nav a{
    font-size:1.05rem;
    padding:13px 18px;
  }
  .mobile-reserve-btn{
    padding:15px 24px;
    font-size:0.95rem;
  }
  .hero{
    min-height:500px;
  }
  .hero-content{
    padding:0 16px;
  }
  .hero h1{
    font-size:clamp(28px, 8vw, 36px);
  }
  .hero-description{
    font-size:0.95rem;
  }
  .hero-badges{
    margin-bottom:24px;
  }
  .hero-badge{
    padding:10px 20px;
    font-size:0.75rem;
  }
  .badge-icon{
    font-size:1.5rem;
  }
  .btn-hero-primary,
  .btn-hero-secondary{
    padding:12px 24px;
    font-size:0.95rem;
  }
  .carousel-img{
    height:250px;
  }
  .coach img{
    height:180px;
  }
  section:not(.hero){
    padding:32px 12px;
  }
  section h2{
    font-size:clamp(20px, 5vw, 28px);
  }
  .scroll-top{
    bottom:20px;
    right:20px;
    width:45px;
    height:45px;
  }
  .about-content{
    grid-template-columns:1fr;
  }
  /* Better spacing for cards on small screens */
  .pricing-card,
  .service,
  .coach,
  .news-item{
    margin-bottom:16px;
  }
  .pricing-card.featured{
    transform:scale(1);
  }
  .pricing-card.featured:hover{
    transform:translateY(-8px) scale(1.03);
  }
  /* Better contact form on small screens */
  .contact-form{
    padding:24px 20px;
  }
  .contact-info{
    gap:20px;
  }
  /* Improve footer note readability */
  .footer-note{
    padding:20px 16px;
    text-align:center;
  }
  .footer-note p{
    font-size:0.9rem;
    text-align:center;
  }
  /* Hero badges alignment */
  .hero-badges{
    align-items:center;
    width:100%;
  }
  .hero-badge{
    width:100%;
    max-width:280px;
    justify-content:center;
  }
  /* Contact info better alignment */
  .info-block{
    text-align:center;
  }
  .info-block h3{
    text-align:center;
  }
  .info-block .address{
    text-align:center;
  }
  /* Agenda content alignment */
  .schedule-item{
    text-align:left;
  }
  .schedule-item strong,
  .schedule-item span,
  .schedule-item small{
    display:block;
  }
}