@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@700;800;900&display=swap');


:root {
  --bg-main: #000000;
  --bg-alt: #050505;
  --border-subtle: #333333;
  --text-main: #ffffff;
  --text-muted: #cccccc;
  --accent: #e00000;
  --radius-lg: 18px;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

header {
  background: #000;
  color: #fff;
  border-bottom: 1px solid #222;
}

header .nav-logo span,
header .nav-tagline {
  color: #f5f5f5;
}

header .nav-links a {
  color: #e3e3e3;
}

header .nav-links a:hover {
  color: #ffffff;
}



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

a {
  color: inherit;
  text-decoration: none;
}

/* LAYOUT */
main {
  padding-bottom: 3rem;
}

.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 1.25rem;
  margin: 0 auto;
}

/* NAV */
header {
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  height: 32px;
  width: auto;
  border-radius: 10px;
}

.nav-logo span {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 600;
}

.nav-tagline {
  font-size: 0.74rem;
  color: #f5f5f5;
}

.nav-links {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
  color: #f5f5f5;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.16s ease-out;
}

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

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

.nav-links .active-link {
  color: var(--text-main);
  font-weight: 600;
}



/* Nav dropdown for Artists */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: #f5f5f5;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  padding: 0 0 0.2rem;
  cursor: pointer;
  position: relative;
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.16s ease-out;
}

.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--text-main);
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  width: 100%;
}

.nav-dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: rgba(0,0,0,0.96);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
  padding: 0.35rem 0;
  display: none;
  min-width: 190px;
  z-index: 40;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.35rem 0.9rem;
  font-size: 0.68rem;
  text-transform: none;
  letter-spacing: 0.04em;
  color: #f5f5f5;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.06);
}

/* Show dropdown on hover (desktop) */
@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
  }
}

/* Stack nicely on mobile */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding-left: 0.5rem;
  }
  .nav-dropdown-menu a {
    padding-left: 0;
  }
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.1rem;
}

/* HERO + PAGE HEADERS */
.page-hero {
  max-width: 1120px;
  margin: 2.7rem auto 1.8rem;
  padding: 0 1.25rem;
}

.home-hero {
  max-width: none;
  margin: 0 0 2.4rem;
  padding: 0;
}

.hero-photo {
  position: relative;
  min-height: 200px;
  background-size: cover;
  background-position: center 24%;
  filter: grayscale(100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Cinematic warm fade over the photo */
  background:
    linear-gradient(120deg,
      rgba(0, 0, 0, 0.92),
      rgba(120, 60, 10, 0.45),
      rgba(0, 0, 0, 0.96));
}

.hero-photo-content {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.2rem 1.4rem 3.4rem;
  color: #ffffff;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.7rem;
  opacity: 0.85;
  margin-bottom: 0.7rem;
}

.home-hero h1 {
  font-size: clamp(2.1rem, 2.9vw + 1rem, 2.6rem);
  margin: 0 0 0.4rem;
}

.home-hero p {
  font-size: 0.95rem;
  max-width: 32rem;
  color: #f1f1f1;
}

@media (max-width: 640px) {
  .hero-photo-content {
    padding: 2.4rem 1.2rem 2.6rem;
  }
}



.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.7rem;
  color: #f5f5f5;
  margin-bottom: 0.6rem;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 2.6vw + 1rem, 2.4rem);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.page-hero p {
  max-width: 40rem;
  color: #f5f5f5;
  font-size: 0.96rem;
}

/* GENERIC SECTIONS */
.section {
  padding: 2.3rem 1.25rem;
  border-top: 1px solid var(--border-subtle);
  max-width: 1120px;
  margin: 0 auto;
}

.section-heading {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.section-sub {
  font-size: 0.9rem;
  color: #f5f5f5;
  max-width: 36rem;
  margin-bottom: 1.3rem;
}

/* GRID + CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 1.4rem;
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid #e00000;
  background: #ffffff;
  padding: 1rem 1.1rem 1.2rem;
  color: #000000;
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
}

.card h3,
.card p {
  color: #000000;
}

.card-cover {
  margin-bottom: 0.7rem;
  border-radius: 12px;
  overflow: hidden;
  background: #111111;
  padding: 0.6rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.card-cover img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  display: block;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: #000000;
}

.meta-row {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #000000;
  align-items: center;
}

.badge {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 0.15rem 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* TWO-COLUMN LAYOUTS */
.section .two-col,
.artist-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,1.15fr);
  gap: 2rem;
}

.section .two-col p,
.artist-bio p {
  font-size: 0.9rem;
  color: #f5f5f5;
}

/* ARTIST PAGES */
.artist-hero {
  margin-top: 2.2rem;
}

