/* -----------------------------
    THEME TOGGLE
    Change ONLY this variable to switch between looks
    --theme: light            -> plain bright background
    --theme: bright-gradient -> subtle gradient / textured backdrop
    ------------------------------ */
:root {
  --theme: light;
  /* change to 'light' or 'bright-gradient' to try the solid light look */
  --bg-light: #f7f7f6;
  --bg-gradient-a: #fbfbfb;
  --bg-gradient-b: #f0f1f3;
  --muted: #4f5458;
  --accent: #000000;
  --nav-height: 64px;
}

/* Base */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, 'Helvetica Neue', Arial;
  color: var(--muted);
  background: var(--bg-light)
}

a {
  color: inherit;
  text-decoration: none
}

/* Theme application */
body.theme-light {
  background: var(--bg-light);
}

body.theme-bright-gradient {
  background: linear-gradient(180deg, var(--bg-gradient-a), var(--bg-gradient-b));
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px
}

/* HERO - fullscreen placeholder image that covers the viewport */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0
}

.hero .hero-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%
}

.hero .hero-media img,
.hero .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -5%; 
  display: block;
  background: #fff;
}

.hero .hero-media {
  background: #000;
}

.hero .hero-media video.landscape-video {
  object-fit: cover;
  object-position: center 22%;
}

@media (min-aspect-ratio: 18/9) {
  .hero .hero-media video.landscape-video {
    object-fit: contain;
    object-position: center center;
  }
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.15));
}

/* NAV - transparent, sticky */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  min-height: var(--nav-height)
}

nav {
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease
}

/* nav.scrolled {
  background: white !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  transition: none !important
} */

nav.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: saturate(180%) blur(10px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.nav-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: filter 0.3s ease
}

.logo img {
  height: 38px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3))
}

nav.scrolled .logo img {
  filter: none
}

.menu {
  display: flex;
  gap: 24px;
  align-items: center
}

.menu a {
  padding: 8px 16px;
  color: var(--accent);
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative
}

.menu a:hover {
  opacity: 0.7
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease, left 0.2s ease
}

.menu a:hover::after {
  width: 100%;
  left: 0
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 32px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: opacity 0.2s ease;
}

.social-icons a:hover {
  opacity: 0.7;
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer
}

.hamburger .bar {
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: block;
  margin: 4px 0
}

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 40;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.mobile-menu a {
  font-size: 22px;
  margin: 10px 0;
  color: var(--accent)
}

/* Hero center logo */
.hero-logo {
  position: relative;
  z-index: 6;
  max-width: 720px;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block
}

/* CONTENT */
main {
  padding: 48px 0
}

section {
  padding: 36px 0
}

.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  padding: 18px;
  border-radius: 12px;
  color: var(--muted)
}

iframe.embed {
  border: 0;
  width: 100%;
  height: 140px
}

/* FOOTER */
footer {
  padding: 36px 0;
  text-align: center;
  color: var(--muted)
}

/* Responsive */
@media (max-width:900px) {
  .menu {
    display: none
  }

  .hamburger {
    display: block
  }

  .hero {
    min-height: 520px
  }

  .logo img {
    height: 32px
  }

  .mobile-menu .social-icons {
    margin-left: 0;
    margin-top: 24px;
  }
}

/* releases */
.music-layout {
  display: grid;
  grid-template-columns: 442px 1fr;
  gap: 32px;
  align-items: start;
}

.player-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.player-wrapper::before {
  content: "";
  display: block;
  padding-top: 126%;
}

.player-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 96%;
  border-radius: 0;
}

.track-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.track {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 14px 18px;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.track strong {
  display: block;
  font-size: 16px;
  color: var(--accent);
}

.track span {
  font-size: 13px;
  color: var(--muted);
}

.track.active {
  background: rgba(0,0,0,0.06);
}

/* Mobile layout */
@media (max-width: 900px) {
  .music-layout {
    grid-template-columns: 1fr;
  }

  .player-wrapper iframe {
    height: 96%;
  }
}

/* =========================
  PRESS / PROMO SECTION
========================= */

.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 18px;
  padding: 0 18px 0 18px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

.media-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 1/1;
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(255,255,255,0.95);
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: 600;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  align-items: center;
}

.logo-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.logo-card.dark {
  background: #111;
}

.logo-card img {
  max-width: 100%;
  max-height: 70px;
}

.press-bio-block {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  max-width: 90%;
  margin: 36px auto 0;  
}

.press-bio-block p {
  font-size: 16px;
  line-height: 1.7;
}

.press-kit-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.press-kit-link:hover {
  opacity: 0.75;
}

.press-kit-link:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 2px;
  border-radius: 2px;
}

.newsletter {
  display: grid;
  gap: 20px;
}

.newsletter-copy h3 {
  margin: 0 0 8px;
  color: var(--accent);
}

.newsletter-copy p {
  margin: 0;
  line-height: 1.7;
}

.newsletter-form {
  display: grid;
  gap: 16px;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.newsletter-field {
  display: grid;
  gap: 8px;
}

.newsletter-field span {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.newsletter-field input,
.newsletter-field select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 16px;
  font: inherit;
  color: var(--accent);
}

.newsletter-field input:focus,
.newsletter-field select:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.38);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.newsletter-field-full {
  grid-column: 1 / -1;
}

.newsletter-locate {
  width: max-content;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  padding: 10px 14px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-locate:hover:not(:disabled) {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.32);
}

.newsletter-locate:disabled {
  opacity: 0.6;
  cursor: wait;
}

.newsletter-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter-submit {
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  padding: 12px 22px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.newsletter-submit:hover:not(:disabled) {
  opacity: 0.85;
}

.newsletter-submit:disabled {
  opacity: 0.55;
  cursor: wait;
}

.newsletter-status {
  margin: 0;
  min-height: 1.4em;
}

.newsletter-status[data-state="success"] {
  color: #0d6b35;
}

.newsletter-status[data-state="error"] {
  color: #b42318;
}

.newsletter-note {
  margin: 0;
  font-size: 14px;
}

.newsletter-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width:900px) {
  .press-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: repeat(2,1fr); }
  .newsletter-grid { grid-template-columns: 1fr; }
}
