/* ==========================================================================
   BLCKGROOVE — Global base styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height-scrolled);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-void);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* body gets this class while the mobile menu is open, locking scroll */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Visible keyboard focus everywhere — never remove this without replacing it */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-red-hot);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Placeholder hero spacer so the transparent navbar has something to sit over
   while Phase 1 only ships the navbar. Remove once the real hero is built. */
.hero-placeholder {
  height: 100vh;
  min-height: 640px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(179, 18, 26, 0.16), transparent 60%),
    linear-gradient(180deg, var(--color-black) 0%, var(--color-void) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--edge-padding);
  text-align: center;
}

.hero-placeholder__note {
  color: var(--color-fog);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  max-width: 420px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
