/* ============================================================
   GP Prod / UNEXPECTED — plain dark landing page
   Black canvas, toxic-green horror accents, logo-forward.
   ============================================================ */

:root {
  --bg:      #070c07;      /* dark swamp green-black */
  --toxic:   #9dff1a;      /* the green from the cover art */
  --toxic-d: #7ccf10;
  --blood:   #c81e1e;
  --text:    #d7ddcf;      /* soft, slightly cold off-white */
  --muted:   #6f7a66;      /* mossy muted */
  --font:    "GPFont", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --horror:  "GPFont", "Inter", cursive;
  --body-font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Brand font for all UI text; the statement stays on Inter for readability */
@font-face {
  font-family: "GPFont";
  src: url("GPFONTS.ttf") format("truetype");
  font-display: swap;
}

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

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Dagobah swamp — murky green fog up top, damp haze mid,
     everything sinking into dark at the edges. */
  background-image:
    radial-gradient(120% 80% at 50% -12%, rgba(120,160,80,.16), transparent 55%),
    radial-gradient(90% 60% at 50% 42%, rgba(70,110,72,.13), transparent 62%),
    radial-gradient(circle at 50% 28%, rgba(157,255,26,.05), transparent 46%),
    radial-gradient(140% 90% at 50% 118%, rgba(3,7,3,.95), transparent 58%);
  background-attachment: fixed;
}

/* Low mist drifting across the bottom for the damp feel */
body::after {
  content: "";
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 40vh;
  pointer-events: none;
  background: radial-gradient(120% 100% at 50% 130%, rgba(90,130,70,.16), transparent 60%);
  z-index: -1;
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) 1.25rem 3rem;
  text-align: center;
}

/* ---------- Top nav ---------- */
html { scroll-behavior: smooth; }

.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,12,7,.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(157,255,26,.12);
}
.topnav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  padding: .9rem 1.25rem;
}
.topnav a {
  font-family: var(--body-font);
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color .15s ease, text-shadow .15s ease;
}
.topnav a:hover,
.topnav a:focus-visible {
  color: var(--toxic);
  text-shadow: 0 0 12px rgba(157,255,26,.45);
  outline: none;
}

/* keep sticky nav from covering the section you jump to */
#podcast, #bobbys-tip, #gallery, #follow { scroll-margin-top: 84px; }

/* ---------- Gallery section ---------- */
.section-gallery { margin: 0 auto 3rem; }
.section-title {
  font-family: var(--horror);
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  color: var(--toxic);
  letter-spacing: .04em;
  margin: 0 0 1.5rem;
  text-shadow: 0 0 16px rgba(157,255,26,.4);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 220px);
  justify-content: center;
  gap: 1rem;
}
.gallery-item { display: block; text-decoration: none; color: inherit; transition: transform .2s ease; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(157,255,26,.25);
  border-radius: 8px;
  transition: box-shadow .2s ease;
}
.gallery-item:hover { transform: translateY(-3px); }
.gallery-item:hover img { box-shadow: 0 0 26px rgba(157,255,26,.3); }

/* ---------- Wordmark ---------- */
.wordmark {
  font-family: var(--horror);
  font-weight: 400;
  font-size: clamp(2.1rem, 7vw, 3.6rem);
  color: var(--toxic);
  letter-spacing: .03em;
  max-width: 14ch;           /* mobile: wraps to a tidy stack */
  margin: 0 auto 1.5rem;
  line-height: 1.02;
  /* murky green glow, like light bleeding through swamp fog */
  text-shadow: 0 0 22px rgba(157,255,26,.4), 0 0 6px rgba(120,200,60,.5), 0 2px 0 #000;
}

/* Desktop: stretch it into a single horizontal banner line */
@media (min-width: 641px) {
  .wordmark {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(2.8rem, 5.8vw, 4.2rem);
    letter-spacing: .05em;
    margin-bottom: 2.25rem;
  }
}

/* ---------- Two columns: podcast + playlist ---------- */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin: 0 auto 3rem;
}
.col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Equal-height image stage so both columns line up */
.art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(300px, 38vw, 400px);
  transition: transform .2s ease;
}
.art:hover,
.art:focus-visible { transform: translateY(-3px); outline: none; }
.art img { max-width: 100%; max-height: 100%; width: auto; height: auto; display: block; }

