/* =========================================
   BASE — base.css
   ─────────────────────────────────────────
   Box-model reset, body, particle canvas,
   and the full-bleed hero background.
   ========================================= */

/* ── Reset ────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* ── Body ─────────────────────────────── */
body {
  font-family: 'Inter', sans-serif;
  background: #060c06;
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  
  /* Prevent text selection globally */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Prevent image dragging globally */
img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* ── Particle canvas ──────────────────── */
#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ── Hero background ──────────────────── */
.hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100lvh;
  z-index: 0;
  overflow: hidden;
  animation: heroZoom 25s ease-in-out infinite alternate;
  will-change: transform;
  transform: translateZ(0);
  transform-origin: center center;
  isolation: isolate;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 12, 6, 0.55) 0%,
    rgba(6, 12, 6, 0.25) 30%,
    rgba(6, 12, 6, 0.55) 70%,
    rgba(6, 12, 6, 0.92) 100%
  );
  z-index: 1;
}
