/* ============================================
   BASE.CSS — Reset, Variables, Typography
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Oswald:wght@300;400;500;600;700&display=swap');

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input { font-family: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }

/* --- CSS Variables --- */
:root {
  /* Backgrounds */
  --bg-primary: #0e101b;
  --bg-card: #181c26;
  --bg-card-hover: #1f2332;

  /* Accents */
  --accent-gold: #ffc46b;
  --accent-orange: #ffad33;
  --accent-orange-deep: #c74d07;
  --accent-red: #eb0400;
  --neon-cyan: #00e5ff;

  /* Text */
  --text-primary: #ffffff;
  --text-muted: #6c7b89;
  --text-gold-muted: #e8d1a6;

  /* Borders */
  --border-soft: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.45);

  /* Gradients */
  --fire-gradient: linear-gradient(90deg, #ffad33, rgba(34, 125, 233, 0) 50%, rgba(34, 125, 233, 0) 65%, rgba(34, 125, 233, 0));
  --fire-gradient-deep: radial-gradient(128% 100% at 50% 0%, #ffc470 2.6%, #9e3d0e 57.29%, #ff8717 100%);

  /* Layout */
  --nav-height: 80px;
  --container-width: 1440px;
  --container-padding: 0 48px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'PT Sans Narrow', Tahoma, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
  line-height: 1.1;
}

.heading-gradient {
  background: linear-gradient(180deg, #fff0d4 20%, rgba(255, 221, 168, 0.6) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Section base --- */
section {
  position: relative;
  padding: 100px 0;
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-5deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(-7deg); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 196, 107, 0.3); }
  50% { box-shadow: 0 0 40px rgba(255, 196, 107, 0.6), 0 0 80px rgba(255, 173, 51, 0.3); }
}

@keyframes border-rotate {
  from { --border-angle: 0deg; }
  to { --border-angle: 360deg; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* --- Reveal on scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive base --- */
@media (max-width: 1440px) and (min-width: 1025px) {
  html { font-size: 14.4px; /* 90% of 16px */ }
}

/* MOBILE: TODO — full responsive overrides */
