/* ============================================
   DRACADEMIE — Common stylesheet
   Charte : noir #03070A · vert deep #061914 · 
   vert fluo #22FC05 · or #D4AF37
   ============================================ */

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

:root {
  --black: #03070A;
  --green-deep: #061914;
  --green-dark: #0B3D2E;
  --green-mid: #1a5c47;
  --green-fluo: #22FC05;
  --gold: #D4AF37;
  --gold-light: #E6C667;
  --gold-deep: #B8941F;
  --cream: #F8F4EA;
  --paper: #FDFBF5;
  --white: #FFFFFF;
  --text-soft: rgba(255,255,255,0.75);
  --text-dim: rgba(255,255,255,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============== NAV ============== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(3, 7, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-img { width: 44px; height: auto; }
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 2px;
  line-height: 1;
}
.logo-text .main { color: var(--white); }
.logo-text .accent { color: var(--gold); }
.logo-text .sub {
  display: block; font-size: 9px;
  color: var(--green-fluo); letter-spacing: 3px;
  margin-top: 3px; font-weight: 400;
}

nav ul { display: flex; list-style: none; gap: 36px; }
nav ul a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  transition: color .2s ease;
  position: relative;
}
nav ul a:hover { color: var(--gold); }
nav ul a.active { color: var(--gold); }
nav ul a.active::after {
  content: ''; position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--gold);
}

.nav-cta {
  background: var(--gold); color: var(--green-deep);
  padding: 9px 20px; border-radius: 8px;
  text-decoration: none; font-weight: 800;
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
  transition: all .2s ease;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Burger mobile */
.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--gold);
}

/* ============== BUTTONS ============== */
.btn-primary {
  background: var(--gold); color: var(--green-deep);
  padding: 16px 30px; border-radius: 10px;
  text-decoration: none; font-weight: 800;
  font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
  transition: all .25s ease;
  display: inline-flex; align-items: center; gap: 10px;
  border: none; cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-secondary {
  background: transparent; color: var(--white);
  padding: 16px 28px; border-radius: 10px;
  text-decoration: none; font-weight: 700;
  font-size: 13px; letter-spacing: 1px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all .25s ease;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer;
  font-family: inherit;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ============== ICONS / TYPO HELPERS ============== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gold);
  letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
}
.eyebrow.live::before {
  content: ''; width: 6px; height: 6px;
  background: var(--green-fluo); border-radius: 50%;
  box-shadow: 0 0 8px var(--green-fluo);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white); letter-spacing: -0.5px;
  line-height: 0.95;
}
.section-title .em {
  color: var(--gold); font-style: italic;
  font-family: 'Instrument Serif', serif; font-weight: 400;
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gold);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 1px;
  background: var(--gold);
}

/* ============== FOOTER ============== */
footer {
  padding: 60px 40px 30px;
  background: var(--black);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}
.footer-container { max-width: 1300px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand {
  display: flex; flex-direction: column;
  gap: 16px;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 12px;
}
.footer-brand-logo img { width: 50px; height: auto; }
.footer-brand-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 2px;
  line-height: 1;
}
.footer-brand-text .accent { color: var(--gold); }
.footer-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 280px; line-height: 1.6;
}
.footer-socials {
  display: flex; gap: 10px;
  margin-top: 8px;
}
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: all .2s ease;
}
.footer-social:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}
.footer-social svg {
  width: 16px; height: 16px;
  color: rgba(255,255,255,0.7);
  transition: color .2s ease;
}
.footer-social:hover svg { color: var(--gold); }

.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none; font-size: 13px;
  transition: color .2s ease;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ============== RESPONSIVE ============== */
@media (max-width: 968px) {
  nav { padding: 14px 20px; }
  nav ul { display: none; }
  nav.menu-open ul {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(3, 7, 10, 0.97);
    padding: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    gap: 16px;
  }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
