/* The Genius Song Blog - Shared Styles */
:root {
  --navy: #0f1f3d;
  --gold: #c8a84b;
  --gold-light: #f0d880;
  --cream: #faf8f3;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #5a5a7a;
  --border: #e2ddd0;
  --accent-bg: #f5f0e8;
}

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

body {
  font-family: 'Georgia', serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.8;
}

/* NAV */
nav {
  background: var(--navy);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
nav .logo {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: .5px;
}
nav .nav-links { display: flex; gap: 24px; list-style: none; }
nav .nav-links a {
  color: #ccc;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: .88rem;
  transition: color .2s;
}
nav .nav-links a:hover { color: var(--gold); }

/* HERO BANNER */
.post-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 60%, #0d2847 100%);
  color: var(--white);
  padding: 72px 5% 64px;
  text-align: center;
}
.post-hero .eyebrow {
  color: var(--gold);
  font-family: 'Arial', sans-serif;
  font-size: .8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.post-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.3;
  max-width: 820px;
  margin: 0 auto 20px;
  font-weight: bold;
}
.post-hero .meta {
  color: #aac;
  font-size: .85rem;
  font-family: 'Arial', sans-serif;
}
.post-hero .meta span { margin: 0 8px; }

/* ARTICLE LAYOUT */
.article-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.article-wrap p {
  margin-bottom: 22px;
  font-size: 1.05rem;
}

.article-wrap h2 {
  color: var(--navy);
  font-size: 1.55rem;
  margin: 48px 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  line-height: 1.3;
}

.article-wrap h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin: 32px 0 14px;
  font-style: italic;
}

.article-wrap ul, .article-wrap ol {
  margin: 16px 0 22px 22px;
}
.article-wrap li { margin-bottom: 10px; font-size: 1.02rem; }

/* HIGHLIGHT BOX */
.highlight-box {
  background: var(--accent-bg);
  border-left: 4px solid var(--gold);
  padding: 22px 26px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
}
.highlight-box p { margin-bottom: 0; font-style: italic; color: #333; }

/* CTA BUTTON */
.cta-block {
  text-align: center;
  background: linear-gradient(135deg, var(--navy), #1a3060);
  border-radius: 14px;
  padding: 42px 32px;
  margin: 48px 0;
  color: var(--white);
}
.cta-block h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 12px; border: none; font-style: normal; }
.cta-block p { color: #ccd; margin-bottom: 24px; }
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: bold;
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  letter-spacing: .5px;
  transition: background .2s, transform .15s;
}
.cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* INTERNAL LINKS BOX */
.related-posts {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 48px 0;
}
.related-posts h3 {
  color: var(--navy);
  font-size: 1rem;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  border: none;
  font-style: normal;
}
.related-posts ul { margin: 0; padding: 0; list-style: none; }
.related-posts li { margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.related-posts li:last-child { border-bottom: none; margin-bottom: 0; }
.related-posts a { color: var(--navy); text-decoration: none; font-size: .95rem; }
.related-posts a:hover { color: var(--gold); text-decoration: underline; }

/* FOOTER */
footer {
  background: var(--navy);
  color: #99aacc;
  text-align: center;
  padding: 36px 5%;
  font-size: .83rem;
  font-family: 'Arial', sans-serif;
}
footer a { color: var(--gold); text-decoration: none; }
footer .footer-links { margin-bottom: 12px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 600px) {
  .post-hero { padding: 48px 5% 40px; }
  .article-wrap { padding: 36px 18px 60px; }
  nav .nav-links { display: none; }
}
