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

body {
  font-family: 'El Messiri', sans-serif;
  background-color: #111;
  color: #fff;
  min-height: 100vh;
  text-align: center;
}

/* Pull Quotes */
.pull-quote {
  color: #E8C547; /* Gold */
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem; /* ⬅️ increased from default (~1rem) */
  line-height: 1.8;
  padding: 1.75rem;
  border-left: 4px solid #E8C547;
  margin: 2.25rem 0;
}


/* Headings - default purple */
.blog-post h2,
.blog-post h3 {
  color: #8200d3; /* Purple */
}

/* Optional alternate blue class */
.alt-heading {
  color: #1F51FF; /* Blue */
}


/* DEBUG OVERRIDE */

/* Header & Navigation */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 10px;
  margin-top: 10px;
  margin-bottom: 1px;
}

.site-logo {
  width: 220px; /* was 180px */
  max-width: 95%;
  height: auto;
  margin-bottom: 10px;
}


nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

nav a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 2px #000;
  font-size: 1.1rem;
}

nav a:hover {
  color: #FFFACD;
}


/* Title */
.branded-title {
  font-size: 2.75rem;
  font-weight: 700;
  background: linear-gradient(to top, #8B0000 10%, #DC143C 50%, #FFD700 95%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
  font-family: 'El Messiri', sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.title-combo {
  text-align: center;
  font-size: 2rem;
  font-style: italic;
  margin: 1.5rem auto 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 95%;

}

.branded-title-inline {
  background: linear-gradient(to top, #8B0000 10%, #DC143C 50%, #FFD700 95%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.purple-sub {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(to bottom,
    #FFD700 10%,
    #8200D3 40%,
    #6F00B3 60%,
    #FFD700 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.blog-post {
  padding-bottom: 10px !important;
}








.hero-sub {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.blue-sub {
  color: #1F51FF;
}

.no-truth-gradient {
  font-family: 'El Messiri', sans-serif;
  font-size: 1.0em;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(to bottom,
    #FFD700 10%,
    #6F00B3 35%,
    #6F00B3 65%,
    #FFD700 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  margin: 0.5em 0;
}






.hero-subtitle {
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(to bottom, #FFD700 10%, #6F00B3 35%, #6F00B3 65%, #FFD700 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  margin-bottom: 1em;
}

.hero-subtitle-alt {
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(to right, #8200D3, #C71585);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.5rem;
}



/* Tagline */
.tagline {
  font-size: 1.15rem;
  color: #FFFACD; /* soft gold */
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px #000;
  text-align: center;
}



.section-line {
  border: none;
  height: 2px;
  background-color: #E8C547;
  margin: 30px auto;
  width: 60%;
}

/* Signup Form */
.sib-form {
  text-align: center;
  margin: 0 auto 2em auto;
  max-width: 600px;
}

#sib-form input,
#sib-form button {
  font-family: 'El Messiri', sans-serif;
  text-align: center;
  font-size: 1.1rem;
  border-radius: 12px;
  border: none;
  padding: 0.7em 1.4em;
  width: 80%;
  max-width: 380px;
  margin: 0.5em auto;
  display: block;
  transition: box-shadow 0.3s ease;
}

.welcome-text {
  color: #FFFACD;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px #000;
  text-align: center;
  padding: 1.2rem;
  background: radial-gradient;
  border-radius: 8px;
}




#sib-form input {
  background-color: #1F51FF;
  color: #fff;
}

#sib-form input::placeholder {
  color: #fff;
  opacity: 1;
}

#sib-form input:focus {
  outline: none;
  box-shadow: 0 0 10px 2px #FFD700;
}

#sib-form button {
  background-color: #DC143C;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

#sib-form button:hover {
  background-color: #e0274b;
  box-shadow: 0 0 12px rgba(220, 20, 60, 0.45);
}

/* Footer */
footer {
  background-color: rgba(17, 17, 17, 0.95);
  color: #888;
  text-align: center;
  padding: 40px 20px 12px;
  font-size: 14px;
  margin-top: 60px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 12px;
}

.footer-links a {
  color: #E8C547; /* brand gold */
  text-decoration: none;
  font-weight: 500;
  text-shadow: 1px 1px 2px #000;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fffacd; /* light gold */
  text-decoration: underline;
  }

.welcome-text {
  position: relative;
  display: inline-block;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #FFFACD;
  text-shadow: 1px 1px 2px #000;
  background: linear-gradient(90deg, #FFD700, #FFFACD, #FFD700);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shimmerGold 8s ease-in-out infinite;
}

@keyframes shimmerGold {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}





/* Responsive */
@media (max-width: 480px) {
  .branded-title {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .site-logo {
    width: 140px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

/* Blog Post Styling */
.blog-post {
  max-width: 750px;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
  color: #FFFACD;
}

.blog-post h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #E8C547; /* updated brand gold */
  text-shadow: 1px 1px 4px #000;
}

.blog-post p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* For soft-gold emphasis (e.g., warnings) */
.blog-post .light-gold {
  color: #ffde80;
}

/* For obedience quote (purple) */
.blog-post .quote {
  font-style: italic;
  color: #8200d3;
  font-size: 1.25rem;
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 3px solid #FFD700;
}

/* For Scripture verses (italic, soft gold) */
.blog-post .verse {
  font-style: italic;
  color: #FFD700;
}

/* Emphasis */
.blog-post strong {
  color: #FFFACD;
}

/* Links */
.blog-post a,
.download-link {
  color: #DC143C;
  font-weight: bold;
  text-decoration: none;
}

.blog-post a:hover,
.download-link:hover {
  color: #e0274b;
  text-decoration: underline;
}
/* Footer Styling to Match Main Site */
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

.footer-wrapper {
  background-color: #111;
  padding: 60px 20px 12px;
  text-align: center;
  font-family: 'El Messiri', sans-serif;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  margin-bottom: -6px !important;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 0 6px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Hide scrollbars */
.footer-links a,
nav a {
  font-size: 18px; /* 🔧 slightly larger than before */
  font-weight: 500;
  text-decoration: none;
  background: linear-gradient(90deg, #D4AF37 0%, #fffacd 50%, #D4AF37 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  transition: text-shadow 0.3s ease;
}

.footer-links a:hover,
nav a:hover {
  text-shadow:
    0 0 5px rgba(130, 0, 211, 0.4),
    0 0 10px rgba(130, 0, 211, 0.5),
    1px 1px 2px rgba(0, 0, 0, 0.7);
}




/* Mobile */
@media only screen and (max-width: 480px) {
  .footer-links {
    padding-inline: 2px;
    gap: 4px;
    overflow-x: auto;
  }

  .shimmer-link {
    font-size: 12.5px;
  }
}

/* Laptop */
@media only screen and (min-width: 481px) and (max-width: 1000px) {
  .footer-wrapper {
    padding-top: 75px !important;
  }
}

.teaching-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 2rem;
}

.teaching-card {
  background-color: #1a1a1a;
  padding: 20px 25px;
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.teaching-card h2 a {
  font-size: 1.5rem;
  color: #E8C547;
  text-decoration: none;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 2px #000;
}

.teaching-card h2 a:hover {
  color: #fffacd;
  text-decoration: underline;
}

.teaching-card p {
  font-size: 1.05rem;
  color: #ffde80;
  margin-top: 8px;
  text-shadow: 1px 1px 2px #000;
}
@media (min-width: 900px) {
  .title-combo {
    font-size: 2.15rem;
  }

  .purple-sub {
    font-size: 1.9rem;
  }
}
