/* ============================================
   LYRON — VHS / Lo-Fi Retro Style
   Color Palette from "Wasted Hearts" Artwork:
   - Dark Navy:  #0f0e17
   - Deep Blue:  #1a1a2e
   - Orange:     #d4843e
   - Amber:      #c97b2a
   - Cream:      #e8d5b7
   - Sky Blue:   #4a90b8
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #0f0e17;
  --color-bg-alt: #1a1a2e;
  --color-orange: #d4843e;
  --color-amber: #c97b2a;
  --color-cream: #e8d5b7;
  --color-blue: #4a90b8;
  --color-text: #e8d5b7;
  --color-text-dim: #8a8078;
  --font-display: 'Special Elite', 'Courier New', monospace;
  --font-body: 'Oswald', 'Arial Narrow', sans-serif;
}

html {
  scroll-padding-top: 70px;
}

html.smooth-scroll {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-cream);
}

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

/* --- CRT TV Frame --- */
.tv-frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
}

.tv-bezel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: clamp(12px, 2vw, 28px) solid #2a2119;
  border-radius: 18px;
  box-shadow:
    inset 0 0 60px 10px rgba(0, 0, 0, 0.7),
    inset 0 0 5px 2px rgba(212, 132, 62, 0.1),
    0 0 0 4px #1a150f,
    0 0 0 8px #3d3228;
  background: transparent;
}

/* Gradient darkening at screen edges for CRT curvature feel */
.tv-screen-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow:
    inset 0 0 80px 30px rgba(0, 0, 0, 0.5),
    inset 0 0 150px 50px rgba(0, 0, 0, 0.2);
}

/* Right side panel with knobs */
.tv-panel {
  position: absolute;
  right: -clamp(12px, 2vw, 28px);
  top: 0;
  width: clamp(12px, 2vw, 28px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 20%;
  gap: 12px;
}

.tv-brand {
  position: absolute;
  top: 12%;
  font-family: var(--font-display);
  font-size: clamp(6px, 1vw, 11px);
  color: #6b5d4f;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tv-brand span {
  font-size: 0.7em;
  color: #4a3f35;
}

.tv-knobs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tv-knob {
  width: clamp(10px, 1.8vw, 22px);
  height: clamp(10px, 1.8vw, 22px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #5a4d3f, #2a2119);
  border: 2px solid #1a150f;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.tv-knob::after {
  content: '';
  display: block;
  width: 2px;
  height: 40%;
  background: #1a150f;
  margin: 20% auto 0;
  border-radius: 1px;
}

.tv-knob-small {
  width: clamp(7px, 1.2vw, 15px);
  height: clamp(7px, 1.2vw, 15px);
}

/* Antenna */
.tv-antenna {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
}

.tv-antenna-left,
.tv-antenna-right {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 35px;
  background: linear-gradient(to top, #3d3228, #6b5d4f);
  border-radius: 2px;
}

.tv-antenna-left {
  left: 25%;
  transform: rotate(-25deg);
  transform-origin: bottom center;
}

.tv-antenna-right {
  right: 25%;
  transform: rotate(25deg);
  transform-origin: bottom center;
}

/* --- Film Grain Canvas Overlay --- */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.07;
}

/* --- VHS Scanlines --- */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15) 0px,
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.28;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  padding: 2.5rem 2.5rem 1rem;
  transition: background-color 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background-color: rgba(15, 14, 23, 0.95);
  padding: 0.5rem 2rem;
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-logo img {
  height: 40px;
  width: auto;

  transition: height 0.4s ease;
}

.nav.scrolled .nav-logo img {
  height: 32px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-cream);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  overflow: hidden;
  padding-left: clamp(12px, 2vw, 28px);
  padding-right: clamp(12px, 2vw, 28px);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 132, 62, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(74, 144, 184, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-cycle {
  position: relative;
  max-width: 550px;
  width: 80vw;
  margin: 0 0 1.5rem;
  animation: vhsFadeIn 2s ease-out;
}

.hero-logo-img {
  max-width: 100%;
  height: auto;
  border: 3px solid rgba(212, 132, 62, 0.3);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-logo-img:first-child {
  position: relative;
  left: auto;
  transform: none;
  display: block;
  margin: 0 auto;
}

.hero-logo-img:nth-child(2) {
  border: none;
}

.hero-logo-img.active {
  opacity: 1;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-orange);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  animation: vhsFadeIn 2s ease-out 0.5s both;
}

.hero-cta {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  animation: vhsFadeIn 2s ease-out 1s both;
}

.hero-cta:hover {
  background: var(--color-orange);
  color: var(--color-bg);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 30px;
  border: 2px solid var(--color-text-dim);
  border-radius: 10px;
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-orange);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 14px; opacity: 0.3; }
}

