/* ===============================
   PSYCHOBILLY ONE-PAGE SCROLLER
   Raw • Gritty • DIY • No polish
================================ */

/* ---------- COLOR SYSTEM ---------- */
:root{
  --ink: #f3efe6;
  --blood: #b81d24;
  --rust: #ff6b2d;
  --acid: #8aff00;
  --tar: #0b0709;
  --shadow: #000000;
}

/* ---------- GLOBAL RESET ---------- */
*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  background: var(--tar);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0.02em;
  position: relative;
  overflow-x: hidden;
}

/* ---------- FILM GRAIN / DIRT ---------- */
/*body::before{
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 999;
}*/

/* ---------- HERO ---------- */
.hero{
  min-height: 100vh;
  padding: 6rem 8%;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, #1a0c10, #000 70%);
}

.hero-content{
  max-width: 720px;
}

.hero-tagline{
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
}

.hero h1{
  font-size: 3.4rem;
  margin: 0.5rem 0;
  line-height: 1.1;
  text-shadow: 3px 3px 0 #000;
}

.hero-subtitle{
  max-width: 520px;
  font-size: 1.05rem;
  opacity: 0.9;
}

/* ---------- CTA BUTTON ---------- */
.hero-button{
  display: inline-block;
  margin-top: 2rem;
  padding: 14px 32px;
  background: var(--blood);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: bold;
  border: 2px solid #000;
  box-shadow: 6px 6px 0 #000;
  transition: transform .1s ease, box-shadow .1s ease;
}

.hero-button:hover{
  transform: translate(3px,3px);
  box-shadow: 2px 2px 0 #000;
}

/* ---------- SECTIONS ---------- */
.section{
  padding: 5rem 6%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- HEADINGS ---------- */
h2{
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-intro{
  max-width: 540px;
  opacity: 0.85;
}

/* ---------- GRID ---------- */
.grid{
  margin-top: 2.5rem;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ---------- CARDS ---------- */
.card{
  position: relative;
  background: rgba(10,6,8,0.9);
  padding: 22px;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 8px 8px 0 #000;
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 2px,
      transparent 2px,
      transparent 6px
    );
  pointer-events:none;
}

.card h3{
  margin-top: 0;
  font-size: 1.1rem;
  color: var(--rust);
  text-transform: uppercase;
}

/* ---------- STACK / TAKEAWAYS ---------- */
.stack{
  background: #12070b;
  border-left: 6px solid var(--blood);
  padding: 28px;
  margin-top: 2rem;
  box-shadow: 8px 8px 0 #000;
}

.stack h2{
  color: var(--blood);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top{
  display: inline-block;
  margin-top: 2rem;
  text-decoration: none;
  font-weight: bold;
  color: var(--acid);
}

.back-to-top:hover{
  color: var(--rust);
}

/* ---------- FOOTER ---------- */
.footer{
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  opacity: 0.6;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ---------- MOBILE ---------- */
@media (max-width: 600px){
  .hero h1{
    font-size: 2.4rem;
  }

  .section{
    padding: 4rem 7%;
  }
  
}
/* ===== NAV LINKS (CLEAN + PSYCHOBILLY) ===== */

/* Only style the nav links — NOT every <a> on the page */

/* ===== NAV LINKS (CLEAN + PSYCHOBILLY) ===== */
.nav-links a,
.nav a{
  color: rgba(229,231,235,0.75);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  text-shadow: 2px 2px 0 #000;
}

.nav-links a:hover,
.nav a:hover{
  color: var(--rust);
  transform: translateX(4px);
}

.nav-links a:focus,
.nav a:focus{
  outline: none;
  color: var(--acid);
}

/* LEFT HEADER — subtle side label */
.left-header{
  position: fixed;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229,231,235,0.35);
  font-weight: 800;
  pointer-events: none;
  z-index: 2;
}

/* Nav positioning */
.nav{
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-links{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* HERO IMAGE */
.hero-image{
  min-width: 320px;
  max-width: 460px;
  margin-right: 3rem;
}

.hero-image img{
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 8px 8px 0 #000;
}