@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');

/* ===== VARIABLES ===== */
:root {
  --red: #E8002D;
  --red-dark: #b5001f;
  --red-glow: rgba(232, 0, 45, 0.25);
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #181818;
  --dark-3: #222222;
  --white: #f5f5f5;
  --grey: #888888;
  --grey-light: #cccccc;
  --font-display: 'Bebas Neue', sans-serif;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ===== NOISE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,93,0,0.15);
  transition: border-color 0.3s;
}
.navbar.scrolled {
  border-bottom-color: rgba(232,93,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--orange-glow));
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  color: var(--grey-light);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  color: var(--grey-light);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mob-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 14px 40px;
  font-size: 1.4rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-team.jpg');
  background-size: cover;
  background-position: center center;
  filter: brightness(0.32) saturate(0.7);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 48%, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.35) 60%, transparent 100%),
    linear-gradient(
      180deg,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0.25) 30%,
      rgba(10,10,10,0.3) 60%,
      rgba(10,10,10,0.96) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeUp 1s ease both;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  animation: fadeUp 1s 0.1s ease both;
}
.hero-eyebrow span {
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--orange);
  vertical-align: middle;
  margin: 0 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-title em {
  color: var(--orange);
  font-style: normal;
}

.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  color: var(--grey-light);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.5;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.4s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--orange-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1s 0.8s ease both;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--orange), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
  position: relative;
  padding: 160px 40px 80px;
  text-align: center;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,93,0,0.12) 0%, transparent 70%);
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.page-eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  color: var(--white);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}
.section-sm {
  padding: 60px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
}

.section-text {
  color: var(--grey-light);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 600px;
}

/* ===== DIVIDERS ===== */
.orange-line {
  width: 60px; height: 3px;
  background: var(--orange);
  margin: 24px 0;
}

/* ===== WELCOME SECTION (home) ===== */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-img-wrap {
  position: relative;
}
.welcome-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: saturate(0.7);
}
.welcome-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid rgba(232,93,0,0.3);
  z-index: -1;
}
.welcome-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 100px; height: 100px;
  background: var(--orange);
  z-index: -1;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 8px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(232,93,0,0.08) 0%, transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(232,93,0,0.06) 0%, transparent 35%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 14px);
  pointer-events: none;
}
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  outline: 2px solid rgba(232,93,0,0.2);
}

/* ===== NEWS / INSTAGRAM ===== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.8);
  transition: filter 0.4s, transform 0.4s;
}
.insta-item:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.05);
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,93,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-icon { font-size: 2rem; color: white; }

/* ===== ACTUALITE SECTION ===== */
.actu-box {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid var(--orange);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.actu-box::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232,93,0,0.04));
  pointer-events: none;
}
.actu-dot {
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--orange-glow); }
  50% { box-shadow: 0 0 0 10px transparent; }
}
.actu-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--grey-light);
  line-height: 1.6;
}
.actu-text a { color: var(--orange); }

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: 2px solid rgba(232,93,0,0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.15);
  border-bottom-color: var(--orange);
  background: var(--dark-3);
}
.form-group textarea { min-height: 140px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(232,93,0,0.2);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px var(--orange-glow));
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-desc {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--grey);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232,93,0,0.08);
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--grey);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--grey);
  font-family: var(--font-head);
}
.footer-badge {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(232,93,0,0.3);
  padding: 4px 12px;
}

