/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  /* Colors - DARK THEME */
  --color-bg: #0F0F0F;
  /* Deepest black/grey */
  --color-bg-alt: #1A1A1A;
  /* Slightly lighter for cards/sections */
  --color-text: #EAEAEA;
  /* High legibility white */
  --color-text-light: #B0B0B0;
  /* Muted text */
  --color-text-muted: #666666;
  --color-accent: #D4AF37;
  /* Premium Gold */
  --color-accent-hover: #F2C94C;
  --color-border: #333333;
  --color-white: #EFEDE6;
  --color-black: #000000;
  --color-card-bg: #1E1E1E;

  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  --h1-size: clamp(2rem, 6vw, 5rem);
  /* Min reduced to 32px */
  --h2-size: clamp(1.75rem, 5vw, 3.5rem);
  /* Min reduced to 28px */
  --h3-size: clamp(1.5rem, 4vw, 2.5rem);
  /* Min reduced to 24px */
  --body-size: 1.125rem;
  /* Slightly larger for premium readability */
  --small-size: 0.875rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1.5rem;
  --space-md: 3rem;
  --space-lg: 6rem;
  --space-xl: 10rem;
  --space-2xl: 12rem;

  /* Layout */
  --container-width: 1400px;
  /* Wider for more immersion */
  --header-height: 90px;

  /* Effects */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.5);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: var(--h1-size);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--h2-size);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--h3-size);
}

p {
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
}

.text-accent {
  color: var(--color-accent);
}

.text-white {
  color: var(--color-white);
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01s !important;
    scroll-behavior: auto !important;
  }
}