.artist-meta {
  font-size: 0.85rem;
  color: #f5f5f5;
}

.artist-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 1rem;
}

.artist-photos img {
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.pill {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 0.2rem 0.7rem;
  font-size: 0.74rem;
}

/* PODCAST PAGE EXTRAS */
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.btn-link {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1rem;
}

.episode-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 0.9rem 1rem;
  background: #ffffff;
}

.episode-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

.episode-card p {
  font-size: 0.9rem;
  color: #f5f5f5;
}

/* CONTACT */
.contact-layout form {
  display: grid;
  gap: 0.9rem;
  font-size: 0.85rem;
}

.contact-layout label {
  display: block;
  margin-bottom: 0.2rem;
}

.contact-layout input,
.contact-layout textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  font-family: inherit;
  font-size: 0.88rem;
}

.contact-layout textarea {
  min-height: 120px;
}

/* BUTTONS */
.btn,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #000;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: transparent;
  cursor: pointer;
}

.btn-primary,
button[type="submit"] {
  background: #000;
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: #000;
}



/* HOME PAGE EXTRAS */
.home-feature {
  background: var(--bg-alt);
  margin-top: -0.25rem;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.2rem;
  align-items: center;
}

.home-feature-copy p {
  margin-bottom: 0.7rem;
}

.home-feature-meta {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-feature-visual {
  max-width: 420px;
  margin: 0 auto;
}

.home-feature-cover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.home-feature-caption {
  font-size: 0.85rem;
  color: #f5f5f5;
  margin-top: 0.6rem;
}

.home-strip {
  background: #000;
}

.home-strip .section-sub {
  color: var(--text-main);
}

.home-connect {
  background: var(--bg-alt);
}

.home-connect-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.home-connect-row {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-connect-note {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #f5f5f5;
}

/* Responsive tweaks for home sections */
@media (max-width: 900px) {
  .home-feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-feature {
    margin-top: 0;
  }
}
/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.2rem 0 1.4rem;
}

.site-footer p {
  text-align: center;
  font-size: 0.8rem;
  color: #f5f5f5;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav {
    align-items: center;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    inset: 56px 1rem auto;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    padding: 0.8rem 1rem;
    flex-direction: column;
  }
  .nav-links.show {
    display: flex;
  }
}

/* MOBILE LAYOUT */
@media (max-width: 800px) {
  .section .two-col,
  .artist-layout,
  .contact-layout {
    grid-template-columns: minmax(0,1fr);
  }
}


/* Artist album grid */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.3rem;
  margin-top: 1.4rem;
}

.album-card {
  text-align: center;
}

.album-card img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  object-fit: contain;
  background: #000000;
  padding: 0.4rem;
}

.album-card figcaption {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  color: #e0e0e0;
}


