/* ─────────────────────────────────────────
   Slightly More Fun Than Doomscrolling
   main.css
───────────────────────────────────────── */

@font-face {
  font-family: 'Bangers';
  src: url('/assets/fonts/bangers-v25-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Mono';
  src: url('/assets/fonts/dm-mono-v16-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Mono';
  src: url('/assets/fonts/dm-mono-v16-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


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

:root {
  --yellow:     #FFE135;
  --pink:       #FF6B9D;
  --blue:       #4A90E2;
  --green:      #2ECC71;
  --orange:     #FF6B35;
  --purple:     #9B59B6;
  --teal:       #1ABC9C;
  --cream:      #FFFEF5;
  --ink:        #1A1A2E;
  --mid:        #6B6B8A;
  --border:     #E8E0F0;
  --rad:        12px;
}

html {
  zoom: 1.35;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'DM Mono', monospace;
  background: var(--cream);
  color: var(--ink);
  padding-bottom: 100px;
}

/* ── NAV ── */
nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 20px 28px;
  background: transparent;
  border-bottom: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  pointer-events: none;
  transition: background 0.2s, border-color 0.2s;
}

nav.scrolled {
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  pointer-events: all;
}

/* Title fades in on scroll */
.nav-title {
  font-family: 'Bangers', cursive;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  flex: 1;
  padding-right: 12px;
}

.nav-title .hl {
  background: var(--yellow);
  padding: 0 6px 2px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  display: inline-block;
}

nav.scrolled .nav-title {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  pointer-events: all;
}

.nav-tag {
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  background: white;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
}

.nav-tag:hover  { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.nav-tag:active { transform: translate(1px, 1px);   box-shadow: 0px 0px 0 var(--ink); }
.nav-tag.active { background: var(--yellow); }
.nav-tag.purple { background: var(--purple); color: var(--cream); }

/* hamburger — mobile only */
.nav-hamburger { display: none; }

/* mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  font-family: 'Bangers', cursive;
  font-size: 36px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-drawer a:hover { color: var(--pink); }
.nav-drawer a.active {
  background: var(--yellow);
  padding: 4px 18px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
}

.nav-drawer-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  font-family: 'Bangers', cursive;
  font-size: 28px;
  cursor: pointer;
  color: var(--ink);
  letter-spacing: 0.04em;
}

/* ── HERO ── */
.hero { padding: 80px 28px 24px; }

/* Sticky title that appears in nav on scroll */
.nav-title {
  font-family: 'Bangers', cursive;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  flex: 1;
  padding-right: 12px;
}

.nav-title .hl {
  background: var(--yellow);
  padding: 0 6px 2px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  display: inline-block;
}

nav.scrolled .nav-title {
  opacity: 1;
  transform: translateY(0);
}

nav.scrolled {
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  pointer-events: all;
}

.hero-sticker {
  display: inline-block;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  transform: rotate(-1.5deg);
  box-shadow: 3px 3px 0 var(--ink);
}

.byline {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.byline a { color: var(--purple); text-decoration: none; }
.byline a:hover { text-decoration: underline wavy; }

h1 {
  font-family: 'Bangers', cursive;
  font-size: clamp(24px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  max-width: 100%;
  white-space: nowrap;
}

h1 .hl {
  background: var(--yellow);
  padding: 0 10px 4px;
  border-radius: 6px;
  border: 3px solid var(--ink);
  display: inline-block;
  transform: rotate(-0.8deg);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 16px;
}

.listen-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.listen-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
}

.platform-btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.platform-btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--pink);
  padding: 10px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  margin: 24px -8px 24px -8px;
  transform: rotate(-0.5deg);
  overflow: hidden;
  max-width: 100vw;
}

.ticker {
  display: flex;
  gap: 48px;
  animation: tick 28s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: 'Bangers', cursive;
  font-size: 16px;
  color: white;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.06em;
}

.ticker-dot { color: var(--yellow); font-size: 20px; line-height: 1; }

@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
.section { padding: 0 28px; margin-bottom: 52px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Bangers', cursive;
  font-size: 28px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title h2 {
  font-family: 'Bangers', cursive;
  font-size: 28px;
  letter-spacing: 0.04em;
  font-weight: normal;
}

.section-pill {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  background: var(--green);
  color: white;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: 0.04em;
  box-shadow: 2px 2px 0 var(--ink);
}

.section-more {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.04em;
  text-decoration: underline wavy var(--teal) 1.5px;
  cursor: pointer;
  text-underline-offset: 3px;
}

/* ── PROJECT GRID ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

.card {
  background: white;
  border: 3px solid var(--ink);
  border-radius: var(--rad);
  padding: 22px 18px 18px;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 5px 5px 0 var(--ink);
}

.card:hover  { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.card:active { transform: translate(2px, 2px);   box-shadow: 2px 2px 0 var(--ink); }

.card.c-yellow     { background: #FFFBE6; }
.card.c-green      { background: #EAFAF3; }
.card.c-purple     { background: #F5EEFF; }
.card.c-orange     { background: #FFF1EB; }
.card.c-blue-light { background: #EBF3FF; }
.card.c-pink       { background: #FFF0F5; }

.card.wide {
  grid-column: span 2;
  background: var(--blue);
  border-color: var(--ink);
  color: white;
}

.card.wide .card-desc { color: rgba(255,255,255,0.75); }

.card-badge {
  position: absolute;
  top: -10px; right: 14px;
  font-family: 'Bangers', cursive;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 2px 10px;
  border-radius: 999px;
  border: 2px solid var(--ink);
}

.badge-live { background: var(--green);  color: white; }
.badge-new  { background: var(--orange); color: white; }
.badge-soon { background: #eee; color: #aaa; border-color: #ccc; }
.badge-wip  { background: var(--yellow); color: var(--ink); }

.card-glyph { font-size: 32px; margin-bottom: 12px; display: block; }

.card-title {
  font-family: 'Bangers', cursive;
  font-size: 24px;
  letter-spacing: 0.03em;
  line-height: 1.0;
  margin-bottom: 7px;
}

.card-desc { font-size: 11px; color: var(--mid); line-height: 1.65; }
.card.wide .card-desc { color: rgba(255,255,255,0.75); }

/* ── DOODLE DIVIDER ── */
.doodle-divider {
  text-align: center;
  font-size: 22px;
  margin: 8px 0 40px;
  letter-spacing: 8px;
  color: var(--border);
}

/* ── PODCAST ── */
.pod-block {
  background: var(--purple);
  border: 3px solid var(--ink);
  border-radius: var(--rad);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 28px 52px;
  box-shadow: 6px 6px 0 var(--ink);
}

.pod-cover {
  width: 80px;
  height: 80px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 3px 3px 0 var(--ink);
}

.pod-body { flex: 1; min-width: 200px; }

.pod-eyebrow {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.pod-title {
  font-family: 'Bangers', cursive;
  font-size: 26px;
  letter-spacing: 0.03em;
  color: white;
  margin-bottom: 8px;
  font-weight: normal;
}

.pod-desc { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 18px; }

.pod-platforms { display: flex; gap: 8px; flex-wrap: wrap; }

.pod-link {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
}

.pod-link:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }

/* ── NEWSLETTER ── */
.nl-block {
  margin: 0 28px 52px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: var(--rad);
  padding: 36px 32px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  box-shadow: 6px 6px 0 var(--ink);
}

.nl-left { flex: 1; min-width: 200px; }

.nl-eyebrow {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}

.nl-title {
  font-family: 'Bangers', cursive;
  font-size: 30px;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: normal;
}

.nl-desc { font-size: 12px; color: var(--mid); line-height: 1.75; }

.nl-right {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nl-input {
  width: 100%;
  padding: 12px 14px;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  box-shadow: 3px 3px 0 var(--ink);
  transition: box-shadow 0.12s, transform 0.12s;
}

.nl-input:focus { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.nl-input::placeholder { color: #bbb; }

.nl-btn,
input[type="submit"].nl-btn {
  background: var(--ink);
  color: white;
  border: 2px solid var(--ink);
  padding: 13px;
  font-family: 'Bangers', cursive;
  font-size: 18px;
  letter-spacing: 0.06em;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.25);
  transition: transform 0.12s, box-shadow 0.12s;
  width: 100%;
  text-align: center;
  -webkit-appearance: none;
  appearance: none;
}

.nl-btn:hover,
input[type="submit"].nl-btn:hover  { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 rgba(0,0,0,0.25); }
.nl-btn:active,
input[type="submit"].nl-btn:active { transform: translate(1px, 1px);   box-shadow: 1px 1px 0 rgba(0,0,0,0.25); }

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.nl-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── ABOUT ── */
.about-section {
  margin: 0 28px 52px;
  background: var(--teal);
  border: 3px solid var(--ink);
  border-radius: var(--rad);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 6px 6px 0 var(--ink);
}

.about-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--ink);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bangers', cursive;
  font-size: 22px;
  color: var(--teal);
  box-shadow: 3px 3px 0 var(--ink);
}

.about-body { flex: 1; min-width: 200px; }

.about-name {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: white;
  margin-bottom: 5px;
  font-weight: normal;
}

.about-name a { color: white; text-decoration: underline wavy rgba(255,255,255,0.5) 1.5px; }

.about-text { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.75; }

/* ── FOOTER ── */
footer {
  margin: 0 28px;
  padding-top: 24px;
  border-top: 3px dashed var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  font-family: 'Bangers', cursive;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--mid);
}

.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }

.footer-links a {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--pink); }

/* ── SURPRISE ── */
.surprise {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--orange);
  color: white;
  border: 3px solid var(--ink);
  padding: 12px 18px;
  font-family: 'Bangers', cursive;
  font-size: 17px;
  letter-spacing: 0.06em;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
  z-index: 100;
}

