
:root {
  --bg: #070709;
  --bg-alt: #111118;
  --highlight: #d4af37;
  --text: #f5f5f5;
  --muted: #b5b5b5;
  --card: #181820;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--highlight);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.top-bar {
  background: #000;
  color: var(--muted);
  font-size: 0.8rem;
}

.top-bar .wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 1.5rem;
  flex-wrap: wrap;
}

.hide-mobile {
  display: none;
}

.site-header {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
}

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

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-image: url("images/steeple.jpg");
  background-size: cover;
  background-position: center;
  border: 2px solid var(--highlight);
  text-indent: -9999px;
  overflow: hidden;
}

.logo-text {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
}

.logo-text span {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--muted);
}

.nav {
  display: none;
}

.nav a {
  margin-left: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--highlight);
}

.hero {
  position: relative;
  background: radial-gradient(circle at top, #2b2b3a, #050509);
  color: var(--text);
  padding: 4rem 0 3.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/3735010/pexels-photo-3735010.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: screen;
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.25), rgba(0, 0, 0, 0.9));
}

.hero-inner {
  position: relative;
  text-align: left;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--highlight);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: 1.8rem;
  margin: 0 0 0.75rem;
}

.hero-sub {
  margin: 0 0 0.75rem;
  color: var(--muted);
  max-width: 32rem;
}

.hero-buttons {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid var(--highlight);
  cursor: pointer;
}

.btn.primary {
  background: var(--highlight);
  color: #000;
  font-weight: 600;
}

.btn.outline {
  background: transparent;
  color: var(--highlight);
}

.btn.small {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}

.hero-meta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 3rem 0;
  background: var(--bg);
}

.section.alt {
  background: var(--bg-alt);
}

.section.highlight {
  background: linear-gradient(135deg, #191921, #09090d);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 1.75rem;
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--card);
  border-radius: 0.9rem;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.small {
  font-size: 0.8rem;
  color: var(--muted);
}

.strong {
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  background: #000;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.pastor-photo {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  display: block;
  margin: 0 auto 0.9rem auto;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.6);
}

.stained-glass {
  width: 100%;
  max-height: 260px;
  border-radius: 12px;
  margin-top: 0.9rem;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.7);
  display: block;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .hero h1 {
    font-size: 2.3rem;
  }
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 700px) {
  .hide-mobile {
    display: inline;
  }
}
