:root {
  --primary: #0687f5;
  --bg: #fdfaf6;
  --text: #222;
  --radius: 8px;
  --max-width: 1024px;
}

/* —— Reset & Base —— */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a {
  color: var(--primary);
  text-decoration: none;
}

/* —— Unified Header & Footer —— */
.site-header, .site-footer {
  background: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.site-header h1 a {
  font-size: 2.75rem;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.25rem;
}
.site-header p {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}
.nav-bar a {
  margin: 0 1rem;
  font-weight: 700;
}
.site-footer p {
  font-size: 0.9rem;
  color: #666;
}

/* —— Page Container —— */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* —— Home: Spotlight —— */
.release-title {
  font-size: 2rem;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
  margin-bottom: 1.5rem;
}
.release-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.release-spotlight iframe {
  width: 100%;
  aspect-ratio: 1;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.release-spotlight .description p + p {
  margin-top: 1rem;
}

/* —— Discography Grid —— */
.embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.release-card iframe {
  width: 100%;
  aspect-ratio: 1;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.release-card h3 {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

/* —— About Page —— */
.about-hero {
  background: #f4f4f4;
  text-align: center;
  padding: 3rem 1rem;
}
.about-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.about-hero p {
  font-size: 1.1rem;
  color: #555;
}
.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.bio-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}
.bio-grid .headshot {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.bio-grid .bio-text h3 {
  margin-top: 0;
  font-size: 1.75rem;
  color: var(--primary);
}
.bio-grid .bio-text p + p,
.about-section p + p {
  margin-top: 1rem;
}
.about-section {
  margin-top: 3rem;
}
.about-section h3 {
  font-size: 1.75rem;
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
  display: inline-block;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
}

/* —— Connect Page —— */
.connect-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.connect-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.connect-hero p {
  font-size: 1.1rem;
  color: #555;
}
.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1.5rem;
}
.platform-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.platform-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.platform-card p {
  font-size: 0.9rem;
  color: #666;
}

/* —— Projects Page —— */
.project-hero {
  background: #f4f4f4;
  text-align: center;
  padding: 3rem 1rem;
}
.project-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.project-hero p {
  font-size: 1.1rem;
  color: #555;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto 3rem;
}
.embed-player iframe {
  width: 100%;
  aspect-ratio: 4/5;               /* taller box for less scrolling */
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* —— Responsive Tweaks —— */
@media (max-width: 700px) {
  .release-spotlight,
  .embed-grid {
    grid-template-columns: 1fr;
  }
  .project-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .connect-hero h2 { font-size: 2rem; }
  .connect-grid { gap: 1rem; }
  .bio-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}