/* ============================================================
   Christian Media Productions – styles.css
   Aesthetic: Refined Reverence | Navy · Gold · Ivory
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Cinzel:wght@400;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2e45;
  --navy-light: #243b55;
  --gold:       #c9a84c;
  --gold-light: #e8c96e;
  --gold-pale:  #f5e7bb;
  --ivory:      #faf6ee;
  --ivory-dark: #f0e8d6;
  --crimson:    #7a1f2e;
  --text-dark:  #1a1a2e;
  --text-mid:   #3d4459;
  --text-light: #b0b8c8;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-cinzel:  'Cinzel', 'Times New Roman', serif;
  --ff-body:    'EB Garamond', Georgia, serif;

  --transition: 0.3s ease;
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 8px 32px rgba(13, 27, 42, 0.18);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--ivory);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Ornamental Divider ── */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 320px;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.ornament-symbol {
  font-size: 1.2rem;
  color: var(--gold);
  font-family: var(--ff-cinzel);
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

/* Background image layer — swap src in each page's <style> block */
.header-bg {
  position: absolute;
  inset: 0;
  background-image: var(--header-bg-image, url('../images/header-bg.jpg'));
  background-size: cover;
  background-position: center top;
  opacity: 0.85;
  transition: opacity 0.5s;
}
.site-header:hover .header-bg { opacity: 1; }

/* Gradient overlay */
.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,27,42,0.25) 0%,
    rgba(13,27,42,0.55) 100%
  );
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 1rem;
}

/* Top bar: logo + social icons */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.25);
  margin-bottom: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Cross SVG placeholder inside circle */
.logo-icon svg { width: 28px; height: 28px; fill: var(--gold); }

.logo-text-wrap { display: flex; flex-direction: column; }

.logo-name {
  font-family: var(--ff-cinzel);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.logo-tagline {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

/* Social icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── Navigation ── */
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
}

.main-nav a {
  font-family: var(--ff-cinzel);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  transition: all var(--transition);
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ── Hero text inside header ── */
.header-hero {
  text-align: center;
  padding: 2.5rem 0 2rem;
}

.header-hero .page-subtitle {
  font-family: var(--ff-cinzel);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.header-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-hero .hero-verse {
  font-style: italic;
  color: var(--gold-pale);
  font-size: 1.25rem;
  margin-top: 0.75rem;
}

/* Mobile hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  cursor: pointer;
  padding: 0.4rem 0.75rem;
  font-size: 1.2rem;
  border-radius: 3px;
}

/* ================================================================
   MAIN LAYOUT
   ================================================================ */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

/* ── Section headings ── */
.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
}

.section-heading.gold { color: var(--gold); }

.section-label {
  font-family: var(--ff-cinzel);
  font-size: 1.00rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Cards ── */
.card {
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--gold);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13,27,42,0.22);
}
.card-body { padding: 1.5rem; }
.card-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-style: italic;
}
.card-meta {
  font-family: var(--ff-cinzel);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.card-text {
  font-size: 1.25rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--ff-cinzel);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── Pull quote ── */
.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  background: linear-gradient(135deg, var(--ivory-dark), var(--ivory));
  margin: 2rem 0;
  position: relative;
}
/*
.pull-quote::before {
  <!-- content: '\201C'; -->
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 1rem;
  left: 0.75rem;
  line-height: 1; 
*/
  
}
.pull-quote p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy-mid);
  line-height: 1.6;
}
.pull-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-family: var(--ff-cinzel);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Prose content ── */
.prose p {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--text-mid);
}
.prose p:last-child { margin-bottom: 0; }

.prose ul {
  margin: 1rem 0 1.25rem 1.5rem;
  color: var(--text-mid);
}
.prose li { margin-bottom: 0.4rem; }

/* ── Video embed ── */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  background: var(--navy);
}
.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-pale);
  font-family: var(--ff-cinzel);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  gap: 0.75rem;
}
.video-placeholder svg { width: 56px; height: 56px; fill: var(--gold); opacity: 0.6; }

/* ── Grid layouts ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

/* ── Highlight band ── */
.band {
  background: var(--navy);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}