/* Red theme updates */
a { color: #e00000; }
a:hover { color: #b00000; }

.section-heading {
  border-left: 4px solid #e00000;
  padding-left: 8px;
}

.nav-links a {
  color: #e00000;
}

.nav-links a:hover {
  color: #b00000;
}

.hero-eyebrow,
.home-hero p {
  color: #ffffff;
}

.eyebrow {
  color: #e00000;
}

.badge,
.pill,
.btn-link {
  border-color: #e00000;
  color: #e00000;
}

.meta-row {
  color: #e00000;
}

.nav-toggle {
  color: #e00000;
}

.nav-logo span {
  color: #ffffff;
}

.nav-links a {
  color: #e00000 !important;
}


/* Hover zoom animation */
.album-animated img {
  display:block;
  transition: transform .3s ease, box-shadow .3s ease;
}
.album-animated:hover img {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* Logo pulse */
@keyframes pulse {
  0% { transform: scale(1); opacity:1;}
  50% { transform: scale(1.06); opacity:.9;}
  100% { transform: scale(1); opacity:1;}
}
.logo-pulse { animation: pulse 2.5s ease-in-out infinite;}

/* Scroll fade-in */
.fade-in {
  opacity:0;
  transform: translateY(20px);
  transition: all .6s ease-out;
}
.fade-in.visible {
  opacity:1;
  transform: translateY(0);
}


/* Merch page buttons */
.card-actions {
  margin-top: 0.7rem;
}

.merch-btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.merch-btn:hover {
  opacity: 0.9;
}


/* Artist hero image */
.quay-hero-photo {
  background-image: url('assets/quay-hero-cinema.jpg');
  background-size: cover;
  background-position: center center;
  filter: none;
}


/* Neva brand link in nav */
.nav-links a.nav-neva-link {
  color: #2565ff;
  font-weight: 600;
}

header .nav-links a.nav-neva-link:hover {
  color: #ffffff;
}

/* Neva hero */
.neva-hero-photo {
  background-image: url('assets/neva-hero-header.jpg');
  background-size: cover;
  background-position: center 20%;
}

.neva-hero .hero-eyebrow {
  letter-spacing: 0.08em;
  color: #a8bdff;
}

/* Simple bullet styling */
.bullet-list {
  padding-left: 1.2rem;
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: #f5f5f5;
}

.bullet-list li {
  margin-bottom: 0.3rem;
}

/* Timeline visuals */
.timeline {
  margin-top: 1rem;
  border-left: 2px solid var(--border-subtle);
  padding-left: 1.1rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 0.95rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.4rem;
  top: 0.3rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-year {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #f5f5f5;
  font-weight: 600;
  margin-bottom: 0.1rem;
}


/* Highlight Neva tab */
.nav-links a.nav-neva-link {
  color: #2565ff !important;
  font-weight: 700;
}

header .nav-links a.nav-neva-link.active-link {
  border-bottom-color: #2565ff;
}

/* Bigger hero for Neva so face shows */
.neva-hero-photo {
  min-height: 360px;
  background-position: center 15%;
}

.neva-hero .hero-photo-content {
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}

/* Neva visuals section spacing */
.neva-visuals .card-cover {
  max-height: 220px;
  overflow: hidden;
}

.neva-visuals .card-cover img {
  width: 100%;
  object-fit: cover;
}


/* Neva hero adjustments */
.neva-hero-photo {
  min-height: 420px;
  background-position: center 40%;
}

.neva-hero .hero-photo-content h1 {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 2.5rem;
}

.neva-hero .hero-photo-content p {
  font-size: 1.02rem;
}

/* Fix podcast / clothing image sizing */
.neva-visuals .card-cover,
.section .card-cover {
  overflow: hidden;
}

.neva-visuals .card-cover img,
.section .card-cover img {
  width: 100%;
  display: block;
  object-fit: cover;
}


/* Unified hero height across Home, Neva, and Quay */
.home-hero .hero-photo,
.artist-hero .hero-photo {
  min-height: 420px;
}

/* Quay header align roughly similar crop */
.quay-hero-photo {
  background-position: center 40%;
}

/* Neva header black & white already handled in image file; tweak crop */
.neva-hero-photo {
  background-position: center 38%;
}


/* Beats by Neva hero */
.beats-hero-photo {
  background-image: url('assets/beats-hero-neva-studio-bw.jpg');
  background-size: cover;
  background-position: center 45%;
  position: relative;
  min-height: 420px;
}

.beats-hero .hero-photo-content h1 {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beats-logo-card {
  position: absolute;
  right: 5%;
  bottom: -4.6rem;
  max-width: 200px;
  padding: 0.75rem 1rem;
  background: rgba(10,10,10,0.85);
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.7);
}

.beats-logo-card img {
  display: block;
  width: 100%;
}

/* Highlight Beats tab */
.nav-links a.nav-beats-link {
  color: #e04545;
  font-weight: 700;
}

header .nav-links a.nav-beats-link.active-link {
  border-bottom: 2px solid #e04545;
}

/* Ensure card cover images fit nicely */
.section .card-cover img {
  width: 100%;
  display: block;
  object-fit: cover;
}


/* Studio gallery for Beats by Neva */
.studio-gallery {
  text-align: center;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.studio-shot img {
  width: 100%;
  display: block;
  border-radius: 14px;
}


/* Beats hero pill color tweak */
.beats-hero .pill {
  border-color: rgba(255,255,255,0.7);
  color: #ffffff;
}




h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

p {
  line-height: 1.45;
  max-width: 720px;
}

/* NEVA card theme (optional): use .card-dark when you actually want white text on dark cards */
.card-dark p,
.card-dark .section-sub,
.card-dark .meta-row,
.card-dark .meta-row a {
  color: #f5f5f5;
}

.card-dark .badge {
  border-color: #e00000;
  color: #e00000;
  background: transparent;
}

/* Artists hero */
.artists-hero-photo {
  background-image: url('assets/artists-hero-neva-quay.jpeg');
  background-size: cover;
  background-position: center 32%;
}

.artists-hero .hero-eyebrow {
  letter-spacing: 0.16em;
  color: #ffbcb3;
}

/* Artist roster cards with thumbs */
.artist-card {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 1rem;
  align-items: flex-start;
}

.artist-thumb img {
  width: 82px;
  height: 82px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 10px 26px rgba(0,0,0,0.6);
}


/* Artist card CTA buttons (mobile-friendly link to profiles) */
.artist-cta {
  display: inline-block;
  margin-top: 0.55rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #e00000;
  color: #ffffff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.white-section, .white-section p, .white-section .section-sub { color:#000 !important; }

footer, footer p, .footer-text { color:#f00 !important; }
