/* MetzgerMusic — metzgermusic.com */
:root {
  --navy: #1b2a44;
  --navy-deep: #131f33;
  --gold: #c3a15e;
  --gold-light: #d9bf8a;
  --ink: #2a2d33;
  --paper: #faf8f4;
  --white: #ffffff;
  --muted: #6b7180;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 1.05rem;
}

h1, h2, h3, .brand { font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif; }

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  border-bottom: 2px solid var(--gold);
  transition: background .35s ease, box-shadow .35s ease;
}

/* Home page: header floats transparently over the hero, then turns solid on scroll */
header.site-header--overlay {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
  border-bottom-color: transparent;
}
header.site-header--overlay.is-solid {
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  border-bottom-color: var(--gold);
}
/* push the hero down so the fixed overlay header doesn't cover it */
.site-header--overlay + .hero { padding-top: 6rem; }

.nav-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  flex-wrap: wrap;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 50px;
  width: auto;
  display: block;
  /* use the Cormorant font the page already loads so the logo is crisp and on-brand */
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

nav.main-nav { display: flex; gap: .25rem; flex-wrap: wrap; }

nav.main-nav a {
  color: #d7dce6;
  text-decoration: none;
  padding: .55rem .85rem;
  font-size: .95rem;
  letter-spacing: .4px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

nav.main-nav a:hover { color: var(--white); }
nav.main-nav a.active { color: var(--gold-light); border-bottom-color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 2.5rem 1.25rem 3rem;
  text-align: center;
}

.hero img {
  max-width: 860px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,.45);
  display: block;
  margin: 0 auto;
}

.hero .tagline {
  color: var(--gold-light);
  margin-top: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.4;
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 1px;
}
.hero .tagline .dot { color: var(--gold); margin: 0 .35rem; }

/* ---------- Page title band (interior pages) ---------- */
.page-band {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 2.75rem 1.25rem;
  text-align: center;
}
.page-band h1 {
  color: var(--gold-light);
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.page-band .rule {
  width: 70px; height: 3px;
  background: var(--gold);
  margin: .9rem auto 0;
  border-radius: 2px;
}

/* ---------- Layout ---------- */
main { max-width: 1080px; margin: 0 auto; padding: 3rem 1.25rem; }

section + section { margin-top: 3.5rem; }

h2.section-title {
  font-size: 2.1rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: .35rem;
}
.section-rule {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 0 0 1.6rem;
  border-radius: 2px;
}

p + p { margin-top: 1rem; }

a { color: #8a6d2f; }
a:hover { color: var(--navy); }

/* ---------- Video embeds ---------- */
.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  margin: 1.5rem 0;
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- Album / publication cards ---------- */
.album {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid #e5e0d5;
}
.album:last-of-type { border-bottom: none; }

.album img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
}

.album h3 {
  font-size: 1.55rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: .5rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.album .tracks { color: var(--ink); font-size: .98rem; }

.album .meta { color: var(--muted); font-size: .9rem; margin-top: .6rem; font-style: italic; }

.btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  padding: .55rem 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 3px;
  font-size: .92rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.btn:hover { background: var(--gold); color: var(--navy-deep); }
.btn.gold { background: var(--gold); color: var(--navy-deep); }
.btn.gold:hover { background: var(--gold-light); }

/* ---------- Price list ---------- */
.price-list { list-style: none; margin-top: .75rem; }
.price-list li {
  display: flex;
  justify-content: space-between;
  padding: .55rem .25rem;
  border-bottom: 1px dotted #d8d2c4;
  max-width: 480px;
}
.price-list .price { color: var(--navy); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid #e8e3d8;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 3px 14px rgba(0,0,0,.06);
}

.contact-card h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: .75rem; }

.email-big {
  font-size: 1.15rem;
  font-weight: 600;
  word-break: break-all;
}

form label { display: block; font-weight: 600; margin: 1rem 0 .3rem; font-size: .95rem; }
form input, form textarea {
  width: 100%;
  padding: .65rem .75rem;
  border: 1px solid #cfc9bb;
  border-radius: 4px;
  font: inherit;
  background: #fffdf9;
}
form textarea { min-height: 130px; resize: vertical; }
form button {
  margin-top: 1.25rem;
  background: var(--navy);
  color: var(--white);
  border: 0;
  padding: .7rem 1.8rem;
  border-radius: 3px;
  font-size: .95rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  cursor: pointer;
}
form button:hover { background: var(--gold); color: var(--navy-deep); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-deep);
  color: #aeb6c4;
  margin-top: 4rem;
  padding: 2.5rem 1.25rem;
  text-align: center;
  font-size: .95rem;
}

.social { margin-bottom: 1rem; }
.social a {
  color: var(--gold-light);
  text-decoration: none;
  margin: 0 .75rem;
  font-size: 1rem;
  letter-spacing: .5px;
}
.social a:hover { color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .album { grid-template-columns: 1fr; }
  .album img { max-width: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-wrap { justify-content: center; }
  .page-band h1 { font-size: 2rem; }
}
