@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #6B3FA0;
  --primary-light: #8B5CC8;
  --primary-dark: #4A2875;
  --accent: #F4845F;
  --accent-light: #F9A98E;
  --dark: #1A1020;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --bg: #FAFAFF;
  --bg-alt: #F3F0F8;
  --white: #FFFFFF;
  --border: #E0D8EE;
  --shadow: 0 4px 24px rgba(107,63,160,0.10);
  --shadow-lg: 0 12px 48px rgba(107,63,160,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}

.nav-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.5px;
  display: block;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--bg-alt);
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 8px !important;
}

.nav-cta:hover {
  background: var(--primary-light) !important;
  color: white !important;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.6;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.2rem !important;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem !important;
}

.dropdown-menu a:last-child { border-bottom: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.mobile-menu a:hover { background: var(--bg-alt); color: var(--primary); }

.mobile-menu .mobile-sub {
  padding-left: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  background: linear-gradient(135deg, #2A1050 0%, var(--primary) 50%, var(--primary-light) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://static.wixstatic.com/media/11062b_a8b6a123c05746299a5ac0ea44867274~mv2.jpg') center/cover;
  opacity: 0.15;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: white;
}

.hero-shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-shape-2 { width: 300px; height: 300px; bottom: -100px; left: -50px; }
.hero-shape-3 { width: 150px; height: 150px; top: 30%; left: 10%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(244,132,95,0.4);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,132,95,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  margin-top: 0.4rem;
  font-weight: 400;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
}

.section-alt { background: var(--bg-alt); }

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

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

.section-tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--primary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.section-tag.accent {
  background: rgba(244,132,95,0.1);
  color: var(--accent);
  border-color: rgba(244,132,95,0.2);
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== ACTIVITÉS GRID ===== */
.activities-intro {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  color: white;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.activities-intro p { opacity: 0.9; line-height: 1.7; }

.activities-intro strong { color: var(--accent-light); }

.activities-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.activities-group h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.activity-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  background: white;
  border: 1px solid var(--border);
}

.activity-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(107,63,160,0.04);
  transform: translateX(4px);
}

.activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.activity-dot.accent { background: var(--accent); }

/* Cards activités détaillées */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.activity-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.activity-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.activity-card-body {
  padding: 1.5rem;
}

.activity-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.activity-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.activity-schedule {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(107,63,160,0.08);
  color: var(--primary);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== PLANNING ===== */
.planning-container {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.planning-img {
  width: 100%;
  display: block;
}

.planning-note {
  background: rgba(107,63,160,0.05);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  color: var(--text-light);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== INSCRIPTION ===== */
.inscription-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.inscription-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-body h3 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--dark);
}

.step-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.inscription-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: var(--dark);
}

.inscription-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.inscription-card li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.inscription-card li:last-child { border-bottom: none; }

.inscription-card li::before {
  content: '→';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}

.btn-contact:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ===== SALLES ===== */
.salles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.salle-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.salle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.salle-icon {
  width: 48px;
  height: 48px;
  background: rgba(107,63,160,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.salle-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.salle-card address {
  font-style: normal;
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.salle-metro {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #003189;
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.salle-courses {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.6;
  border: 1px solid var(--border);
}

/* ===== BUREAU ===== */
.bureau-section {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: white;
  margin-top: 3rem;
}

.bureau-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.bureau-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.bureau-role {
  margin-bottom: 1.5rem;
}

.bureau-role h4 {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.bureau-role p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===== PARTENAIRES ===== */
.partenaires {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.partenaires img {
  height: 60px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.8;
  transition: var(--transition);
}

.partenaires img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(107,63,160,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.contact-item p, .contact-item a {
  color: var(--text-light);
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1.6;
}

.contact-item a:hover { color: var(--primary); }

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

.social-link {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition);
  color: var(--text);
}

.social-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.contact-form-area {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form-area h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(107,63,160,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ===== ACTUALITÉS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-card-header {
  background: var(--primary);
  padding: 1.5rem;
  color: white;
}

.news-date {
  font-size: 0.78rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.news-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.35;
}

.news-card-body {
  padding: 1.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

.forum-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}

.forum-highlight h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.forum-highlight p { opacity: 0.9; font-size: 1rem; margin-bottom: 1.5rem; }

.forum-highlight .date-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 1.5rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: white; }

.footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 6rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://static.wixstatic.com/media/11062b_a8b6a123c05746299a5ac0ea44867274~mv2.jpg') center/cover;
  opacity: 0.08;
}

.page-header-content { position: relative; z-index: 1; }

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

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

.fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .activities-columns { grid-template-columns: 1fr; }
  .inscription-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .activities-grid { grid-template-columns: 1fr; }
  .salles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== PLANNING TABLE ===== */
.planning-legend {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot.douce { background: var(--primary); }
.legend-dot.dynamique { background: var(--accent); }

.planning-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 1rem;
}

.planning-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.planning-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.planning-table thead tr {
  background: var(--primary);
}

.planning-table thead th {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-align: center;
  letter-spacing: 0.3px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.planning-table thead th:last-child { border-right: none; }

.th-heure {
  width: 90px;
  background: var(--primary-dark) !important;
  font-size: 0.8rem !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
}

.planning-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.planning-table tbody tr:last-child { border-bottom: none; }

.planning-table tbody tr:hover { background: var(--bg-alt); }

.planning-table tbody td {
  padding: 0.6rem 0.75rem;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid var(--border);
  min-width: 130px;
}

.planning-table tbody td:last-child { border-right: none; }

.td-heure {
  background: var(--bg-alt) !important;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  text-align: center !important;
  min-width: 70px !important;
  border-right: 2px solid var(--border) !important;
}

.cours {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  width: 100%;
}

.cours.douce {
  background: rgba(107,63,160,0.08);
  border: 1px solid rgba(107,63,160,0.2);
}

.cours.dynamique {
  background: rgba(244,132,95,0.1);
  border: 1px solid rgba(244,132,95,0.25);
}

.cours-nom {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  line-height: 1.2;
}

.cours.douce .cours-nom { color: var(--primary); }
.cours.dynamique .cours-nom { color: #C0542A; }

.cours-salle {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 400;
}
