/* ─────────────────────────────────────────
   RESET & VARIABLES CSS
───────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html, body {
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ─────────────────────────────────────────
   VARIABLES
───────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg: #050505;
  --bg-elevated: #0A0A0A;
  --surface: #111111;
  --surface-hover: #181818;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Accents luxe */
  --gold: #D4AF37;
  --gold-light: #F2D06B;
  --gold-dark: #A68A2E;
  --silver: #C0C0C0;
  --silver-light: #E8E8E8;
  --purple: #7B2DFF;
  --pink: #FF2DA8;

  /* Textes */
  --text: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-muted: rgba(255, 255, 255, 0.35);

  /* Typographie */
  --font-display: 'Exo 2', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Espacements */
  --section-padding: clamp(6rem, 12vw, 14rem);
  --container: min(1280px, 92vw);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quint: cubic-bezier(0.83, 0, 0.17, 1);
}