/* Framed square cover (opaque) */
.art-cover img {
  border: 1px solid rgba(157,255,26,.35);
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.6), 0 0 40px rgba(157,255,26,.18), 0 24px 60px rgba(0,0,0,.7);
}
/* Transparent figure — glow follows the silhouette, no rectangle */
.art-fig img {
  filter: drop-shadow(0 0 16px rgba(157,255,26,.28)) drop-shadow(0 14px 26px rgba(0,0,0,.65));
  transition: filter .2s ease;
}
.art-fig:hover img {
  filter: drop-shadow(0 0 28px rgba(157,255,26,.55)) drop-shadow(0 14px 26px rgba(0,0,0,.65));
}

.col-label {
  font-family: var(--horror);
  font-size: 1.5rem;
  color: var(--toxic);
  letter-spacing: .04em;
  margin: 1rem 0 .9rem;
  text-shadow: 0 0 14px rgba(157,255,26,.4);
}
.player {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Expand-to-full-window button under each player */
.player-expand {
  margin-top: .7rem;
  font-family: var(--body-font);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(157,255,26,.25);
  border-radius: 999px;
  padding: .35rem .95rem;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.player-expand:hover,
.player-expand:focus-visible {
  color: var(--toxic);
  border-color: var(--toxic);
  box-shadow: 0 0 14px rgba(157,255,26,.3);
  outline: none;
}

/* Full-window player overlay */
.player-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(3,7,3,.94);
  backdrop-filter: blur(6px);
}
.player-modal.open { display: flex; }
.pm-frame { width: min(900px, 94vw); }
.pm-frame iframe {
  width: 100%;
  height: min(80vh, 720px);
  border-radius: 14px;
  display: block;
  box-shadow: 0 0 50px rgba(157,255,26,.16);
}
.pm-close,
.im-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--text);
  background: rgba(157,255,26,.10);
  border: 1px solid rgba(157,255,26,.30);
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.pm-close:hover,
.pm-close:focus-visible,
.im-close:hover,
.im-close:focus-visible {
  background: var(--toxic);
  color: #08210a;
  outline: none;
}

/* Full-window image lightbox */
.img-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(3,7,3,.2);
  backdrop-filter: blur(2px);
}
.img-modal.open { display: flex; }
.im-full {
  max-width: 94vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  box-shadow: 0 0 50px rgba(157,255,26,.16);
}

@media (max-width: 640px) {
  .duo { grid-template-columns: 1fr; gap: 2.75rem; }
}

/* ---------- Cheeky statement (sleek, no quotes) ---------- */
.statement {
  font-family: var(--body-font);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 300;
  color: var(--text);
  max-width: 30ch;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
  letter-spacing: .005em;
  text-wrap: balance;
}
.statement-kicker {
  display: block;
  margin-top: .55rem;
  font-weight: 600;
  color: var(--toxic);
  letter-spacing: .02em;
  text-shadow: 0 0 16px rgba(157,255,26,.35);
}

/* ---------- Link buttons ---------- */
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
  margin-bottom: 2.5rem;
}
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
  color: var(--toxic);
  text-decoration: none;
  padding: .8rem 1.6rem;
  border: 2px solid var(--toxic);
  border-radius: 999px;
  background: transparent;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.btn:hover,
.btn:focus-visible {
  background: var(--toxic);
  color: #08210a;
  box-shadow: 0 0 24px rgba(157,255,26,.5);
  transform: translateY(-2px);
  outline: none;
}

/* ---------- Spotify players ---------- */
.players {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}
.players iframe {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* ---------- Socials ---------- */
.social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2.25rem;
}
.social a {
  color: var(--muted);
  display: inline-flex;
  transition: color .15s ease, transform .15s ease, filter .15s ease;
}
.social a:hover,
.social a:focus-visible {
  color: var(--toxic);
  transform: translateY(-2px);
  filter: drop-shadow(0 0 9px rgba(157,255,26,.6));
  outline: none;
}
.social svg { display: block; }

/* ---------- Footer ---------- */
.foot {
  font-family: var(--body-font);
  color: var(--muted);
  font-size: .85rem;
  border-top: 1px solid rgba(157,255,26,.10);
  padding-top: 1.5rem;
}
.foot p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}

.gallery-caption {
  font-family: var(--body-font);
  color: var(--text);
  margin: .6rem 0 0;
  font-size: .9rem;
}