/* Chroma Lips — Y2K / early-2000s retro web aesthetic */

:root {
  --lime: #a0f109;
  --lime-bright: #ccff00;
  --hot-pink: #ff00cc;
  --cyan: #00ffff;
  --purple: #9900ff;
  --black: #000000;
  --dark: #0a0a12;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--black);
  background-image:
    radial-gradient(1px 1px at 20px 30px, #fff, transparent),
    radial-gradient(1px 1px at 40px 70px, rgba(160, 241, 9, 0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 0, 204, 0.5), transparent),
    radial-gradient(1px 1px at 160px 120px, #fff, transparent),
    linear-gradient(180deg, #000010 0%, #000 40%, #0a0010 100%);
  background-size: 200px 200px, 200px 200px, 200px 200px, 200px 200px, 200px 200px, 100% 100%;
  background-attachment: fixed;
  color: #fff;
  font-family: Tahoma, Verdana, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: var(--lime);
}

a:hover {
  color: var(--hot-pink);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scanline overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
}

.container {
  width: min(1100px, 94vw);
  margin: 0 auto;
}

/* ===== HEADER ===== */
.site-header {
  text-align: center;
  padding: 24px 16px 12px;
  position: relative;
}

.bc-follow {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
}

.bc-follow iframe {
  border: 0;
  width: 220px;
  height: 33px;
}

.logo-block {
  display: inline-block;
  padding: 8px 24px;
  border: 3px double var(--lime);
  background: linear-gradient(180deg, #111 0%, #000 100%);
  box-shadow:
    0 0 20px rgba(160, 241, 9, 0.4),
    inset 0 0 30px rgba(160, 241, 9, 0.05);
}

.site-title {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  -webkit-text-stroke: 2px var(--lime);
  text-shadow:
    2px 2px 0 var(--hot-pink),
    -1px -1px 0 var(--cyan),
    0 0 30px rgba(160, 241, 9, 0.8);
  animation: glitch-flicker 4s infinite;
}

@keyframes glitch-flicker {
  0%, 95%, 100% { opacity: 1; }
  96% { opacity: 0.85; transform: translateX(1px); }
  97% { opacity: 1; transform: translateX(-1px); }
  98% { opacity: 0.9; }
}

.tagline {
  margin: 10px 0 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan);
}

.marquee-wrap {
  margin: 14px auto 0;
  max-width: 600px;
  overflow: hidden;
  border: 1px solid var(--lime);
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 0;
}

.marquee-wrap marquee {
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-size: 13px;
  color: var(--lime-bright);
}

/* ===== NAV ===== */
.site-nav {
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 720px;
}

.nav-btn {
  display: inline-block;
  padding: 8px 16px;
  font-family: Tahoma, Verdana, sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #333 0%, #111 50%, #222 100%);
  border: 2px outset #666;
  box-shadow: 0 0 10px rgba(160, 241, 9, 0.2);
  transition: transform 0.1s, box-shadow 0.2s;
}

.nav-btn:hover {
  color: var(--lime-bright);
  border-color: var(--lime);
  box-shadow: 0 0 18px rgba(160, 241, 9, 0.6);
  transform: scale(1.05);
}

.nav-btn.is-active {
  background: linear-gradient(180deg, #1a3300 0%, #0a1a00 100%);
  border: 2px inset var(--lime);
  color: var(--lime-bright);
  box-shadow: 0 0 20px rgba(160, 241, 9, 0.5);
}

/* ===== HERO ===== */
.hero-banner {
  width: 100%;
  max-height: 55vh;
  overflow: hidden;
  border-top: 3px solid var(--lime);
  border-bottom: 3px solid var(--hot-pink);
  box-shadow: 0 0 40px rgba(160, 241, 9, 0.3);
}

.hero-banner img {
  width: 100%;
  height: 55vh;
  object-fit: cover;
}

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  margin: 0 0 24px;
  font-family: Impact, sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--hot-pink), var(--lime));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.section-title a {
  -webkit-text-fill-color: inherit;
  text-decoration: none;
}

.hr-glow {
  border: none;
  height: 2px;
  margin: 32px auto;
  max-width: 400px;
  background: linear-gradient(90deg, transparent, var(--lime), var(--hot-pink), var(--lime), transparent);
  box-shadow: 0 0 12px var(--lime);
}

/* ===== IMAGE WALL (landing) ===== */
.image-wall {
  padding: 30px 0 50px;
}

.wall-intro {
  text-align: center;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-size: 15px;
  color: var(--lime-bright);
  margin-bottom: 24px;
  text-shadow: 0 0 10px var(--lime);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.photo-cell {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 3px solid var(--lime);
  background: #111;
  box-shadow:
    0 0 15px rgba(160, 241, 9, 0.3),
    inset 0 0 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.photo-cell:hover {
  transform: scale(1.04) rotate(-1deg);
  border-color: var(--hot-pink);
  box-shadow: 0 0 25px rgba(255, 0, 204, 0.5);
  z-index: 2;
}

.photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-cell--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.photo-cell--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.photo-cell--hero {
  grid-column: span 2;
  grid-row: span 2;
}

/* Scattered polaroid strip */
.polaroid-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding: 20px 0;
}

.polaroid {
  width: 160px;
  padding: 10px 10px 28px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.6);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.2s;
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.08);
  z-index: 5;
}

.polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #999;
}

