/* =========================================
   AVALON — Terres de Jeux et d'Utopies
   CSS — Mobile-first, responsive
   ========================================= */

/* ---- CSS Variables ---- */
:root {
  --bg: #0b0f14;
  --bg2: #111820;
  --bg3: #161e28;
  --card: #1a2230;
  --card2: #1f293a;
  --border: rgba(255,255,255,0.07);
  --gold: #d4a017;
  --gold-light: #f0be3a;
  --green: #3a7a50;
  --green-light: #4e9e6a;
  --red: #c0392b;
  --text: #e8ecf0;
  --text-muted: #8a9ab0;
  --text-dim: #5a6a7a;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --transition: 0.3s ease;
  --nav-height: 70px;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Raleway', sans-serif;
}

/* ---- 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(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1200px) { .container { padding: 0 2.5rem; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

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

/* ---- Sections ---- */
.section {
  padding: 5rem 0;
}
.section--dark {
  background: var(--bg2);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: rgba(212,160,23,0.12);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(212,160,23,0.2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.section-desc {
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

/* Navbar transparent (top) — readable links */
.navbar:not(.scrolled):not(.menu-open) .logo-sub {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.navbar:not(.scrolled):not(.menu-open) .nav-link {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.navbar:not(.scrolled):not(.menu-open) .nav-link:hover,
.navbar:not(.scrolled):not(.menu-open) .nav-link.active {
  color: #fff;
  background: rgba(0,0,0,0.2);
}
.navbar:not(.scrolled):not(.menu-open) .nav-dropdown-menu {
  background: rgba(11,15,20,0.95);
  backdrop-filter: blur(10px);
}

.navbar.scrolled,
.navbar.menu-open {
  background: #0b0f14;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .nav-container { padding: 0 2rem; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
}
.logo-icon {
  font-size: 1.5rem;
  color: var(--gold);
}
.logo-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg) brightness(0.85);
  transition: filter var(--transition);
}
.logo-icon-img--footer {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: none;
  transition: color var(--transition);
}
@media (min-width: 400px) { .logo-sub { display: block; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  background: var(--gold);
  color: var(--bg) !important;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  margin-left: 0.5rem;
}
.nav-cta.active {
  background: var(--gold-light);
  color: var(--bg) !important;
  box-shadow: 0 0 12px rgba(212,160,23,0.6), 0 0 24px rgba(212,160,23,0.3);
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--bg) !important;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-link--dropdown {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-link--dropdown svg {
  transition: transform 0.3s;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #0b0f14;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}
.nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  padding-left: 1.5rem;
}

/* Desktop: hover to open */
@media (min-width: 960px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown:hover .nav-link--dropdown svg {
    transform: rotate(180deg);
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 960px) { .hamburger { display: none; } }

/* Mobile menu */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b0f14;
  padding: 2rem 1.5rem;
  gap: 0.5rem;
  align-items: stretch;
  z-index: 999;
  overflow-y: auto;
}
.nav-links.mobile-open .nav-link {
  font-size: 1.2rem;
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.nav-links.mobile-open .nav-cta {
  margin: 0.75rem 0 0;
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Mobile dropdown */
.nav-links.mobile-open .nav-dropdown {
  display: flex;
  flex-direction: column;
}
.nav-links.mobile-open .nav-link--dropdown {
  font-size: 1.2rem;
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  justify-content: flex-start;
}
.nav-links.mobile-open .nav-dropdown-menu {
  display: none;
  position: static;
  transform: none;
  min-width: 0;
  background: rgba(255,255,255,0.03);
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  border-bottom: 1px solid var(--border);
}
.nav-links.mobile-open .nav-dropdown-menu a {
  padding: 0.75rem 1rem 0.75rem 1.5rem;
  font-size: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.nav-links.mobile-open .nav-dropdown-menu a:hover {
  padding-left: 1rem;
}
.nav-links.mobile-open .nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-links.mobile-open .nav-dropdown.open .nav-link--dropdown svg {
  transform: rotate(180deg);
}

/* "Voir toutes les activités" link in dropdown */
.nav-dropdown-all {
  color: var(--gold) !important;
  font-weight: 600 !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0.25rem;
  padding-top: 0.75rem !important;
}
.nav-dropdown-all:hover {
  color: var(--white) !important;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 1.25rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,15,20,0.3) 0%,
    rgba(11,15,20,0.55) 40%,
    rgba(11,15,20,0.85) 80%,
    rgba(11,15,20,1) 100%
  );
}

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

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.title-line { display: block; }
.title-line.accent { color: var(--gold); }

.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(232,236,240,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-scroll {
  position: relative;
  z-index: 1;
  margin: 2rem 0;
}
.hero-scroll button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--gold);
  transition: color 0.3s;
}
.hero-scroll button:hover { color: #fff; }
.scroll-arrow {
  animation: bounce 2s infinite;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 600px;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(11,15,20,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

@media (min-width: 480px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-unit {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ==========================================
   ACTIVITIES
   ========================================== */
.activities-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .activities-grid { grid-template-columns: repeat(3, 1fr); }
}

.activity-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,160,23,0.25);
}
.activity-card--featured {
  border-color: rgba(212,160,23,0.3);
}
.activity-card--featured:hover {
  border-color: var(--gold);
}

.activity-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.activity-img img { transition: transform 0.5s ease; }
.activity-card:hover .activity-img img { transform: scale(1.05); }
.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,15,20,0.7) 0%, transparent 60%);
}

.activity-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(11,15,20,0.85);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.activity-badge.accent-red { color: #ff6b6b; border-color: rgba(255,107,107,0.3); }
.activity-badge.accent-gold { color: var(--gold); border-color: rgba(212,160,23,0.3); }

.activity-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.activity-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.activity-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}
.activity-features {
  margin-bottom: 1.25rem;
}
.activity-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.activity-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}
.activity-next-session {
  display: block;
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.activity-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.activity-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition);
}
.activity-link:hover { color: var(--gold-light); }
.activity-link--more {
  color: var(--text-muted);
}
.activity-link--more:hover { color: var(--white); }

/* ==========================================
   TERRAINS
   ========================================== */
.terrains-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .terrains-grid { grid-template-columns: repeat(2, 1fr); }
}

.terrain-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.terrain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.terrain-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.terrain-img-wrapper img { transition: transform 0.5s ease; }
.terrain-card:hover .terrain-img-wrapper img { transform: scale(1.03); }
.terrain-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,15,20,0.8) 0%, transparent 60%);
}

