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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #f9fafb;
  background-color: #020617;
  line-height: 1.6;
}

/* HERO */

.hero {
  position: relative;
  min-height: 75vh;
  background-image: url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(148, 163, 253, 0.55), transparent 50%),
              linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
  z-index: 0;
}

/* NAV */

.top-nav {
  position: relative;
  z-index: 10;
  padding: 1.25rem 1.5rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(249, 250, 251, 0.7);
}

.nav-title {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #fbbf24, #f97316);
  transition: width 0.2s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HERO CONTENT */

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 5.5rem auto 4rem auto;
  padding: 0 1.5rem;
  text-align: left;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #e5e7eb;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #f9fafb;
}

.hero-subtitle {
  max-width: 520px;
  margin: 0 0 2rem 0;
  font-size: 1rem;
  font-weight: 300;
  color: #e5e7eb;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* BUTTONS */

.btn {
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(to right, #fbbf24, #f97316);
  color: #111827;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.btn.outline {
  background-color: transparent;
  color: #f9fafb;
  border-color: rgba(249, 250, 251, 0.9);
}

.btn.outline:hover {
  background-color: rgba(15, 23, 42, 0.35);
}

/* GENERIC SECTIONS */

.section {
  padding: 4rem 1.5rem;
  background: #020617;
}

.section-alt {
  background: #020617;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section h2 {
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #f9fafb;
}

.section h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #f9fafb;
}

.section p {
  margin-bottom: 1rem;
  color: #cbd5f5;
  font-size: 0.98rem;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  color: #e5e7eb;
}

/* LISTS */

.info-list {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.info-list li {
  margin-bottom: 0.5rem;
  color: #cbd5f5;
}

/* BELIEFS BRIEF ON HOME */

.beliefs-brief {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
}

/* CARDS / GRID */

.card {
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.4), rgba(15, 23, 42, 0.98));
  border-radius: 0.9rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 253, 0.3);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

/* TEAM */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.team-card {
  text-align: left;
}

.team-role {
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

/* VISIT / MINISTRY FOCUS */

.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

/* DONATE */

.donate-section {
  background: radial-gradient(circle at top right, rgba(248, 250, 252, 0.08), transparent 50%),
              #020617;
}

.donate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.donate-subtitle {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.4rem;
  color: #f9fafb;
}

/* BELIEFS PAGE */

.beliefs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.belief-item {
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.45), rgba(15, 23, 42, 0.95));
  border-radius: 0.9rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 253, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
}

.belief-item h3 {
  color: #f9fafb;
}

.belief-item p {
  color: #e5e7f5;
}

.belief-item .refs {
  font-size: 0.85rem;
  margin-top: 0.35rem;
  color: #a5b4fc;
}

/* CONTACT FORM */

.contact-form {
  margin-top: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.form-group input,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 0.5rem;
  border: 1px solid #4b5563;
  font: inherit;
  resize: vertical;
  background-color: #020617;
  color: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 1px #fbbf24;
}

/* FOOTER */

.footer {
  padding: 1.5rem 1.5rem 2rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  background-color: #020617;
  color: #9ca3af;
  border-top: 1px solid rgba(148, 163, 253, 0.2);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content {
    margin-top: 4.5rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section {
    padding: 3.2rem 1.25rem;
  }
}