/* --- Sections General --- */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-orange);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

/* Glitch Effect on Titles */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.glitch::before {
  color: var(--color-blue);
  z-index: -1;
  animation: glitch1 3s infinite linear alternate-reverse;
}

.glitch::after {
  color: var(--color-orange);
  z-index: -2;
  animation: glitch2 2s infinite linear alternate-reverse;
}

@keyframes glitch1 {
  0%, 95% { clip-path: inset(0 0 0 0); transform: translate(0); }
  96% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 1px); }
  97% { clip-path: inset(50% 0 30% 0); transform: translate(3px, -1px); }
  98% { clip-path: inset(70% 0 10% 0); transform: translate(-2px, 2px); }
  99% { clip-path: inset(10% 0 80% 0); transform: translate(2px, -2px); }
  100% { clip-path: inset(0 0 0 0); transform: translate(0); }
}

@keyframes glitch2 {
  0%, 93% { clip-path: inset(0 0 0 0); transform: translate(0); }
  94% { clip-path: inset(30% 0 50% 0); transform: translate(2px, -1px); }
  96% { clip-path: inset(60% 0 20% 0); transform: translate(-2px, 1px); }
  98% { clip-path: inset(10% 0 70% 0); transform: translate(1px, 2px); }
  100% { clip-path: inset(0 0 0 0); transform: translate(0); }
}

/* --- Music Section --- */
.section-music {
  padding-top: 8rem;
}

.album {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.album-artwork {
  perspective: 800px;
  cursor: pointer;
}

.album-flip {
  position: relative;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.album-artwork:hover .album-flip {
  transform: rotateY(180deg);
}

.album-front,
.album-back {
  border: 3px solid rgba(212, 132, 62, 0.4);
  box-shadow: 0 0 30px rgba(212, 132, 62, 0.15);
}

.album-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  transform: rotateY(180deg);
}

.album-front {
  backface-visibility: hidden;
}

.album-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-orange);
  margin-bottom: 0.5rem;
}

.album-year {
  font-size: 1rem;
  color: var(--color-text-dim);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.tracklist {
  list-style: none;
  counter-reset: track;
  margin-bottom: 2rem;
}

.tracklist li {
  counter-increment: track;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(232, 213, 183, 0.08);
  font-size: 1rem;
  color: var(--color-cream);
  transition: color 0.3s;
}

.tracklist li::before {
  content: counter(track, decimal-leading-zero) ". ";
  color: var(--color-text-dim);
  font-size: 0.85rem;
  margin-right: 0.5rem;
}

.tracklist li:hover {
  color: var(--color-orange);
}

/* Streaming Buttons */
.streaming-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stream-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(232, 213, 183, 0.2);
  border-radius: 50%;
  color: var(--color-cream);
  transition: all 0.3s ease;
}

.stream-btn svg {
  width: 22px;
  height: 22px;
}

.stream-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(212, 132, 62, 0.3);
}

/* --- About Section --- */
.section-about {
  background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.5) 30%, rgba(26, 26, 46, 0.5) 70%, transparent 100%);
  max-width: none;
  padding: 6rem 2rem;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image-flip {
  position: relative;
  perspective: 800px;
  cursor: pointer;
  overflow: hidden;
  border: 3px solid rgba(212, 132, 62, 0.3);
}

