/* ============================================
   THE BIBLE, LIKE TOTALLY — SHARED STYLES
   ============================================ */

:root {
  --navy:       #1B2A4A;
  --teal:       #0E9B8A;
  --purple:     #5B2D8E;
  --amber:      #C9921A;
  --white:      #FFFFFF;
  --off-white:  #F7F4EF;
  --light-teal: #E8F7F5;
  --light-purple:#F0EAF8;
  --light-amber: #FDF3E0;
  --text-body:  #2C3E50;
  --text-muted: #6B7A8D;
  --navy-dark:  #111B2E;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.announcement-bar a {
  color: var(--amber);
  text-decoration: none;
  margin-left: 8px;
  font-weight: 800;
}
.announcement-bar a:hover { text-decoration: underline; }

/* ── NAVIGATION ── */
nav {
  background: var(--white);
  padding: 14px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(27,42,74,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(27,42,74,0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-logo-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  display: block;
}
.nav-logo-text .brand-tagline {
  font-size: 10px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--navy) !important;
  transform: translateY(-1px);
  color: var(--white) !important;
}
.nav-cta::after { display: none !important; }

/* ── SHARED SECTION STYLES ── */
section { padding: 90px 60px; }

.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title em { color: var(--teal); font-style: italic; }
.section-title .purple { color: var(--purple); }
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(14,155,138,0.3);
  font-family: 'Nunito', sans-serif;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #0BC4AE;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(14,155,138,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--navy);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 60px 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 260px;
  color: rgba(255,255,255,0.55);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--teal);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 640px;
}
.footer-copy strong { color: rgba(255,255,255,0.5); }
.footer-links {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.footer-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-links a:hover { color: var(--teal); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--off-white);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  border-bottom: 1px solid rgba(27,42,74,0.06);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.65;
}
.trust-item .icon { font-size: 17px; }

/* ── VERSE HIGHLIGHT ── */
.verse-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1A3A6A 50%, var(--purple) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 90px 60px;
}
.verse-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.verse-section .inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.verse-section .big-q {
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  color: var(--teal);
  opacity: 0.25;
  line-height: 0.5;
  margin-bottom: 28px;
  display: block;
}
.verse-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.8vw, 30px);
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 24px;
}
.verse-section .cite {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  color: var(--amber);
  display: block;
  margin-bottom: 44px;
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27,42,74,0.1);
}
.review-card.teal-bg { background: var(--light-teal); }
.review-card.purple-bg { background: var(--light-purple); }
.review-card.amber-bg { background: var(--light-amber); }
.review-stars { color: var(--amber); font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author { font-size: 12px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }
.review-location { font-size: 11px; color: var(--text-muted); font-weight: 600; }

/* ── EMAIL SIGNUP ── */
.signup-section {
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.signup-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,155,138,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.signup-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(91,45,142,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.signup-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.signup-section .section-label { color: var(--teal); }
.signup-section .section-title { color: var(--white); }
.signup-section .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto 40px; }
.signup-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 16px;
}
.signup-form input {
  flex: 1;
  padding: 15px 22px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.signup-form input::placeholder { color: rgba(255,255,255,0.4); }
.signup-form input:focus { border-color: var(--teal); }
.signup-form button {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 15px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.signup-form button:hover { background: #0BC4AE; transform: translateY(-1px); }
.signup-note { font-size: 12px; color: rgba(255,255,255,0.35); font-style: italic; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2A3F6F 60%, #1A4A6B 100%);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,155,138,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(91,45,142,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero .section-label { color: rgba(14,155,138,0.9); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--teal); font-style: italic; }
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}
.page-hero .tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  color: var(--amber);
  display: block;
  margin-bottom: 16px;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  nav .nav-links { display: none; }
  section { padding: 60px 24px; }
  .trust-bar { padding: 16px 24px; gap: 20px; }
  footer { padding: 48px 24px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 60px 24px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .signup-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}
