:root {
  --accent: #b59b63;
  --light: #f8f6f2;
  --text: #1c1c1c;
  --muted: #666;
  --border: #ddd;
}

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

body {
  font-family: Georgia, serif;
  color: var(--text);
  background: white;
  line-height: 1.6;
}

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

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ── Utility / Top Header ── */
.utility-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  font-size: 0.9rem;
}

.top-header {
  background: white;
  color: black;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border);
}

.utility-right {
  display: flex;
  gap: 1rem;
}

.utility-right a {
  color: black;
  text-decoration: none;
}

.logo-wrap img {
  height: 200px;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  margin-bottom: 15px;
}

/* ── Nav ── */
nav {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  background: white;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hamburger {
  display: none;
  cursor: pointer;
}

/* ── Mobile ── */
@media screen and (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 4%;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding-bottom: 0.5rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    display: block;
    padding: 0.6rem 0;
    border-top: 1px solid var(--border);
  }
}

/* ── Hero ── */
.hero-banner {
  position: relative;
  min-height: 80vh;
}

.hero-image {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: black;
  max-width: 760px;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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

.news-events-section2 {
  padding: 1rem 0;
  justify-content: left;
}
.two-column-layout2 {
  display: block;
  grid-template-columns: 2fr 2fr;
  gap: 3rem;
}
.quick-card {
  background: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.quick-card-content {
  padding: 1.5rem;
}
.news-events-section {
  padding: 5rem 0;
}
.news-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.news-item2 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
.news-item3 {
  margin-bottom: 2rem;
  padding-bottom: 3rem;
}
.event-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.event-card2 {
  display: block;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
 }
 .event-card3 {
  display: inline-flex;
  gap: 1rem;
  padding: 1rem;
  border: 0px solid var(--border);
}
 clergy-bio {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.clergy-bio .bio-text { 
	flex: 1; 
	}
.clergy-bio .bio-image { 
flex-shrink: 0; 
}
.staff-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.25rem 0;
}
.staff-list li {
  padding: 0.4rem 0;
  border-bottom: 0px solid var(--border);
}
.staff-list li:last-child {
  border-bottom: none;
}






