/* ═══════════════════════════════════════════════════════════════
   ASL BOXE LA RICAMARIE — style.css
   Charte : Bleu #1A3A6B · Rouge #CC1B1B · Noir #0A0A0A
═══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --blue:    #1A3A6B;
  --red:     #CC1B1B;
  --red-h:   #e02020;
  --black:   #0A0A0A;
  --dark:    #1A1A1A;
  --light:   #F4F4F4;
  --white:   #FFFFFF;
  --text-muted: rgba(255,255,255,.55);

  --font-title: 'Oswald', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --transition: .3s ease;
  --shadow-card: 0 8px 32px rgba(0,0,0,.45);
  --shadow-btn:  0 4px 18px rgba(204,27,27,.4);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
ul  { list-style: none; }
address { font-style: normal; }
a   { text-decoration: none; color: inherit; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ── Section base ───────────────────────────────────────────── */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-black  { background: var(--black); }
.section-dark   { background: var(--dark); }
.section-light  { background: var(--light); }
.section-white  { background: var(--white); }

/* ── Section Header ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-label-dark { color: var(--blue); }

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1.05;
}
.section-title.dark { color: var(--black); }
.section-title.light { color: var(--white); }

.title-bar {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  margin: 18px auto 0;
  border-radius: 2px;
}

.section-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin-bottom: 36px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-btn);
}
.btn-red:hover, .btn-red:focus-visible {
  background: var(--red-h);
  border-color: var(--red-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(204,27,27,.55);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover, .btn-outline-white:focus-visible {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover, .btn-outline-dark:focus-visible {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white-cta {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-size: 1.1rem;
  padding: 16px 36px;
}
.btn-white-cta:hover, .btn-white-cta:focus-visible {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
}

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: .04em;
}
.badge svg { width: 14px; height: 14px; }

.badge-white { background: rgba(255,255,255,.95); color: var(--black); }
.badge-red   { background: var(--red); color: var(--white); }


/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), backdrop-filter var(--transition),
              padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .08em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-link {
  font-family: var(--font-title);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 10px; right: 10px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link:focus-visible { color: var(--white); }
.nav-link:hover::after, .nav-link:focus-visible::after { transform: scaleX(1); }

.btn-nav-cta {
  font-family: var(--font-title);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav-cta:hover, .btn-nav-cta:focus-visible {
  background: var(--red-h);
  transform: translateY(-1px);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,.6) 0%,
    rgba(10,10,10,.45) 40%,
    rgba(10,10,10,.75) 85%,
    rgba(10,10,10,.98) 100%
  );
}

/* Diagonal accent */
.hero-diag {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 120px;
  background: var(--dark);
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-logo-wrap {
  margin-bottom: 16px;
}
.hero-logo-img {
  height: 130px;
  width: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.5));
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}

.hero-location {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(.9rem, 2vw, 1.15rem);
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-chevron {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.4);
  animation: chevron-pulse 2s ease-in-out infinite;
}
.hero-chevron svg { width: 32px; height: 32px; }

@keyframes chevron-pulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .4; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: .9; }
}


/* ═══════════════════════════════════════════════════════════════
   CLUB
═══════════════════════════════════════════════════════════════ */
.club-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.club-text .title-bar { margin: 18px 0 0; }
.club-text .section-title { text-align: left; }

.club-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 44px 0 40px;
  padding: 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.club-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* Club image */
.club-image { position: relative; }
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.img-frame img {
  width: 100%; height: 500px;
  object-fit: cover;
  transition: transform .6s ease;
}
.img-frame:hover img { transform: scale(1.03); }

.img-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,58,107,.25) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.img-badge-float {
  position: absolute;
  top: 20px; left: -12px;
  z-index: 2;
}
.badge-custom-float {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,10,10,0.85);
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.4;
  border-left: 3px solid var(--red);
  backdrop-filter: blur(6px);
}
.badge-custom-float svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   DISCIPLINES
═══════════════════════════════════════════════════════════════ */

