/* ============================================
   ONLY THE STATIC — Website Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #0B0E14;
  --bg-secondary: #1C2030;
  --bg-card: #151922;
  --text-primary: #E4D5BA;
  --text-secondary: #B8956E;
  --accent-teal: #4A8A9D;
  --accent-orange: #C67B5C;
  --text-muted: #7A8C9E;
  --font: 'Montserrat', sans-serif;
  --max-width: 1100px;
  --nav-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

a:hover {
  color: var(--text-primary);
}

::selection {
  background: var(--accent-teal);
  color: var(--bg-primary);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Grain Overlay (full page) ---------- */
.grain-overlay {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  animation: grain 0.5s steps(1) infinite;
}

@keyframes grain {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-5%, -5%); }
  40%  { transform: translate(5%, 5%); }
  60%  { transform: translate(-2%, 3%); }
  80%  { transform: translate(3%, -2%); }
  100% { transform: translate(0, 0); }
}

/* ---------- CRT Scanlines (full page, very subtle) ---------- */
.scanlines-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.015) 2px,
    rgba(0, 0, 0, 0.015) 4px
  );
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 2rem;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Nav stays transparent throughout */

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text-primary);
  line-height: 1;
  gap: 2px;
}

.nav-logo:hover {
  color: var(--text-primary);
}

.nav-logo-sub {
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav-logo-main {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

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

.nav-links a:hover {
  color: var(--text-primary);
}

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

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Dark vignette overlay on the hero image */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(11, 14, 20, 0.5) 100%),
    linear-gradient(to bottom, rgba(11, 14, 20, 0.2) 0%, transparent 30%, transparent 70%, rgba(11, 14, 20, 0.85) 100%);
  z-index: 1;
}

/* ---------- Animated Signal Bars (Rounded Rectangles) ---------- */
.hero-signal-bars {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.signal-bar {
  position: absolute;
  height: 3px;
  border-radius: 3px;
  will-change: transform;
  animation: barDrift linear infinite;
}

/* Drift animation — bars slide horizontally */
@keyframes barDrift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--drift)); }
}

/* Reverse drift for bars going the other direction */
@keyframes barDriftReverse {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--drift-rev)); }
}

/* Subtle flicker on some bars */
@keyframes barFlicker {
  0%, 70%, 100% { opacity: var(--bar-opacity); }
  72%  { opacity: 0.02; }
  75%  { opacity: var(--bar-opacity); }
  90%  { opacity: 0.04; }
  93%  { opacity: var(--bar-opacity); }
}

/* ---------- Hero Content ---------- */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero-logo-sub {
  font-size: clamp(0.8rem, 1.8vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 1;
  text-shadow: 0 0 20px rgba(11, 14, 20, 0.8);
}

.hero-logo-main {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1;
  text-shadow: 0 0 60px rgba(228, 213, 186, 0.15);
}

.hero-divider {
  width: 80px;
  height: 1.5px;
  margin: 1.2rem auto;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal));
  opacity: 0.7;
}

.hero-tagline {
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.85;
  text-shadow: 0 0 20px rgba(11, 14, 20, 0.8);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--text-muted));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 0.7; transform: scaleY(1.2); }
}

/* ---------- Sections (shared) ---------- */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.section-heading-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.heading-line {
  display: block;
  width: 40px;
  height: 1.5px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal));
  opacity: 0.6;
}

/* ---------- Music Section ---------- */
.music {
  background: var(--bg-secondary);
}

.music-feature {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: center;
}

.music-feature-art {
  position: relative;
}

.music-cover {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.music-cover-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(74, 138, 157, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.music-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 0.75rem;
}

.music-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.music-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.music-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}

.music-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(228, 213, 186, 0.12);
  border-radius: 50px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.stream-btn:hover {
  color: var(--accent-teal);
  border-color: var(--accent-teal);
  background: rgba(74, 138, 157, 0.08);
  box-shadow: 0 0 20px rgba(74, 138, 157, 0.1);
}

