
/* Faith Vanguard - Rebuilt styles.css (Design A: black header + orange hero) */

/* Global reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body.home-page,
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background-color: #050505;
  color: #f5f5f5;
}

/* Basic typography */
h1, h2, h3, h4 {
  margin-top: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #f97316; /* orange */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== HEADER / NAV ===== */

.site-header {
  position: relative;
  z-index: 20;
  background-color: #050505;
  padding: 1rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo {
  height: 56px;
  width: auto;
  display: block;
}

/* In case logo text is ever used */
.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-top {
  font-weight: 600;
}

.logo-bottom {
  font-weight: 700;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
}

.nav-links a:hover {
  color: #f97316;
}

/* CTA in nav */
.nav-cta {
  padding: 0.45rem 1.35rem;
  border-radius: 999px;
  border: 2px solid #f97316;
  color: #f97316 !important;
  font-weight: 600;
}

/* ===== HERO ===== */

.hero {
  background: radial-gradient(circle at top left, #f97316 0, #ea580c 30%, #050505 70%);
  padding: 4.5rem 5vw 4rem;
  color: #ffffff;
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: #fed7aa;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1rem;
  max-width: 46rem;
  color: #fffbeb;
}

/* Hero buttons */
.hero-buttons,
.hero .btn-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button,
.btn,
.hero a.btn-primary,
.hero a.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary,
.hero a.btn-primary {
  background-color: #f97316;
  border-color: #f97316;
  color: #111827;
}

.btn-primary:hover,
.hero a.btn-primary:hover {
  background-color: #fb923c;
  border-color: #fb923c;
}

.btn-outline,
.hero a.btn-outline {
  background-color: transparent;
  border-color: #f97316;
  color: #f97316;
}

.btn-outline:hover,
.hero a.btn-outline:hover {
  background-color: rgba(249, 115, 22, 0.1);
}

/* ===== MAIN CONTENT CARD ===== */

main {
  background-color: #f5f5f5;
  color: #111827;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  margin-top: -2rem;
  padding: 3rem 5vw 4rem;
}

section {
  max-width: 960px;
  margin: 0 auto 3rem;
}

/* Section eyebrow (e.g., "Mission", "Manifesto") */
section > .eyebrow,
section > .section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #a16207;
  margin-bottom: 0.75rem;
}

/* Fallback for headings like "Mission" placed as <h2> or plain text */
section > h2:first-child {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #a16207;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* Section title (e.g., "What is Faith Vanguard?") */
section h3,
section h1,
section h2 + h3 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
}

/* Lists inside manifesto / statement of faith */
section ol, section ul {
  padding-left: 1.2rem;
}

section li + li {
  margin-top: 0.25rem;
}

/* ===== FOOTER (if present) ===== */

.site-footer {
  padding: 2.5rem 5vw 2rem;
  background-color: #050505;
  color: #9ca3af;
  font-size: 0.85rem;
}

.site-footer a {
  color: #e5e7eb;
}

.site-footer a:hover {
  color: #f97316;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .site-header {
    padding-inline: 1.25rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.7rem;
  }

  .nav-cta {
    padding-inline: 1rem;
  }

  .hero {
    padding-inline: 1.5rem;
  }

  main {
    padding-inline: 1.5rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-links {
    flex-wrap: wrap;
    row-gap: 0.5rem;
    column-gap: 1.25rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-buttons,
  .hero .btn-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn,
  .button,
  .hero a.btn-primary,
  .hero a.btn-outline {
    width: 100%;
    justify-content: center;
  }

  main {
    margin-top: -1.5rem;
    padding-top: 2.5rem;
  }
}
/* ===== Statement of Faith dark section ===== */
section#statement-of-faith {
  background-color: #000000; /* black background */
  color: #ffffff;            /* white text */
  padding: 3rem 1.5rem;
}

/* Make links orange inside the dark section */
section#statement-of-faith a {
  color: #f97316;
}

/* Fix headings for visibility */
section#statement-of-faith h2,
section#statement-of-faith h3,
section#statement-of-faith h4 {
  color: #ffffff;
}
/* =========================================
   CONTACT FORM — Faith Vanguard Custom Style
   ========================================= */

#contact {
  padding: 4rem 1.5rem;
}

#contact h2, 
#contact h3 {
  color: #111827;
  margin-bottom: 1rem;
}

/* Form Container */
.contact-form,
form {
  max-width: 720px;
  margin: 2rem auto;
}

/* Labels */
form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

/* INPUT + TEXTAREA STYLING */
form input,
form textarea,
form select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 999px;  /* pill shape */
  font-size: 1rem;
  transition: all 0.2s ease;
  margin-bottom: 1rem;
  font-family: inherit;
}

form textarea {
  border-radius: 16px;
  min-height: 150px;
}

/* INPUT FOCUS */
form input:focus,
form textarea:focus {
  background: #ffffff;
  border-color: #f97316;
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.4);
  outline: none;
}

/* TWO-COLUMN ROWS (Name + Email) */
.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1;
  min-width: 200px;
}

