
/* === Mobile Enhancements for Eastern Apologetics === */
/* Base ergonomic improvements (apply at all sizes) */
.cta {
  min-height: 44px;
  line-height: 44px;
  padding: 0 20px;
}

/* Typographic scaling for hero subhead */
.hero .sub {
  font-size: clamp(18px, 4.5vw, 25px);
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .cta:hover { filter: none; }
}

/* --- Responsive layout adjustments --- */
@media (max-width: 680px) {
  .wrap { padding: 0 16px; }

  header .inner { flex-wrap: wrap; }

  /* Stack CTAs in Journey section for better tap targets */
  .journey .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  /* Map height tuned for small screens */
  .map-embed { height: 240px; }
}

/* --- Optional: Mobile nav toggle styles (active when markup is present) --- */
.nav-toggle {
  display: none;
}

@media (max-width: 680px) {
  .nav-toggle {
    display: inline-block;
    background: transparent;
    border: 2px solid rgba(255,255,255,.85);
    color: #fff;
    border-radius: 10px;
    padding: 6px 10px;
    font-weight: 700;
    margin-left: auto;
  }
  header nav {
    display: none;
    position: absolute;
    right: 12px;
    top: 60px;
    background: rgba(20,48,57,.95);
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0,0,0,.25);
  }
  header nav a { display: block; margin: 8px 0; }
  body.nav-open header nav { display: block; }
}

/* --- Start Here section visuals --- */
.start-here {
  text-align: center;
  background: rgba(255,255,255,0.10);
  padding: 56px 0;
}
.start-title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 44px);
  margin: 0 0 8px;
}
.start-sub {
  font-size: 1.1rem;
  color: #e0f2f1;
  font-weight: 600;
  margin: 0 0 18px;
}