.stream-btn svg {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.stream-btn:hover svg {
  opacity: 1;
}

/* Upcoming */
.music-upcoming {
  text-align: center;
  margin-top: 4rem;
}

.upcoming-divider {
  width: 1px;
  height: 40px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(to bottom, transparent, var(--text-muted));
  opacity: 0.3;
}

.upcoming-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ---------- About Section ---------- */
.about {
  background: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.8);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(11, 14, 20, 0.6) 100%
  );
  pointer-events: none;
}

.about-text {
  position: relative;
}

.crescent-moon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 5px -3px 0 0 var(--text-muted);
  margin-bottom: 1.5rem;
  opacity: 0.4;
}

.about-bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.about-expanded.open {
  max-height: 600px;
}

.about-toggle {
  background: none;
  border: none;
  color: var(--accent-teal);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0;
  margin: 0.5rem 0 2rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.about-toggle:hover {
  color: var(--text-primary);
}

.about-quote {
  margin-top: 1rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent-teal);
  position: relative;
}

.about-quote .quote-mark {
  position: absolute;
  left: -0.5rem;
  top: -1.5rem;
  font-size: 3rem;
  color: var(--accent-teal);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.about-quote {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.8;
}

/* ---------- Press Section ---------- */
.press {
  background: var(--bg-secondary);
}

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

.press-card {
  background: var(--bg-card);
  border: 1px solid rgba(228, 213, 186, 0.05);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.press-card:hover {
  border-color: rgba(74, 138, 157, 0.2);
  transform: translateY(-2px);
}

.press-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.press-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.press-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--accent-teal);
  border-radius: 50px;
  color: var(--accent-teal);
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.press-btn:hover {
  background: var(--accent-teal);
  color: var(--bg-primary);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-primary);
  padding: 5rem 0 3rem;
  position: relative;
}

.footer-waveform {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  color: var(--accent-teal);
  overflow: hidden;
}

.waveform-svg {
  width: 100%;
  height: 100%;
}

/* Signup */
.footer-signup {
  text-align: center;
  margin-bottom: 4rem;
}

.footer-signup-heading {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.footer-signup-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.signup-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}

.signup-input {
  flex: 1;
  padding: 0.75rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid rgba(228, 213, 186, 0.1);
  border-right: none;
  border-radius: 50px 0 0 50px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
}

.signup-input::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

.signup-input:focus {
  border-color: var(--accent-teal);
}

.signup-btn {
  padding: 0.75rem 1.8rem;
  background: var(--accent-teal);
  border: 1px solid var(--accent-teal);
  border-radius: 0 50px 50px 0;
  color: var(--bg-primary);
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.signup-btn:hover {
  background: transparent;
  color: var(--accent-teal);
}

.signup-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  opacity: 0.5;
}

/* Social links */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.social-link {
  color: var(--text-muted);
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
  color: var(--accent-teal);
  transform: translateY(-2px);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
}

.footer-moon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 4px -2px 0 0 var(--text-muted);
  margin: 0 auto 1.5rem;
  opacity: 0.3;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.3;
  font-style: italic;
  margin-top: 0.25rem;
}

/* ---------- Fade-in Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain-overlay { animation: none; }
  .signal-bar { animation: none !important; }
  .hero-scroll-line { animation: none; }
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .music-feature {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(11, 14, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 999;
  }

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

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

  .section {
    padding: 5rem 0;
  }

  .section-heading {
    margin-bottom: 3rem;
  }

  .music-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .music-feature-art {
    max-width: 320px;
    margin: 0 auto;
  }

  .music-links {
    justify-content: center;
  }

  .music-description {
    max-width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    max-height: 350px;
  }

  .about-photo {
    aspect-ratio: 16/9;
  }

  .press-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .signup-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .signup-input {
    border-radius: 50px;
    border-right: 1px solid rgba(228, 213, 186, 0.1);
  }

  .signup-btn {
    border-radius: 50px;
  }

  .hero-logo-main {
    letter-spacing: 0.1em;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .stream-btn {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
  }

  .footer-social {
    gap: 1.2rem;
  }
}