/* Subtle diagonal background lines */
.section-black::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent 0px,
      transparent 60px,
      rgba(26,58,107,.06) 60px,
      rgba(26,58,107,.06) 62px
    );
  pointer-events: none;
}

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.disc-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.disc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.disc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
}

.disc-icon {
  width: 48px; height: 48px;
  background: rgba(26,58,107,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  border: 1px solid rgba(26,58,107,.3);
}
.disc-icon svg { width: 24px; height: 24px; }

.disc-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.disc-desc {
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
}

.disc-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.disc-card:hover .disc-bar { transform: scaleX(1); }


/* ═══════════════════════════════════════════════════════════════
   NOTRE SALLE
═══════════════════════════════════════════════════════════════ */
.salle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.salle-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.salle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}

.salle-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.salle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.salle-card:hover .salle-img-wrap img {
  transform: scale(1.05);
}

.salle-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  color: var(--white);
  padding: 32px 16px 14px;
  font-family: var(--font-title);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.salle-label svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .salle-grid {
    grid-template-columns: 1fr;
  }
  .salle-img-wrap {
    height: 220px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   POUR QUI
═══════════════════════════════════════════════════════════════ */
.section-light .section-title.dark { color: var(--black); }
.section-light .title-bar { margin: 18px auto 0; }
.section-light .section-label-dark { color: var(--blue); }

.team-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.team-img {
  width: 100%; height: 380px;
  object-fit: cover;
  object-position: center 65%;
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(244,244,244,.55) 100%);
}

.public-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.pub-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 2px solid transparent;
  border-top: 4px solid var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.14);
  border-color: var(--red);
  border-top-color: var(--red);
}

.pub-icon {
  width: 52px;
  height: 52px;
  background: rgba(26,58,107,.15);
  border: 2px solid rgba(26,58,107,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pub-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.pub-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--black);
  margin-bottom: 12px;
}

.pub-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: #555;
  margin-bottom: 6px;
  line-height: 1.4;
}
.pub-detail svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════════════
   VIE DU CLUB
═══════════════════════════════════════════════════════════════ */
.vie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.vie-card-large {
  grid-column: 1 / -1;
}

.vie-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.vie-card:hover {
  transform: translateY(-4px);
}

.vie-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform .5s ease;
}
.vie-card-large img {
  height: 380px;
  object-position: center 35%;
}
.vie-card:hover img {
  transform: scale(1.04);
}

.vie-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 40px 20px 16px;
}

@media (max-width: 640px) {
  .vie-grid {
    grid-template-columns: 1fr;
  }
  .vie-card-large {
    grid-column: 1;
  }
  .vie-card img { height: 220px; }
  .vie-card-large img { height: 260px; }
}


/* ═══════════════════════════════════════════════════════════════
   HORAIRES
═══════════════════════════════════════════════════════════════ */
.schedule-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}

.sch-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 160px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 16px;
  align-items: center;
}

.sch-day {
  font-family: var(--font-title);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  width: fit-content;
}
.sch-day-blue { background: rgba(26,58,107,.35); color: #7aaaff; border: 1px solid rgba(26,58,107,.6); }
.sch-day-red  { background: rgba(204,27,27,.25); color: #ff8a8a; border: 1px solid rgba(204,27,27,.5); }

.sch-time {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  grid-column: 2;
  grid-row: 1;
}

.sch-course {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  grid-column: 1 / -1;
  margin-top: 4px;
}

@media (max-width: 480px) {
  .sch-card {
    grid-template-columns: 1fr;
  }
  .sch-time { grid-column: 1; grid-row: 2; }
}

.schedule-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(26,58,107,.15);
  border: 1px solid rgba(26,58,107,.3);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
}
.schedule-note svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.schedule-note p { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.5; }
.schedule-note strong { color: var(--white); }


/* ═══════════════════════════════════════════════════════════════
   TARIFS
═══════════════════════════════════════════════════════════════ */
.section-white .section-label-dark { color: var(--blue); }

.pass-banner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
}

.pass-banner-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pass-banner-main svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--white);
}

