/* ========================================
   Jake Wells EPK — jakewellsmusic.com
   ======================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --bg-section: #111111;
  --bg-card: #1a1a1a;
  --text: #e8e8e8;
  --text-muted: #888888;
  --accent: #4ecdc4;
  --accent-hover: #45b7b0;
  --spotify: #1DB954;
  --apple: #fc3c44;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  background: url('images/hero.jpg') center 30% / cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.2) 0%,
    rgba(10, 10, 10, 0.5) 60%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 60px;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-location {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ========================================
   NAV
   ======================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 16px 24px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* ========================================
   BIO
   ======================================== */

.bio-section {
  background: var(--bg-section);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.bio-photo img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.bio-text p {
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.75;
}

.bio-credit {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* ========================================
   MUSIC
   ======================================== */

.music-section {
  background: var(--bg);
}

.album-feature {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.album-art img {
  width: 100%;
  border-radius: 4px;
  display: block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.album-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 4px;
}

.album-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.tracklist {
  list-style: none;
  counter-reset: track;
  margin-bottom: 28px;
}

.tracklist li {
  counter-increment: track;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text);
}

.tracklist li::before {
  content: counter(track, decimal-leading-zero);
  color: var(--text-muted);
  margin-right: 16px;
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}

.stream-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: transform 0.2s, opacity 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.btn-spotify {
  background: var(--spotify);
  color: #fff;
}

.btn-apple {
  background: var(--apple);
  color: #fff;
}

.featured-tracks {
  margin-top: 16px;
}

.featured-tracks-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.track-embeds {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ========================================
   PRESS
   ======================================== */

.press-section {
  background: var(--bg-section);
}

.press-intro {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 32px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.press-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-card);
}

.press-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.press-card:hover img {
  transform: scale(1.03);
}

.press-download {
  display: block;
  text-align: center;
  padding: 10px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.press-download:hover {
  background: rgba(78, 205, 196, 0.08);
}

.press-credits {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
}

.press-credits h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.press-credits p {
  color: var(--text-muted);
  font-weight: 300;
}

/* ========================================
   CONTACT
   ======================================== */

.contact-section {
  background: var(--bg);
}

.contact-content {
  text-align: center;
}

.contact-content p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 16px;
}

.contact-email {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  margin-bottom: 32px;
}

.contact-email:hover {
  border-bottom-color: var(--accent);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.social-links a {
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}

.social-links a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer p {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 300;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    height: 70vh;
  }

  .nav {
    gap: 24px;
    padding: 14px 16px;
  }

  .nav a {
    font-size: 0.8rem;
  }

  .bio-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bio-photo {
    max-width: 400px;
  }

  .album-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .album-art {
    max-width: 280px;
  }

  .press-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .press-card img {
    aspect-ratio: 16 / 10;
  }

  h2 {
    font-size: 1.6rem;
  }
}

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

  .hero-tagline {
    font-size: 0.9rem;
  }

  .nav {
    gap: 16px;
  }

  .stream-links {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }
}