.band .section-heading { color: #fff; }

/* ── Scripture badge ── */
.scripture-badge {
  display: inline-block;
  background: var(--ivory-dark);
  border: 1px solid var(--gold);
  border-radius: 3px;
  padding: 0.8rem 1.25rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.5;
}
.scripture-badge cite {
  display: block;
  margin-top: 0.3rem;
  font-style: normal;
  font-family: var(--ff-cinzel);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-brand .logo-name { font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-top: 0.75rem;
}

.footer-col h4 {
  font-family: var(--ff-cinzel);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(176,184,200,0.6);
}

/* ================================================================
   HOME PAGE SPECIFICS
   ================================================================ */
.mission-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.mission-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.mission-text p { color: var(--text-mid); margin-bottom: 1rem; }

.ministry-grid { margin-top: 3rem; }
.ministry-grid h2 {
  font-family: var(--ff-cinzel);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.portrait-wrap {
  text-align: center;
}
.portrait-frame {
  width: 240px;
  height: 300px;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--ff-cinzel);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1rem;
  line-height: 1.6;
  overflow: hidden;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }

.crusades-list {
  list-style: none;
  margin: 1rem 0;
}
.crusades-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 1.25rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--ivory-dark);
}
.crusades-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.75rem;
}

/* ================================================================
   FILMS PAGE
   ================================================================ */
.films-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.film-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.film-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,27,42,0.22); }

.film-poster {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--ff-cinzel);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  overflow: hidden;
}
.film-poster img { width: 100%; height: 100%; object-fit: cover; }

.film-info {
  padding: 1.25rem;
  border-top: 2px solid var(--gold);
}
.film-info h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.film-info .film-year {
  font-family: var(--ff-cinzel);
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.film-info p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* ================================================================
   CONCERTS PAGE
   ================================================================ */
.concert-event {
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 3rem;
}

.concert-header-band {
  background: var(--navy);
  padding: 1.00rem 2rem;
  border-left: 5px solid var(--gold);
}
.concert-header-band h2 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 0.25rem;
}
.concert-header-band .concert-dates {
  font-family: var(--ff-cinzel);
  font-size: 1.25rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.concert-body { padding: 2rem; }

.lineup-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.lineup-table th {
  font-family: var(--ff-cinzel);
  font-size: 1.00rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 2px solid var(--ivory-dark);
}
.lineup-table td {
  padding: 0.6rem 0.75rem;
  font-size: 1.25rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--ivory-dark);
}
.lineup-table tr:last-child td { border-bottom: none; }
.lineup-table tr:hover td { background: var(--ivory); }

.artist-list {
  list-style: none;
  column-count: 2;
  gap: 1rem;
  margin-top: 1rem;
}
.artist-list li {
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
  font-size: 1.25rem;
  color: var(--text-mid);
}
.artist-list li::before {
  content: '♪';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.25rem;
  top: 0.55rem;
}

/* ================================================================
   THE GUARANTEE PAGE
   ================================================================ */
.guarantee-body {
  max-width: 780px;
  margin: 0 auto;
}

.guarantee-body .prose p {
  font-size: 1.25rem;
  line-height: 1.85;
  color: #3d4459;
}

.guarantee-body .pull-quote {
  margin: 2.5rem 0;
}

/* ================================================================
   UTILITIES & SPACING
   ================================================================ */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.italic { font-style: italic; }
.caps {
  font-family: var(--ff-cinzel);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .grid-2, .grid-3, .mission-section, .about-header,
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .artist-list { column-count: 1; }
  .about-header { grid-template-columns: 1fr; }
  .portrait-frame { margin: 0 auto; }
}

@media (max-width: 640px) {
  .header-inner { padding: 1rem; }

  .header-top { flex-wrap: wrap; }

  .nav-toggle { display: block; }

  .main-nav { display: none; }
  .main-nav.open { display: block; padding-bottom: 0.75rem; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: 0.6rem 0.5rem; }

  .social-icons { order: 3; width: 100%; justify-content: center; }

  main { padding: 2rem 1rem 3rem; }
  .concert-body { padding: 1.25rem; }
}
