/* =============== GLOBAL RESET =============== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050408;
  color: #f9f9fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 5rem 1.5rem 3rem;
  background:
    radial-gradient(circle at top, rgba(255, 140, 64, 0.5) 0, transparent 45%),
    radial-gradient(circle at bottom, rgba(255, 61, 0, 0.35) 0, transparent 55%),
    #050408;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.06) 0, rgba(0,0,0,0.9) 60%);
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero .brand {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero .subtitle {
  max-width: 650px;
  margin: 0.5rem auto 1.75rem;
  font-size: 0.98rem;
  opacity: 0.92;
}

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

/* =============== NAVBAR =============== */

.top-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 4, 8, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.nav-logo {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 153, 51, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at top, #ffb857, #ff6b28);
  color: #211006;
  box-shadow: 0 0 18px rgba(255, 120, 40, 0.5);
}

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

.nav-links a {
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

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

/* =============== SECTIONS =============== */

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #0c0b13;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.section p {
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* =============== LAYOUT / GRID =============== */

.two-column {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .two-column {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  }
}

/* =============== LISTS =============== */

.list {
  margin-top: 1rem;
  padding-left: 1.1rem;
}

.list li {
  margin-bottom: 0.35rem;
}

/* =============== CALLOUT / SCRIPTURE BOX =============== */

.callout {
  border-radius: 1rem;
  border: 1px solid rgba(255, 153, 51, 0.6);
  background:
    radial-gradient(circle at top, rgba(255, 153, 51, 0.22), transparent 60%),
    #09070f;
  padding: 1.5rem 1.25rem;
}

.scripture-ref {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.35rem;
}

.scripture-text {
  font-size: 0.96rem;
  font-style: italic;
}

/* =============== CARDS =============== */

.card {
  border-radius: 1rem;
  background: radial-gradient(circle at top left, #171622, #09070f);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.subtitle-small {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

/* =============== MEDIA SECTION =============== */

.media-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.media-card {
  border-radius: 1rem;
  background: #111019;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 1.25rem;
}

.media-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.placeholder {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* =============== SOCIAL EMBED BLOCKS (YouTube & Facebook) =============== */

.social-embed {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, #1a141f, #0a0710);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.social-embed h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.social-embed p {
  opacity: 0.86;
  margin-bottom: 1rem;
}

/* =============== FORMS =============== */

.form {
  display: grid;
  gap: 0.75rem;
}

.form label {
  font-size: 0.86rem;
  opacity: 0.95;
  display: grid;
  gap: 0.35rem;
}

.form input,
.form textarea {
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.55rem 0.7rem;
  background: #050408;
  color: #f9f9fb;
  font: inherit;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: rgba(255, 153, 51, 0.95);
  box-shadow: 0 0 0 1px rgba(255, 153, 51, 0.4);
}

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

.form-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-grid .full-width {
    grid-column: 1 / -1;
  }
}

/* =============== BUTTONS =============== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.17s ease,
    box-shadow 0.17s ease,
    background 0.17s ease,
    border-color 0.17s ease;
}

.btn.primary {
  background: radial-gradient(circle at top left, #ffb85a, #ff7a2f);
  color: #1c0b05;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.65);
}

.btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #f9f9fb;
}

.btn.secondary:hover {
  border-color: rgba(255, 153, 51, 0.95);
  background: rgba(255, 255, 255, 0.04);
}

.btn.full-width {
  width: 100%;
}

/* =============== FOOTER =============== */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #050408;
  padding: 1.5rem 0 2rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.footer-tagline {
  font-style: italic;
  opacity: 0.8;
}

@media (min-width: 700px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
