/* ---------------------------------------------------------
   grace honeywell — shared styles
   Aesthetic: cream background, black serif/italic accents,
   thin hairline dividers, generous whitespace — matching the
   current gracehoneywell.com look.
--------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Jost:wght@400;500&display=swap');

:root {
  --cream: #0d0d0d;
  --ink: #f7f3ea;
  --muted: #9a948a;
  --line: #333029;
  --maxw: 880px;
}

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', serif;
}

em, .accent {
  font-style: italic;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* Header */
header {
  padding: 40px 0 20px;
  text-align: center;
}
header .logo img {
  max-width: 220px;
  height: auto;
  margin: 0 auto 22px;
  display: block;
}
nav.mainnav {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  margin-bottom: 18px;
}
nav.mainnav a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
nav.mainnav a.active,
nav.mainnav a:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.social-row a:hover { color: var(--ink); }

/* Hero */
.hero {
  text-align: center;
  padding: 20px 0 60px;
}
.hero img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 36px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-style: italic;
  font-weight: 500;
}
.hero .release-tag {
  margin: 10px 0 18px;
  color: var(--muted);
  font-style: italic;
  font-size: 1rem;
}
.hero .listen-link {
  font-style: italic;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* Section divider */
hr.divider {
  border: none;
  border-top: 1px solid var(--line);
  max-width: var(--maxw);
  margin: 56px auto;
}

/* Section titles */
.section-title {
  text-align: center;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 28px;
}

/* Shows widget */
#shows-widget-placeholder {
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 32px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
#shows-widget-placeholder code {
  background: #ece5d3;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Get in touch / email form */
.contact-block {
  text-align: center;
  padding: 20px 0 10px;
}
.contact-block p {
  max-width: 520px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 0.95rem;
}
.email-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.email-form input[type="email"] {
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: #fff;
  min-width: 260px;
  font-family: 'Jost', sans-serif;
}
.email-form button {
  padding: 12px 24px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  cursor: pointer;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  text-transform: lowercase;
  font-family: 'Jost', sans-serif;
}
.email-form button:hover { opacity: 0.85; }

/* Bio page */
.bio-photo {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  margin-bottom: 36px;
  border-radius: 2px;
}
.bio-text p {
  max-width: 680px;
  margin: 0 auto 20px;
}
.bio-text p.bold { font-weight: 500; }

/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 40px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
}

/* Music page */
.spotify-embed {
  max-width: var(--maxw);
  margin: 0 auto;
}
.spotify-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 10px;
}

/* Video page */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 50px 0 40px;
  color: var(--muted);
  font-size: 0.8rem;
}
footer .footlinks {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
footer .footlinks a:hover { color: var(--ink); }
footer .photo-credit {
  font-style: italic;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  nav.mainnav { gap: 20px; flex-wrap: wrap; }
  .social-row { flex-wrap: wrap; }
}