/* ===== HISTORY PAGE ===== */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), rgba(232,93,0,0.1));
}
.timeline-item {
  position: relative;
  margin-bottom: 50px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -46px;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--orange-glow);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.timeline-event {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.timeline-detail {
  color: var(--grey);
  font-size: 0.9rem;
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.team-card:hover { border-color: rgba(232,93,0,0.3); transform: translateY(-4px); }
.team-card:hover::before { transform: scaleX(1); }
.team-role {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.team-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.team-card a { color: inherit; }
.team-card a:hover { color: var(--orange); }

/* Accomplishments */
.trophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trophy-item {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.trophy-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.trophy-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.trophy-text span {
  font-size: 0.85rem;
  color: var(--grey);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6);
  transition: filter 0.4s, transform 0.4s;
}
.gallery-img:hover img {
  filter: saturate(1);
  transform: scale(1.04);
}

/* ===== FOOT-FAUTEUIL PAGE ===== */
.rules-block {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid var(--orange);
  padding: 32px 40px;
  margin-bottom: 24px;
}
.rule-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.rule-text {
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.chairs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.chair-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.chair-card:hover { transform: translateY(-6px); border-color: rgba(232,93,0,0.4); }
.chair-img {
  height: 260px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chair-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
  filter: none;
  transition: transform 0.4s;
}
.chair-card:hover .chair-img img { transform: scale(1.04); }
.chair-info {
  padding: 24px;
}
.chair-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}
.chair-desc {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Competitions */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.comp-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px;
  text-align: center;
  transition: border-color 0.2s;
}
.comp-card:hover { border-color: rgba(232,93,0,0.4); }
.comp-level {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.comp-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.comp-desc {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.5;
}

/* ===== SPONSORS PAGE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.why-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 32px 24px;
  text-align: center;
}
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.why-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-text {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.6;
}

.sponsors-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
}
.sponsor-logo-item {
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
}
.sponsor-logo-item:hover { opacity: 1; filter: grayscale(0); }
.sponsor-logo-item img { height: 60px; object-fit: contain; }

.empty-sponsors {
  text-align: center;
  padding: 60px;
  color: var(--grey);
  font-family: var(--font-head);
  font-size: 1rem;
  border: 2px dashed rgba(255,255,255,0.08);
}

/* ===== ADMIN PAGE ===== */
.doc-grid {
  display: grid;
  gap: 12px;
}
.doc-item {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: border-color 0.2s;
}
.doc-item:hover { border-color: rgba(232,93,0,0.3); }
.doc-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.doc-icon {
  width: 44px; height: 44px;
  background: rgba(232,93,0,0.1);
  border: 1px solid rgba(232,93,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
}
.doc-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.doc-type {
  font-size: 0.75rem;
  color: var(--grey);
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.doc-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(232,93,0,0.3);
  padding: 8px 16px;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.doc-download:hover { background: var(--orange); color: var(--white); }

/* ===== INSCRIPTION PAGE ===== */
.notion-embed-wrap {
  position: relative;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.notion-embed-wrap iframe {
  width: 100%;
  min-height: 900px;
  border: none;
  display: block;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--orange);
  overflow: hidden;
  padding: 10px 0;
}
.ticker {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.ticker-item::after {
  content: '⚡';
  opacity: 0.6;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .welcome-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr; }
  .trophy-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .chairs-grid { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .container, .container-sm { padding: 0 20px; }
  .section { padding: 60px 0; }
  .page-header { padding: 120px 20px 60px; }
  .actu-box { flex-direction: column; padding: 28px 24px; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 3.5rem; }
}

/* ===== AJOUTS — bouton encadré façon "image frame" ===== */
.btn-framed-wrap {
  position: relative;
  display: inline-block;
  padding: 12px 14px 14px 12px;
}
.btn-framed-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 18px; bottom: 12px;
  border: 2px solid rgba(232,93,0,0.35);
  z-index: 0;
  pointer-events: none;
}
.btn-framed-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 42px; height: 42px;
  background: var(--orange);
  z-index: 0;
  pointer-events: none;
}
.btn-framed-wrap .btn-primary {
  position: relative;
  z-index: 1;
}

/* ===== Habillage vidéo classe ===== */
.video-section { position: relative; overflow: hidden; }
.video-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 18px;
}
.video-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 70px; height: 70px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
}
.video-frame::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 70px; height: 70px;
  border-bottom: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
}
.video-frame .video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,93,0,0.2);
}
.video-frame .video-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.video-badge {
  position: absolute;
  top: -2px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 6px 22px;
  z-index: 3;
}

/* ===== Icônes sociales SVG ===== */
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }
.soc-inline { display: inline-flex; align-items: center; gap: 8px; }
.soc-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(232,93,0,0.3);
  color: var(--grey-light);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.soc-icon-btn svg { width: 15px; height: 15px; fill: currentColor; }
.soc-icon-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ===== Encadré info (inscription / where) ===== */
.info-frame {
  position: relative;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid var(--orange);
  padding: 32px 40px;
  margin-bottom: 24px;
}
.info-frame h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.info-frame p { color: var(--grey-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 10px; }
.info-frame .info-row { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.info-frame .info-ico { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; }
.info-frame .info-row strong { color: var(--white); font-family: var(--font-head); }
.info-frame a { color: var(--orange); }

/* ===== Déduction fiscale ===== */
.fiscal-box {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border: 1px solid rgba(232,93,0,0.2);
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}
.fiscal-box::before {
  content: '💶';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 6rem;
  opacity: 0.06;
}

/* ===== Boutons sociaux dans les cartes équipe ===== */
.team-socials { display: flex; gap: 10px; margin-top: 14px; }
.team-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(232,93,0,0.3);
  color: var(--grey-light);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.team-socials a svg { width: 16px; height: 16px; fill: currentColor; }
.team-socials a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.team-card .team-name { color: var(--white); }

/* ===== Effet glow orange derrière le titre hero ===== */
.hero-title {
  position: relative;
}
.hero-title::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 180%;
  background: radial-gradient(ellipse at center, rgba(232,93,0,0.35) 0%, rgba(232,93,0,0.12) 40%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
  pointer-events: none;
}
.hero-title em {
  position: relative;
  text-shadow: 0 0 40px rgba(232,93,0,0.6), 0 0 80px rgba(232,93,0,0.3);
}
/* halos orange flottants dans le hero */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,0,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
}
.hero-glow-1 { width: 400px; height: 400px; top: 10%; left: -80px; animation: floatGlow 14s ease-in-out infinite alternate; }
.hero-glow-2 { width: 320px; height: 320px; bottom: 8%; right: -60px; animation: floatGlow 18s ease-in-out infinite alternate-reverse; }
@keyframes floatGlow {
  from { transform: translate(0,0) scale(1); opacity: 0.7; }
  to { transform: translate(40px, -30px) scale(1.15); opacity: 1; }
}

/* ===== Correction centrage section-label ===== */
.section-label.centered {
  justify-content: center;
  gap: 12px;
}
.section-label.centered::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--orange);
}
.section-label.centered::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--orange);
}

/* ===== Logos sponsors sur fond blanc propre ===== */
.sponsors-logos .sponsor-logo-item {
  background: #fff;
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sponsors-logos .sponsor-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  opacity: 1;
  filter: none;
}
.sponsors-logos .sponsor-logo-item img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

/* ===== Encart ballon (foot-fauteuil) ===== */
.ball-callout {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid var(--orange);
  padding: 24px 32px;
  margin-bottom: 24px;
}
.ball-callout img {
  width: 110px; height: 110px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
}
.ball-callout .ball-txt strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.ball-callout .ball-txt p {
  color: var(--grey-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 600px) {
  .ball-callout { flex-direction: column; text-align: center; }
}