.terrain-content { padding: 1.75rem; }
.terrain-badge {
  display: inline-block;
  background: rgba(212,160,23,0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(212,160,23,0.25);
  margin-bottom: 0.75rem;
}
.terrain-badge--alt {
  background: rgba(58,122,80,0.15);
  color: var(--green-light);
  border-color: rgba(58,122,80,0.3);
}

.terrain-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.terrain-location {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.terrain-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.terrain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* ==========================================
   SESSIONS
   ========================================== */
.sessions-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

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

.session-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.session-card:hover {
  border-color: rgba(212,160,23,0.25);
  transform: translateX(4px);
}
.session-card.hidden { display: none; }

@media (min-width: 600px) {
  .session-card {
    flex-direction: row;
    align-items: center;
  }
}

.session-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  align-self: flex-start;
}
.session-day {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.session-month {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.session-info { flex: 1; }
.session-type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.4rem;
}
.session-type.airsoft { background: rgba(74,124,89,0.2); color: var(--green-light); border: 1px solid rgba(74,124,89,0.3); }
.session-type.lasertag { background: rgba(52,152,219,0.2); color: #5dade2; border: 1px solid rgba(52,152,219,0.3); }
.session-type.zombieland { background: rgba(192,57,43,0.2); color: #e74c3c; border: 1px solid rgba(192,57,43,0.3); }
.session-type.gn { background: rgba(212,160,23,0.15); color: var(--gold); border: 1px solid rgba(212,160,23,0.25); }

.session-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.session-details { font-size: 0.85rem; color: var(--text-muted); }

.session-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
@media (min-width: 600px) {
  .session-action { align-items: flex-end; }
}

.session-spots {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.spots-ok { background: rgba(39,174,96,0.15); color: #2ecc71; border: 1px solid rgba(39,174,96,0.2); }
.spots-low { background: rgba(243,156,18,0.15); color: #f39c12; border: 1px solid rgba(243,156,18,0.2); }
.spots-full { background: rgba(192,57,43,0.15); color: #e74c3c; border: 1px solid rgba(192,57,43,0.2); }

.sessions-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.sessions-cta p { color: var(--text-muted); margin-bottom: 1.25rem; }
.sessions-cta strong { color: var(--white); }

/* ==========================================
   TARIFS
   ========================================== */
.tarifs-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .tarifs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .tarifs-grid { grid-template-columns: repeat(3, 1fr); } }

.tarif-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition);
}
.tarif-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,160,23,0.2);
}
.tarif-card--highlight {
  border-color: var(--gold) !important;
  background: var(--card2);
}
.tarif-card--membership {
  border-color: rgba(74,124,89,0.3);
}

.tarif-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  white-space: nowrap;
}

.tarif-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.tarif-icon { font-size: 1.5rem; }
.tarif-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.tarif-body { flex: 1; }
.tarif-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.tarif-row:last-child { border-bottom: none; }
.tarif-price { font-weight: 700; color: var(--text); }
.tarif-price--big { font-size: 1.2rem; font-family: var(--font-heading); }
.tarif-price--big.accent { color: var(--gold); }
.tarif-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.5rem;
}
.tarif-btn { margin-top: 1.5rem; }

.tarif-card--full {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
  padding: 1.5rem 2rem;
}
.tarif-membership-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.tarif-membership-inner > div:first-child { flex: 1; min-width: 200px; }
.tarif-membership-inner .tarif-header { margin-bottom: 0.5rem; }
.tarif-membership-inner .tarif-note { margin: 0; }
.tarif-membership-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.tarif-membership-price .tarif-price--big {
  font-size: 2rem;
}
.tarif-price-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 599px) {
  .tarif-card--full { padding: 1.25rem; }
  .tarif-membership-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .tarif-membership-inner .btn { width: 100%; justify-content: center; }
}

