/* =============================================
   base.css — MUHAZU Global Shared Foundation
   Variables, Reset, Typography
   ============================================= */

/* ---- Neutral Face font (drop woff2 file into /assets/fonts/) ---- */
@font-face {
  font-family: 'Neutral Face';
  src: url('/assets/fonts/NeutralFace.woff2') format('woff2'),
       url('/assets/fonts/NeutralFace.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand Colors */
  --gold:        #d4af37;
  --gold-dark:   #b8941f;
  --gold-light:  #f4e4a0;
  --black:       #0a0a0a;
  --black-soft:  #1a1a1a;
  --card-black:  #181818;
  --white:       #ffffff;
  --white-off:   #fafafa;

  /* Gray Scale */
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Text */
  --text-primary: #ffffff;
  --text-muted:   #9a9a9a;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.2);
  --shadow-gold: 0 4px 20px rgba(212,175,55,.2);

  /* Transitions */
  --transition:      all 0.3s ease;
  --transition-fast: 0.15s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --container-max:  1200px;
  --section-pad:    100px;
  --radius:         12px;
  --radius-sm:      8px;
  --radius-lg:      20px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 5%;
}

/* ---- Google Font preconnect is in each page head ---- */