/* SUBMIT BUTTON */
form button,
input[type="submit"] {
  background: #f97316;
  color: #ffffff;
  border: none;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

form button:hover,
input[type="submit"]:hover {
  background: #ea580c; /* slightly darker hover */
}

/* SPAM CHECK FIELD */
form input[name="spam_check"],
form input[name="botcheck"] {
  display: none !important;
}

/* SMALL TEXT UNDER FORM */
#contact p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
/* ============================
   Tighter Contact Section Style
   ============================ */

#contact {
  padding: 2rem 1.5rem !important;  /* was 4rem */
  max-width: 850px;
  margin: 0 auto;
}

#contact h2,
#contact h3 {
  margin-bottom: 0.5rem !important;
}

#contact p {
  margin-bottom: 0.75rem !important;
}

/* Form spacing tightened */
.contact-form,
#contact form {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

#contact form input,
#contact form textarea {
  margin-bottom: 0.65rem !important;
  padding: 0.65rem 1rem !important;  /* slightly smaller */
}

/* Form rows closer together */
.form-row {
  gap: 0.75rem !important;
}

/* Make the "Send Message" button smaller */
#contact button,
#contact input[type="submit"] {
  padding: 0.75rem 1.5rem !important;
  font-size: 0.9rem !important;
  border-radius: 25px;
}
/* ====================================
   EXTRA TIGHT CONTACT SECTION SPACING
   ==================================== */

#contact {
  padding: 1.25rem 1rem !important;   /* was 4rem → then 2rem → now 1.25rem */
  max-width: 750px;
  margin: 0 auto;
}

#contact h2,
#contact h3 {
  margin-bottom: 0.35rem !important;
}

#contact p {
  margin-bottom: 0.5rem !important;
  line-height: 1.45 !important;
}

/* Form container smaller */
.contact-form,
#contact form {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

/* Inputs tighter */
#contact form input,
#contact form textarea {
  margin-bottom: 0.5rem !important;
  padding: 0.55rem 0.9rem !important;    /* shorter + narrower */
  font-size: 0.9rem !important;
}

/* Tighter row spacing */
.form-row {
  gap: 0.5rem !important;
}

/* Smaller button */
#contact button,
#contact input[type="submit"] {
  padding: 0.6rem 1.25rem !important;
  font-size: 0.85rem !important;
  border-radius: 22px !important;
  letter-spacing: 0.3px !important;
}
/* Even tighter contact section -------------------- */

#contact {
  padding: 1.5rem 1.5rem 2rem !important;  /* less top/bottom space */
  max-width: 720px;
  margin: 0 auto 2rem;
}

#contact h2,
#contact h3 {
  margin-bottom: 0.4rem !important;
}

#contact p {
  margin-bottom: 0.5rem !important;
}

/* Form spacing */
#contact form {
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}

#contact form input,
#contact form textarea {
  padding: 0.55rem 0.9rem !important;   /* shorter fields */
  margin-bottom: 0.5rem !important;
}

/* Row spacing */
#contact .form-row {
  gap: 0.5rem !important;
}

/* Button slightly smaller and closer */
#contact button,
#contact input[type="submit"] {
  padding: 0.65rem 1.4rem !important;
  font-size: 0.9rem !important;
  margin-top: 0.6rem !important;
}
/* FINAL tighten for Contact Section --------------------- */

#contact {
  padding: 1rem 1.5rem 1.5rem !important;
  max-width: 700px;
  margin: 0 auto;
}

/* Reduce spacing between text paragraphs */
#contact p {
  margin-bottom: 0.4rem !important;
}

/* Smaller labels */
#contact label {
  margin-bottom: 0.25rem !important;
  font-size: 0.85rem !important;
}

/* Input + Textarea: shorter height, smaller padding */
#contact input,
#contact textarea {
  padding: 0.45rem 0.9rem !important;
  margin-bottom: 0.4rem !important;
  border-radius: 20px !important;
  font-size: 0.9rem !important;
}

/* Textarea tighter */
#contact textarea {
  min-height: 110px !important;
  padding-top: 0.6rem !important;
}

/* Two-column row tightened */
#contact .form-row {
  gap: 0.4rem !important;
}

/* Button smaller and closer */
#contact button,
#contact input[type="submit"] {
  padding: 0.55rem 1.25rem !important;
  font-size: 0.85rem !important;
  margin-top: 0.4rem !important;
  border-radius: 25px !important;
}

/* Reduce spacing above form */
#contact form {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}
.fv-section {
  padding: 4rem 1.5rem;
}

.fv-invite {
  background-color: #f5f5f5; /* or your dark background */
  color: #0b0b0f;
}

.fv-container {
  max-width: 800px;
  margin: 0 auto;
}

.fv-eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.fv-tagline {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 1.75rem;
  opacity: 0.9;
}

.fv-heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.fv-body {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.fv-body strong {
  font-weight: 700;
}

.fv-emphasis {
  margin-top: 1.5rem;
}

.fv-email a {
  color: inherit;
  text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .fv-section {
    padding: 3rem 1.25rem;
  }

  .fv-heading {
    font-size: 1.4rem;
  }

  .fv-body {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}