.payment-info {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.payment-info strong { color: var(--text); }

/* ==========================================
   GALLERY
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ==========================================
   ABOUT
   ========================================== */
.about-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}
.about-content strong { color: var(--text); }
.about-content .section-title { text-align: left; }
.about-content .section-tag { /* keep left */ }

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-icon { font-size: 1.5rem; flex-shrink: 0; }
.value-item strong { color: var(--white); font-size: 1rem; display: block; margin-bottom: 0.2rem; }
.value-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}
.about-image img { border-radius: var(--radius-lg); }
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(11,15,20,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
}
.about-img-badge strong { color: var(--gold); font-family: var(--font-heading); font-size: 1rem; display: block; }

/* ==========================================
   ACTIVITY PAGES
   ========================================== */
.activity-page { padding-bottom: 4rem; }

.activity-hero {
  position: relative;
  height: 50vh;
  min-height: 300px;
  max-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.activity-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activity-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,15,20,1) 0%, rgba(11,15,20,0.4) 60%, rgba(11,15,20,0.2) 100%);
}
.activity-hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.activity-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.activity-hero-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

.activity-detail {
  max-width: 900px;
  margin: 2.5rem auto;
}
.activity-detail h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(212,160,23,0.3);
}
.activity-detail p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.activity-detail strong { color: var(--text); }

