/* ===== VARIABLES ===== */
:root {
  --green: #7dc24b;
  --green-dark: #5a9e2f;
  --green-light: #a8d87a;
  --black: #1a1a1a;
  --white: #ffffff;
  --gray: #f5f5f5;
  --gray-mid: #e0e0e0;
  --text: #333333;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
}
.logo-img {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 0 4px rgba(125,194,75,0.4));
}
.nav-links {
  display: flex;
  gap: 1.8rem;
}
.nav-links a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}
.burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 50%, #1a2a0a 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(125,194,75,0.12) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}
.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 20px rgba(125,194,75,0.5));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.hero p {
  color: var(--green-light);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 4px 15px rgba(125,194,75,0.4);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(125,194,75,0.5);
}
.btn-secondary {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn-secondary:hover {
  background: var(--green);
  color: var(--black);
  transform: translateY(-2px);
}

/* ===== SOCIAL ===== */
.social-links { display: flex; gap: 1rem; justify-content: center; }
.social-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.facebook { background: #1877f2; color: white; }
.facebook:hover { background: #0e5ec2; transform: translateY(-2px); }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.instagram:hover { opacity: 0.85; transform: translateY(-2px); }

/* ===== CARDS ===== */
.cards-section {
  padding: 5rem 1.5rem;
  background: var(--gray);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(125,194,75,0.2);
}
.card-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.card p { color: #666; font-size: 0.95rem; }

/* ===== PAGE CONTENT ===== */
.page-hero {
  background: linear-gradient(135deg, var(--black), #1a2a0a);
  padding: 4rem 1.5rem;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  letter-spacing: 0.05em;
}
.page-hero .underline {
  width: 60px;
  height: 4px;
  background: var(--green);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* ===== NOTRE CLUB ===== */
.club-intro {
  background: var(--gray);
  border-left: 5px solid var(--green);
  border-radius: 0 12px 12px 0;
  padding: 2rem;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.club-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.feature-box {
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.feature-box .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--green);
  line-height: 1;
}
.feature-box p { font-size: 0.9rem; color: #ccc; margin-top: 0.3rem; }

.docs-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.doc-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--green);
  color: var(--black);
  border-radius: 8px;
  font-weight: 700;
  transition: background 0.2s;
}
.doc-btn:hover { background: var(--green-dark); }

/* ===== FORMULES ===== */
.formules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.formule-card {
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
}
.formule-card:hover { background: var(--black); color: var(--white); transform: translateY(-4px); }
.formule-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--green);
}
.formule-card p { margin-bottom: 1.5rem; color: inherit; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--gray);
  padding: 1.5rem;
  border-radius: 12px;
}
.contact-icon { font-size: 1.8rem; }
.contact-item h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: #999; margin-bottom: 0.3rem; }
.contact-item a { color: var(--green-dark); font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }

/* ===== PARTENAIRES ===== */
.partners-intro { text-align: center; margin-bottom: 3rem; font-size: 1.05rem; color: #555; }
.partners-intro strong { color: var(--green-dark); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
}
.partner-item {
  background: var(--gray);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.partner-item:hover { border-color: var(--green); transform: translateY(-3px); background: white; }
.partner-item img { max-height: 70px; width: auto; object-fit: contain; filter: grayscale(30%); transition: filter 0.2s; }
.partner-item:hover img { filter: grayscale(0%); }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: #aaa;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
}
footer a { color: var(--green-light); }
footer a:hover { color: var(--white); }
footer p + p { margin-top: 0.5rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp 0.7s ease both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .burger { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.8rem;
    border-top: 1px solid #333;
  }
  .nav-links.open { display: flex; }
  .hero-logo { width: 120px; height: 120px; }
}
