/* ════════════════════════════════════════
   BASE.CSS — Reset · Variables · Typography
   Naga Gym · Cedric Training
   ════════════════════════════════════════ */

/* ─── RESET ─── */
ul, ol { list-style: none; padding: 0; margin: 0; }

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

/* ─── VARIABLES ─── */
:root {
  --red:      #CC2200;
  --red-dark: #8B0000;
  --blue:     #1a4fa0;
  --gold:     #B38A47;
  --gold-hi:  #D4AF37;
  --black:    #0a0a0a;
  --off:      #111;
  --text:     #e8e4dc;
  --text2:    #c8c4bc;
  --gray:     #888;

  --f-cinzel: 'Cinzel', serif;
  --f-deco:   'Cinzel Decorative', serif;
  --f-body:   'Poppins', sans-serif;

  --gradient-gold: linear-gradient(180deg, #c8c4bc 0%, #D4AF37 100%);
  --gradient-red:  linear-gradient(135deg, #4a0000, #8B0000);
}

/* ─── BASE ─── */
html {
  scroll-behavior: smooth;
}

body {
  background:    var(--black);
  color:         var(--text);
  font-family:   var(--f-body);
  font-weight:   300;
  font-size:     0.95rem;
  line-height:   1.9;
  letter-spacing: 0.5px;
  overflow-x:    hidden;
}

/* ─── TYPOGRAPHIE GLOBALE ─── */
h1, h2, h3, h4 {
  font-family: var(--f-deco);
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