.activity-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 600px) {
  .activity-info-grid { grid-template-columns: repeat(4, 1fr); }
}
.activity-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.ai-icon { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
.activity-info-card strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.activity-info-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Tarif tables */
.tarif-table-wrapper {
  overflow-x: auto;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.tarif-table-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  padding: 1rem 1.25rem 0.5rem;
  background: var(--card);
  margin: 0;
}
.tarif-table-wrapper .tarif-table-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0 1.25rem 0.75rem;
  background: var(--card);
  margin: 0;
}
.tarif-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.tarif-table th {
  background: var(--bg3);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.tarif-table th:first-child,
.tarif-table td:first-child { text-align: left; }
.tarif-table td {
  padding: 0.65rem 1rem;
  color: var(--text);
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.tarif-table tr:last-child td { border-bottom: none; }
.tarif-table td:first-child {
  color: var(--text-muted);
  font-weight: 600;
}

/* Tarif simple cards (sur devis) */
.tarif-simple {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.tarif-simple p { margin: 0; }
.tarif-simple .tarif-simple-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.tarif-simple .tarif-simple-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

/* Tarif highlight cards (zombieland) */
.tarif-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
.tarif-card-simple {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.tarif-card-simple.highlight {
  border-color: var(--gold);
  background: rgba(212,160,23,0.08);
}
.tarif-card-simple .price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.tarif-card-simple .price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

/* Activity CTA */
.activity-cta {
  text-align: center;
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.activity-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.activity-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-page { padding-bottom: 4rem; }
.about-section {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.about-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(212,160,23,0.3);
}
.about-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.about-section strong { color: var(--text); }
.about-section a { color: var(--gold); }

.about-values-detailed {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
}
.value-detail {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.value-detail h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.value-detail p { margin: 0; }

.about-activities-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 600px) {
  .about-activities-list { grid-template-columns: repeat(2, 1fr); }
}
.about-activity {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.about-activity h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.about-activity p { margin: 0; font-size: 0.9rem; }

.about-terrains {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 600px) {
  .about-terrains { grid-template-columns: repeat(2, 1fr); }
}
.about-terrain {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.about-terrain h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.about-terrain p { font-size: 0.9rem; }

.about-list {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: none;
}
.about-list li { padding: 0.2rem 0; position: relative; padding-left: 1.25rem; }
.about-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.about-cta {
  text-align: center;
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 2.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.about-cta p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.about-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   RESERVATION / CONTACT
   ========================================== */
.reservation-section {
  background: var(--bg);
}

.form-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .form-grid { grid-template-columns: 1fr 400px; }
}

.reservation-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group:last-child { margin-bottom: 0; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a9ab0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option { background: var(--bg2); }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.25);
  border-radius: 8px;
  color: #2ecc71;
  font-size: 0.95rem;
  text-align: center;
}

/* Contact card */
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.contact-card h3 {
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { font-size: 1.25rem; flex-shrink: 0; }
.contact-info-item strong { display: block; color: var(--text); font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-info-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.contact-info-item a { color: var(--text-muted); }
.contact-info-item a:hover { color: var(--gold); }

.social-links { display: flex; gap: 0.75rem; }
.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.social-btn svg {
  flex-shrink: 0;
}
.social-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.social-btn.facebook:hover { background: rgba(66,103,178,0.2); border-color: rgba(66,103,178,0.4); color: #5b7abf; }
.social-btn.instagram:hover { background: rgba(193,53,132,0.2); border-color: rgba(193,53,132,0.4); color: #e1306c; }

.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.map-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: var(--card);
}

.form-social {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.footer-brand .logo-icon { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; margin: 0.25rem 0; }
.footer-desc { color: var(--text-dim); font-size: 0.8rem; }

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}
@media (min-width: 600px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-note strong { color: var(--gold); }

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(212,160,23,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-3px);
  color: var(--bg);
}

/* ==========================================
   KEYFRAMES
   ========================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ==========================================
   MOBILE COLLAPSE — Show more / less
   ========================================== */
.show-more-btn {
  display: none;
  margin: 1.5rem auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  align-items: center;
  gap: 0.5rem;
}
.show-more-btn:hover {
  background: rgba(212,160,23,0.1);
  border-color: var(--gold);
}
.show-more-btn svg {
  transition: transform 0.3s;
}
.show-more-btn.expanded svg {
  transform: rotate(180deg);
}

/* Mobile only: collapse + show button */
@media (max-width: 899px) {
  .show-more-btn { display: flex; }
  .activities-grid.collapsed .activity-card:nth-child(n+4) { display: none; }
  .tarifs-grid.collapsed .tarif-card:nth-child(n+4) { display: none; }
}
@media (max-width: 599px) {
  .activities-grid.collapsed .activity-card:nth-child(n+3) { display: none; }
  .tarifs-grid.collapsed .tarif-card:nth-child(n+3) { display: none; }
}

/* ==========================================
   RESPONSIVE — Mobile enhancements
   ========================================== */

/* -- Small screens (< 480px) -- */
@media (max-width: 479px) {
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-desc { font-size: 0.95rem; }

  /* Hero */
  .hero { padding: 0 1rem; }
  .hero-content { padding-top: 5rem; }
  .hero-title { margin-bottom: 1rem; }
  .hero-desc { margin-bottom: 1.5rem; font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { padding: 1rem; gap: 0.5rem; margin-top: 1.5rem; }
  .stat-number { font-size: 1.5rem; }
  .stat-unit { font-size: 1rem; }

  /* Activities */
  .activity-actions { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .activity-body { padding: 1.25rem; }
  .activity-img { height: 160px; }

  /* Sessions */
  .session-card { padding: 1rem; }
  .session-date { flex-direction: row; gap: 0.5rem; padding: 0.5rem 0.75rem; }
  .session-day { font-size: 1.3rem; }
  .session-action { flex-direction: row; align-items: center; flex-wrap: wrap; }

  /* Tarifs */
  .tarif-card { padding: 1.25rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gallery-item--wide { grid-column: span 1; }

  /* About */
  .about-image { height: 260px; }
  .about-img-badge { bottom: 1rem; left: 1rem; padding: 0.5rem 1rem; font-size: 0.8rem; }

  /* Contact form */
  .reservation-form { padding: 1.25rem; }
  .contact-card { padding: 1.25rem; }

  /* Footer */
  .footer { padding: 2.5rem 0 1.5rem; }
  .footer-grid { gap: 1.5rem; }

  /* Buttons - touch-friendly */
  .btn { padding: 0.85rem 1.5rem; font-size: 0.9rem; min-height: 44px; }
  .btn-sm { padding: 0.55rem 1rem; min-height: 44px; }

  /* Sessions CTA */
  .sessions-cta { padding: 1.25rem; }
}

/* -- Medium screens (480px–767px) -- */
@media (min-width: 480px) and (max-width: 767px) {
  .hero-actions .btn { min-width: 200px; justify-content: center; }
  .gallery-grid { grid-auto-rows: 180px; }
  .about-image { height: 300px; }
}

/* -- Touch targets for all mobile (< 960px) -- */
@media (max-width: 959px) {
  /* Larger touch targets */
  .filter-btn { padding: 0.55rem 1.25rem; min-height: 44px; }
  .nav-link { min-height: 44px; display: flex; align-items: center; }
  .social-btn { min-height: 44px; display: flex; align-items: center; justify-content: center; }

  /* Activity hover disabled on touch */
  .activity-card:hover { transform: none; }
  .terrain-card:hover { transform: none; }
  .tarif-card:hover { transform: none; }
  .session-card:hover { transform: none; }
}

/* -- Ensure inputs are 16px+ to avoid iOS zoom -- */
@media (max-width: 767px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
  }
}
