/* 10X Church — Custom Styles */
/* Framework: Bulma CSS + custom overrides */
/* Design: Warm navy/gold faith community theme */

:root {
  --navy: #1a3a5c;
  --navy-dark: #0e253d;
  --navy-light: #234e7a;
  --gold: #c9973a;
  --gold-light: #e8b860;
  --gold-pale: #fdf4e3;
  --warm-white: #fefcf8;
  --cream: #f8f4ed;
  --text-dark: #1c1c1c;
  --text-medium: #4a4a4a;
  --text-light: #6b6b6b;
  --border: #ddd4c0;
  --shadow-sm: 0 2px 8px rgba(26,58,92,0.08);
  --shadow-md: 0 4px 20px rgba(26,58,92,0.12);
  --shadow-lg: 0 8px 32px rgba(26,58,92,0.16);
  --radius: 8px;
  --radius-lg: 16px;
}

/* Base */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--text-dark);
  background-color: var(--warm-white);
  line-height: 1.75;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy-dark);
  line-height: 1.3;
}

.title, .subtitle {
  font-family: 'Playfair Display', Georgia, serif;
}

p {
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}

strong {
  color: var(--navy);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* Navigation */
.navbar {
  background: var(--navy-dark) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  padding: 0.25rem 0;
}

.navbar-brand .navbar-item {
  padding: 0.75rem 1rem;
}

.site-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light) !important;
  letter-spacing: 0.02em;
}

.site-logo-sub {
  display: block;
  font-family: 'Lora', serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(232,184,96,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.navbar-item, .navbar-link {
  color: rgba(255,255,255,0.85) !important;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}

.navbar-item:hover, .navbar-link:hover {
  color: var(--gold-light) !important;
  background: transparent !important;
}

.navbar-item.is-active {
  color: var(--gold-light) !important;
}

.navbar-burger span {
  background-color: rgba(255,255,255,0.85) !important;
}

.navbar-menu {
  background: var(--navy-dark) !important;
}

@media screen and (max-width: 1023px) {
  .navbar-menu {
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
}

/* Hero */
.hero-faith {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #2a5a8c 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-faith::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('/images/hero-home.jpg') center/cover no-repeat;
  opacity: 0.25;
}

.hero-faith .hero-body {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
}

.hero-faith .title {
  color: white !important;
  font-size: 3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-faith .subtitle {
  color: rgba(255,255,255,0.9) !important;
  font-size: 1.2rem;
  font-family: 'Lora', serif;
}

@media (max-width: 768px) {
  .hero-faith .title {
    font-size: 2rem;
  }
}

.hero-gold-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  padding: 3rem 1.5rem;
  color: white;
  text-align: center;
}

.page-hero .title {
  color: white !important;
  font-size: 2.5rem;
}

.page-hero .subtitle {
  color: rgba(255,255,255,0.85) !important;
}

/* Section styles */
.section-cream {
  background-color: var(--cream);
}

.section-white {
  background-color: var(--warm-white);
}

/* Cards */
.faith-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.faith-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.faith-card .card-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.faith-card .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

/* Pillar boxes */
.pillar-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--gold);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold-light);
  font-size: 1.5rem;
}

/* Verse block */
.verse-block {
  background: var(--navy-dark);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.verse-block::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: rgba(201,151,58,0.15);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.verse-block blockquote {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  border-left: none;
  padding: 0;
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 1;
}

.verse-ref {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Content area */
.content-body {
  max-width: 800px;
  margin: 0 auto;
}

.content-body h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--gold-pale);
  color: var(--navy-dark);
}

.content-body h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.content-body ul, .content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.content-body li {
  margin-bottom: 0.4rem;
}

.content-body a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.content-body a:hover {
  color: var(--gold);
}

.content-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
}

/* Pull quote */
.pull-quote {
  border-left: 4px solid var(--gold);
  background: var(--gold-pale);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy-dark);
}

/* Buttons */
.btn-primary {
  background: var(--navy);
  color: white !important;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  text-decoration: none !important;
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  color: white !important;
}

.btn-gold {
  background: var(--gold);
  color: white !important;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  text-decoration: none !important;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: white !important;
}

/* Article list */
.article-link-list {
  list-style: none;
  padding: 0;
}

.article-link-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.article-link-list li:last-child {
  border-bottom: none;
}

.article-link-list a {
  color: var(--navy);
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  text-decoration: none;
  transition: color 0.2s;
}

.article-link-list a:hover {
  color: var(--gold);
}

.article-link-list a::before {
  content: '→ ';
  color: var(--gold);
  font-family: sans-serif;
}

/* Contact form */
.contact-form label {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy);
  display: block;
  margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 1.25rem;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(201,151,58,0.3);
  padding-bottom: 0.5rem;
}

.footer-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  font-family: 'Lato', sans-serif;
}

/* Breadcrumb */
.breadcrumb-wrap {
  background: var(--cream);
  padding: 0.6rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb-wrap a {
  color: var(--navy);
  text-decoration: none;
}

.breadcrumb-wrap a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  margin: 0 0.4rem;
  color: var(--border);
}

/* Page intro */
.page-intro {
  font-size: 1.15rem;
  color: var(--text-medium);
  font-style: italic;
  font-family: 'Lora', serif;
  border-left: 4px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

/* 404 */
.error-404 {
  text-align: center;
  padding: 5rem 2rem;
}

.error-404 .error-code {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--navy);
  line-height: 1;
}

.error-404 .error-verse {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 500px;
  margin: 1.5rem auto;
}

/* Tags / chips */
.topic-chip {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 0.2rem 0.8rem;
  font-size: 0.8rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0.25rem 0.2rem;
  text-decoration: none;
  transition: background 0.2s;
}

.topic-chip:hover {
  background: var(--gold);
  color: white;
}

/* Section divider */
.gold-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2.5rem auto;
  max-width: 300px;
}

/* Responsive images */
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-wrap img {
  width: 100%;
  display: block;
  border-radius: 0;
}
