/* Sola Scriptura — Modern worship, Scripture-rooted */

:root {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --surface: #1a1a1a;
  --gold: #c9a227;
  --gold-light: #e4c04a;
  --gold-muted: #8a7320;
  --text: #f5f5f5;
  --text-muted: #a0a0a0;
  --border: #2a2a2a;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", -apple-system, sans-serif;
  --space: 1.5rem;
  --radius: 8px;
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--gold-light);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space) var(--space);
}

.logo-link {
  display: block;
}
.logo-link.banner-text {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}
.logo-link.banner-text:hover {
  color: var(--gold);
}
.logo {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-patreon {
  color: var(--gold) !important;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 1px solid var(--border);
  }
  .nav-links.is-open {
    transform: translateX(0);
  }
  .nav-toggle {
    display: flex;
  }
}

/* Hero */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem var(--space);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.hero-content {
  max-width: 560px;
}
.hero-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 20px rgba(201, 162, 39, 0.15));
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  margin: 0 0 0.75rem;
  font-style: italic;
}
.hero-desc {
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-size: 1.05rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg);
}

/* About */
.about {
  padding: 4rem 0;
  background: var(--bg-soft);
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1.5rem;
  text-align: center;
}
.about-text {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.7;
}

/* Discography */
.discography {
  padding: 4rem 0;
  background: var(--bg);
}
.albums {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.album-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.album-card:hover {
  border-color: var(--gold-muted);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.album-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.album-cover-link {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}
.album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.album-card:hover .album-cover {
  transform: scale(1.03);
}
.album-info {
  padding: 1.5rem;
}
.album-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--text);
}
.album-psalms {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 0.75rem;
}
.album-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Blog */
.blog {
  padding: 4rem 0;
  background: var(--bg-soft);
}
.blog-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.blog-card:hover {
  border-color: var(--gold-muted);
}
.blog-date {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-muted);
  margin-bottom: 0.5rem;
}
.blog-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.blog-title a {
  color: var(--text);
}
.blog-title a:hover {
  color: var(--gold);
}
.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* FAQ */
.faq {
  padding: 4rem 0;
  background: var(--bg);
}
.faq-list {
  max-width: 640px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item:first-child {
  padding-top: 0;
}
.faq-question {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.faq-answer {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.9;
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
}
.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-nav a:hover {
  color: var(--gold);
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

@media (min-width: 769px) {
  .footer-copy {
    width: auto;
    margin: 0;
  }
}