.surprise:hover  { transform: rotate(-3deg) translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.surprise:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }



@media (max-width: 1500px) {

 h1 {
    font-size: clamp(22px, 7.5vw, 42px);
    white-space: normal;
    padding-bottom: 20px;
  }

}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {

  .nav-links { display: none; }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: var(--yellow);
    border: 3px solid var(--ink);
    border-radius: 8px;
    padding: 10px 12px;
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.12s, box-shadow 0.12s;
    pointer-events: all;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--ink);
    border-radius: 2px;
  }

  .nav-hamburger:hover  { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
  .nav-hamburger:active { transform: translate(1px,1px);   box-shadow: 2px 2px 0 var(--ink); }

  .hero { padding: 120px 20px 36px; }

  h1 {
    font-size: clamp(22px, 7.5vw, 42px);
    white-space: normal;
    padding-bottom: 20px;
  }

  .hero-sticker { font-size: 10px; }
  .hero-desc { font-size: 12px; margin-bottom: 24px; }

  .listen-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .listen-label { margin-bottom: 2px; }

  .ticker-wrap { margin: 32px -4px; }

  .section { padding: 0 20px; margin-bottom: 40px; }

  .grid { grid-template-columns: 1fr; }
  .card.wide { grid-column: span 1; }

  .pod-block     { margin: 0 20px 40px; padding: 24px 20px; flex-direction: column; }
  .nl-block      { margin: 0 20px 40px; padding: 24px 20px; flex-direction: column; }
  .about-section { margin: 0 20px 40px; padding: 20px; }

  .nl-right { min-width: unset; width: 100%; }

  footer {
    margin: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links { flex-wrap: wrap; gap: 12px; }

  .surprise {
    bottom: 16px;
    right: 16px;
    padding: 10px 14px;
    font-size: 15px;
  }
}