.pass-banner-main strong {
  font-size: 1rem;
  font-weight: 700;
}

.pass-banner-sub {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  padding-left: 30px;
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.tarif-card {
  background: var(--white);
  border: 2px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}
.tarif-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(0,0,0,.13);
  border-color: var(--blue);
}
.tarif-featured {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(204,27,27,.18);
}
.tarif-featured:hover {
  border-color: var(--red);
  box-shadow: 0 16px 44px rgba(204,27,27,.28);
}

.tarif-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-title);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.tarif-icon {
  width: 56px; height: 56px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
}
.tarif-icon svg { width: 24px; height: 24px; }
.tarif-featured .tarif-icon { background: rgba(204,27,27,.1); color: var(--red); }

.tarif-name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--black);
  margin-bottom: 16px;
}

.tarif-price {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}
.tarif-featured .tarif-price { color: var(--red); }

.price-minus {
  font-size: 2.2rem;
}

.tarif-detail {
  font-size: .85rem;
  color: #666;
  line-height: 1.55;
  margin-bottom: 24px;
}

.tarif-btn { width: 100%; justify-content: center; }

.tarifs-note {
  text-align: center;
  font-size: .88rem;
  color: #777;
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════════════ */
.section-cta {
  background: var(--red);
  padding: 100px 0;
  overflow: hidden;
}

.cta-diag {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
  opacity: .06;
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.cta-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
}

.cta-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.cta-address svg { width: 16px; height: 16px; }


/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding: 64px 0 48px;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-logo span { color: var(--red); }

.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.footer-since {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

.footer-heading {
  font-family: var(--font-title);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}

.footer-info address p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-info address svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--red); }
.footer-info a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-info a:hover { color: var(--white); }

.footer-disciplines ul li {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  padding: 4px 0;
  padding-left: 12px;
  position: relative;
}
.footer-disciplines ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}


/* ═══════════════════════════════════════════════════════════════
   STICKY CALL BUTTON (mobile)
═══════════════════════════════════════════════════════════════ */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 56px; height: 56px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(204,27,27,.55);
  transition: background var(--transition), transform var(--transition);
}
.sticky-call svg { width: 22px; height: 22px; }
.sticky-call:hover { background: var(--red-h); transform: scale(1.08); }


/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS / INTERSECTION OBSERVER
═══════════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Staggered delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }


/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.95);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 20px;
}
.lightbox.open {
  display: flex;
}
.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 80px rgba(0,0,0,.8);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 2001;
}
.lightbox-close:hover {
  background: rgba(255,255,255,.25);
}
.lightbox-close svg {
  width: 20px;
  height: 20px;
}

/* Rendre les images cliquables */
.vie-card img,
.salle-card .salle-img-wrap img {
  cursor: zoom-in;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .btn-nav-cta { display: none; }

  .club-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .club-image { order: -1; }
  .img-frame img { height: 360px; }
  .club-text .section-title { text-align: center; }
  .club-text .title-bar { margin: 18px auto 0; }
  .club-text .section-body { margin-inline: auto; text-align: center; }
  .club-text .btn-red { display: flex; width: fit-content; margin: 0 auto; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .section { padding: 70px 0; }

  /* Nav mobile */
  .nav-burger {
    display: flex;
    z-index: 1002;
    position: relative;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: #0a0a0a;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 120px 32px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 1001;
    overflow-y: auto;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateX(0);
    pointer-events: all;
  }
  .nav-link {
    font-size: 1.4rem;
    padding: 10px 0;
    width: 100%;
  }
  .btn-nav-cta {
    display: none;
  }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-chevron { bottom: 150px; }

  /* Stats */
  .club-stats { grid-template-columns: 1fr; gap: 16px; }

  /* Tarifs */
  .tarifs-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 0 36px;
  }

  /* Sticky call */
  .sticky-call { display: flex; }
}

@media (max-width: 400px) {
  .hero-badges { flex-direction: column; align-items: center; }
}

/* ── Focus visible (accessibility) ─────────────────────────── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .fade-up, .reveal { opacity: 1; transform: none; }
}