.about-image-flip .album-flip {
  position: relative;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.about-image-flip:hover .album-flip {
  transform: rotateY(180deg);
}

.about-image-flip .album-front,
.about-image-flip .album-back {
  width: 100%;
  filter: saturate(0.8) contrast(1.1);
  border: none;
  box-shadow: none;
}

.about-image-flip:hover .album-front,
.about-image-flip:hover .album-back {
  filter: saturate(1) contrast(1);
}

.about-image-flip .album-back {
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  transform: rotateY(180deg);
}

.about-image-flip .album-front {
  backface-visibility: hidden;
}

/* VHS REC Badge */
.vhs-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: #ff3333;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

.rec-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff3333;
  border-radius: 50%;
  animation: recBlink 1.5s infinite;
}

@keyframes recBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text em {
  color: var(--color-orange);
  font-style: italic;
}

.about-text strong {
  color: var(--color-orange);
}

/* About photo-2 removed — both photos now in flip card */

/* --- Store Section --- */
.section-store {
  max-width: none;
  padding: 6rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.4) 20%, rgba(26, 26, 46, 0.4) 80%, transparent 100%);
}

.store-shipping-info {
  text-align: center;
  color: var(--color-text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  border: 1px solid rgba(212, 132, 62, 0.2);
  background: rgba(15, 14, 23, 0.6);
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-3px);
}

/* Product image flip */
.product-image-flip {
  perspective: 800px;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1;
  background: #111;
}

.product-image-flip .album-flip {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.product-image-flip:hover .album-flip {
  transform: rotateY(180deg);
}

.product-image-flip .album-front,
.product-image-flip .album-back {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  box-shadow: none;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
}

.product-image-flip .album-back {
  transform: rotateY(180deg);
}

.product-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-buy-btn {
  margin-top: auto;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-cream);
  margin-bottom: 0.3rem;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 0.8rem;
}

.product-note {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.product-note a {
  color: var(--color-orange);
  text-decoration: underline;
}

/* Size selector */
.product-sizes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.size-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
}

.size-select {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(212, 132, 62, 0.3);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s;
}

.size-select:focus {
  border-color: var(--color-orange);
}

/* Buy button */
.product-buy-btn {
  width: 100%;
  padding: 0.7rem 1rem;
  background: transparent;
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-buy-btn:hover {
  background: var(--color-orange);
  color: var(--color-bg);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  pointer-events: auto;
}

.lang-sep {
  color: var(--color-text-dim);
}

.lang-btn {
  color: var(--color-text-dim);
  padding: 0.2rem 0.3rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.lang-btn:hover {
  color: var(--color-cream);
}

.lang-btn.active {
  color: var(--color-orange);
}

/* Nav cart icon */
.nav-cart {
  position: relative;
  color: var(--color-cream);
  display: flex;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-cart:hover {
  color: var(--color-orange);
}

.nav-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-orange);
  color: var(--color-bg);
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Product Lightbox Modal --- */
.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20000;
  align-items: center;
  justify-content: center;
}

.product-modal.open {
  display: flex;
}

.product-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.product-modal-content {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 500px;
  width: 85vw;
  height: 100vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-cream);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 2;
}

.product-modal-close:hover {
  color: var(--color-orange);
}

.product-modal-image {
  perspective: 1000px;
  cursor: pointer;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal-flip {
  position: relative;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
  height: 100%;
}

.product-modal-flip.flipped {
  transform: rotateY(180deg);
}

.product-modal-front,
.product-modal-back {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  backface-visibility: hidden;
  border: 3px solid rgba(212, 132, 62, 0.3);
}

.product-modal-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: rotateY(180deg);
}

.product-modal-hint {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-dim);
  letter-spacing: 0.1em;
}

/* --- Dates Section --- */
.dates-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.date-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(212, 132, 62, 0.2);
  background: rgba(26, 26, 46, 0.4);
  transition: all 0.3s ease;
}

