/* DAF Club — landing page styles. Self-contained, no external fonts. */

/* Logo font — same family name as dafclub.fr declares: 'FighterFont', sans-serif.
   (The .ttf's internal name is "FightThis" by Apostrophe; the CSS family is FighterFont.) */
@font-face {
  font-family: 'FighterFont';
  src: url('/assets/fonts/fighterfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy:    #0c2340;
  --navy-2:  #143a63;
  --gold:    #c8a24a;
  --gold-2:  #b6913c;
  --ink:     #0c2340;
  --muted:   #5b6b7f;
  --line:    #e4e9f0;
  --bg:      #ffffff;
  --bg-soft: #f5f7fb;
  --bg-navy: #0c2340;
  --radius:  14px;
  --container: 1140px;
  --shadow:  0 18px 40px -24px rgba(12, 35, 64, .35);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: 1px solid transparent; transition: .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 20px -16px rgba(12,35,64,.4); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { font-family: 'FighterFont', sans-serif; font-weight: 400; font-size: 30px; letter-spacing: .01em; color: var(--navy); text-transform: uppercase; line-height: 1; }
.brand-mark { color: var(--navy); }
.brand-word { color: var(--gold); margin-left: 8px; }
.main-nav { display: flex; gap: 26px; margin-left: 18px; }
.main-nav a { color: var(--muted); font-weight: 500; font-size: 15px; transition: .15s; }
.main-nav a:hover { color: var(--navy); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.header-cta .phone { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-weight: 600; font-size: 14px; }
.header-cta .phone svg { width: 17px; height: 17px; color: var(--gold); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(200,162,74,.16), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 88px 0 72px;
  overflow: hidden;
}
.hero-inner { max-width: 860px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: 13px; font-weight: 700;
  color: var(--gold-2); margin-bottom: 18px;
}
.hero h1 { font-size: clamp(34px, 5.4vw, 58px); font-weight: 800; color: var(--navy); }
.hero .lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--muted); margin-top: 22px; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.stats { list-style: none; display: flex; flex-wrap: wrap; gap: 48px; margin: 56px 0 0; padding: 0; }
.stats li { display: flex; flex-direction: column; }
.stats strong { font-size: 34px; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.stats span { color: var(--muted); font-size: 14px; margin-top: 2px; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.kicker { text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 700; color: var(--gold-2); margin-bottom: 14px; }
.kicker.light { color: var(--gold); }
.section h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; color: var(--navy); }
.section-lead { color: var(--muted); font-size: 18px; margin-top: 16px; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 13px;
  background: rgba(12,35,64,.06); color: var(--navy); margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 19px; color: var(--navy); margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: s; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 0; padding: 0; }
.steps li { padding-top: 8px; border-top: 2px solid var(--line); }
.step-n { display: block; font-size: 30px; font-weight: 800; color: var(--gold); letter-spacing: -.04em; margin-bottom: 14px; }
.steps h3 { font-size: 19px; color: var(--navy); margin-bottom: 8px; }
.steps p { color: var(--muted); font-size: 15px; }

/* ---------- Join ---------- */
.join { background: var(--bg-navy); color: #eaf0f8; }
.join-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.join h2 { color: #fff; }
.join .section-lead { color: #b8c6da; }
.perks { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.perks li { display: flex; align-items: flex-start; gap: 12px; color: #dce6f2; font-size: 16px; }
.perks svg { width: 20px; height: 20px; color: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.join-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 34px; text-align: center;
}
.join-card .btn { width: 100%; justify-content: center; }
.join-note { color: #91a3bd; font-size: 14px; margin-top: 14px; }

/* ---------- Contact form ---------- */
.contact-form { display: grid; gap: 18px; max-width: 720px; margin: 0 auto; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-weight: 600; font-size: 14px; color: var(--navy); }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; font-weight: 400; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; color: var(--ink); transition: .15s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(12,35,64,.08);
}
.contact-form textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; }
.form-row-submit { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-msg { font-size: 14px; margin: 0; color: var(--muted); }
.form-msg.ok { color: #1f8a4c; }
.form-msg.err { color: #c0392b; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: 18px; color: var(--navy); font-weight: 700; margin: 0; }
.faq-plus { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.faq-plus::before, .faq-plus::after {
  content: ''; position: absolute; top: 50%; left: 50%; background: var(--gold-2);
  transform: translate(-50%, -50%); transition: .2s ease;
}
.faq-plus::before { width: 16px; height: 2px; }
.faq-plus::after { width: 2px; height: 16px; }
.faq-item[open] .faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item > p { color: var(--muted); font-size: 16px; padding: 0 4px 24px; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #081a30; color: #aebfd4; padding: 56px 0 28px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; }
.footer-brand .brand { font-size: 20px; }
.footer-brand p { color: #8499b5; margin-top: 10px; max-width: 280px; font-size: 14px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; align-content: flex-start; }
.footer-nav a, .footer-contact a { color: #aebfd4; font-size: 14px; transition: .15s; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px; color: #7488a4;
}
.footer-legal a { color: #7488a4; }
.footer-legal a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .join-inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open .main-nav {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px; margin: 0; box-shadow: var(--shadow);
  }
  body.nav-open .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .stats { gap: 28px; }
}