.polaroid figcaption {
  margin-top: 8px;
  font-family: "Comic Sans MS", cursive;
  font-size: 11px;
  color: #333;
  text-align: center;
}

/* ===== PAGE PANELS ===== */
.page-section {
  padding: 36px 0 48px;
}

.retro-panel {
  max-width: 800px;
  margin: 0 auto 28px;
  padding: 24px;
  border: 2px solid var(--lime);
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
  box-shadow:
    0 0 30px rgba(160, 241, 9, 0.15),
    inset 0 0 60px rgba(160, 241, 9, 0.03);
}

.retro-panel p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
}

.retro-panel h3 {
  font-family: Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--lime-bright);
  margin: 20px 0 10px;
}

.retro-panel h3:first-child {
  margin-top: 0;
}

/* ===== LINK BUTTONS ===== */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.retro-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: Tahoma, Verdana, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  background: linear-gradient(180deg, var(--lime-bright) 0%, var(--lime) 50%, #7ab800 100%);
  border: 3px outset #ccff66;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(160, 241, 9, 0.5);
  transition: transform 0.1s;
}

.retro-btn:hover {
  color: #000;
  transform: scale(1.06);
  box-shadow: 0 0 30px rgba(160, 241, 9, 0.8);
}

.retro-btn--pink {
  background: linear-gradient(180deg, #ff66ff 0%, var(--hot-pink) 50%, #cc0099 100%);
  border-color: #ff99ff;
  box-shadow: 0 0 20px rgba(255, 0, 204, 0.5);
}

.retro-btn--cyan {
  background: linear-gradient(180deg, #66ffff 0%, var(--cyan) 50%, #009999 100%);
  border-color: #99ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.retro-btn--large {
  font-size: 18px;
  padding: 16px 32px;
}

/* ===== LISTEN / MERCH IMAGE ROWS ===== */
.media-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.media-card {
  text-align: center;
  border: 2px solid var(--purple);
  padding: 12px;
  background: rgba(0, 0, 0, 0.6);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.media-card:hover {
  border-color: var(--lime);
  box-shadow: 0 0 20px rgba(160, 241, 9, 0.4);
}

.media-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #333;
  margin-bottom: 10px;
}

/* ===== LIVE SHOWS ===== */
.show-card {
  display: block;
  max-width: 500px;
  margin: 0 auto 24px;
  border: 3px solid var(--lime);
  padding: 8px;
  background: #000;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.show-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(160, 241, 9, 0.5);
}

.show-card img {
  width: 100%;
}

.show-list {
  list-style: none;
  padding: 0;
  margin: 24px auto;
  max-width: 600px;
}

.show-list li {
  padding: 12px 16px;
  margin-bottom: 8px;
  border-left: 4px solid var(--lime);
  background: rgba(160, 241, 9, 0.05);
  font-family: "Courier New", monospace;
  font-size: 13px;
}

.show-list a {
  color: var(--cyan);
  text-decoration: none;
}

.show-list a:hover {
  text-decoration: underline;
}

/* ===== VIDEOS ===== */
.video-embed-wrap {
  max-width: 700px;
  margin: 0 auto 28px;
  border: 4px ridge var(--hot-pink);
  box-shadow: 0 0 30px rgba(255, 0, 204, 0.3);
}

.video-embed-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

/* ===== CONTACT / SUBSCRIBE ===== */
.contact-block {
  text-align: center;
  padding: 20px 0;
}

.email-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.email-form input[type="email"] {
  padding: 10px 14px;
  width: 260px;
  max-width: 100%;
  background: #000;
  border: 2px inset #444;
  color: var(--lime-bright);
  font-family: "Courier New", monospace;
  font-size: 13px;
}

.email-form input[type="email"]::placeholder {
  color: #666;
}

.email-form button {
  padding: 10px 18px;
  font-family: Tahoma, sans-serif;
  font-weight: bold;
  background: linear-gradient(180deg, #333, #111);
  border: 2px outset #666;
  color: #fff;
  cursor: pointer;
}

.email-form button:hover {
  color: var(--lime);
}

/* ===== FOOTER ===== */
.site-footer {
  text-align: center;
  padding: 30px 16px 40px;
  border-top: 1px solid #222;
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #666;
}

.hit-counter {
  display: inline-block;
  margin: 12px 0;
  padding: 6px 14px;
  background: #000;
  border: 1px inset #333;
  font-family: "Courier New", monospace;
  font-size: 12px;
  color: var(--lime);
  letter-spacing: 0.2em;
}

.blink {
  animation: blink 1.2s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.footer-note {
  margin-top: 8px;
  font-family: "Comic Sans MS", cursive;
  font-size: 10px;
  color: #444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .bc-follow {
    position: static;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-cell--wide,
  .photo-cell--hero {
    grid-column: span 2;
  }

  .photo-cell--tall {
    grid-row: span 1;
  }

  .polaroid {
    width: 130px;
  }
}

@media (max-width: 480px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-cell--wide,
  .photo-cell--hero {
    grid-column: span 1;
  }
}