.date-item:hover {
  border-color: var(--color-orange);
  background: rgba(26, 26, 46, 0.7);
  transform: translateX(5px);
}

.date-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.date-day {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
}

.date-month {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-cream);
}

.date-year {
  font-size: 0.75rem;
  color: var(--color-text-dim);
}

.date-venue {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-cream);
}

.date-city {
  font-size: 0.9rem;
  color: var(--color-text-dim);
}

.date-ticket-btn {
  margin-left: auto;
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.date-ticket-btn:hover {
  background: var(--color-orange);
  color: var(--color-bg);
}

.dates-more {
  text-align: center;
  margin-top: 2rem;
  color: var(--color-text-dim);
  font-style: italic;
}

/* --- Contact Section --- */
.section-contact {
  max-width: 700px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
}

.form-group input,
.form-group textarea {
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(212, 132, 62, 0.3);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 10px rgba(212, 132, 62, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  align-self: flex-start;
  padding: 0.8rem 2.5rem;
  background: transparent;
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--color-orange);
  color: var(--color-bg);
}

/* --- Press Kit --- */
.presskit {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(212, 132, 62, 0.15);
  text-align: center;
}

.presskit-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-orange);
  margin-bottom: 0.5rem;
}

.presskit-text {
  font-size: 0.9rem;
  color: var(--color-text-dim);
  margin-bottom: 1.5rem;
}

.presskit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.presskit-btn:hover {
  background: var(--color-orange);
  color: var(--color-bg);
}

/* --- Snipcart Overrides --- */
#snipcart-main-container {
  position: fixed !important;
  top: 80px !important;
  left: 0 !important;
  width: 100% !important;
  height: calc(100vh - 80px) !important;
  max-height: calc(100vh - 80px) !important;
  z-index: 50000 !important;
  overflow: hidden !important;
}

#snipcart-main-container > div {
  max-height: calc(100vh - 80px) !important;
  overflow-y: auto !important;
}

/* Dark theme for Snipcart to match VHS style */
.snipcart-cart__content,
.snipcart-layout__content,
.snipcart-sidecart .snipcart-cart__content {
  background: #1a1a2e !important;
  color: #e8d5b7 !important;
}

.snipcart-cart-header,
.snipcart-cart-header__title {
  color: #e8d5b7 !important;
}

.snipcart-item-line__title {
  color: #e8d5b7 !important;
}

.snipcart-item-line__variant {
  color: #8a8078 !important;
}

.snipcart__font--secondary {
  color: #d4843e !important;
}

.snipcart-cart__footer {
  background: #0f0e17 !important;
  padding-bottom: 80px !important;
}

.snipcart-btn--highlight {
  background: #d4843e !important;
  color: #0f0e17 !important;
  border: none !important;
}

.snipcart-btn--highlight:hover {
  background: #e8d5b7 !important;
}

.snipcart-modal__overlay {
  background: rgba(15, 14, 23, 0.6) !important;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid rgba(212, 132, 62, 0.15);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  height: 30px;
  width: auto;
  margin: 0 auto 1.5rem;

  opacity: 0.5;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--color-text-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  opacity: 0.5;
}

/* --- Animations --- */
@keyframes vhsFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  /* Simplified TV frame on mobile — thin border only */
  .tv-bezel {
    border-width: 10px;
    border-radius: 8px;
    box-shadow:
      inset 0 0 30px 10px rgba(0, 0, 0, 0.5),
      0 0 0 2px #1a150f,
      0 0 0 4px #3d3228;
  }

  .tv-panel,
  .tv-antenna,
  .tv-screen-border {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    flex-direction: column;
    background: rgba(15, 14, 23, 0.98);
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    backdrop-filter: blur(10px);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hero-logo-cycle {
    max-width: 350px;
  }

  .section-title {
    font-size: 2rem;
  }

  .album {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .date-item {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
  }

  .date-ticket-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .store-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-tagline {
    font-size: 1rem;
  }

  .section {
    padding: 4rem 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}
