:root {
  --bg: #f5f1ed;
  --surface: #ffffff;
  --text: #2b2724;
  --muted: #6f675f;
  --accent: #be9b74;
  --accent-dark: #9f7f5d;
  --border: #e6ddd5;
  --shadow: 0 16px 40px rgba(52, 39, 28, 0.08);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(230, 221, 213, 0.8);
}

.nav-wrap {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
    background:
    linear-gradient(90deg, rgba(245, 241, 237, 0.92) 0%, rgba(245, 241, 237, 0.72) 36%, rgba(245, 241, 237, 0.1) 100%),
    url('assets/logo1.png') center/cover no-repeat;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand-subtitle {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.main-nav a {
  padding: 0.4rem 0;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover,
.social-links a:hover,
.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--text);
}

.main-nav a.active {
  border-color: var(--accent);
}

.main-nav .nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.main-nav .submenu-toggle::after {
  content: "▾";
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.75rem;
  line-height: 1;
}

.main-nav .submenu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  min-width: 12rem;
  padding: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(0.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.main-nav .has-submenu:hover .submenu,
.main-nav .has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.main-nav .submenu a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-bottom: 0;
  border-radius: 0.6rem;
  white-space: nowrap;
}

.main-nav .submenu a:hover,
.main-nav .submenu a:focus {
  background: rgba(190, 155, 116, 0.12);
  color: var(--text);
}

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

.social-links a {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--surface);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  /* z-index: 1; */
    background:
    linear-gradient(90deg, rgba(245, 241, 237, 0.92) 0%, rgba(245, 241, 237, 0.72) 36%, rgba(245, 241, 237, 0.1) 100%),
    url('assets/raised-hands-in-worship.jpg') center/cover no-repeat;
}

.hero-copy {
  max-width: 600px;
  padding: 4rem 0;
  margin: 20px;
}

.hero h1,
.welcome-copy h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
}


.hero h1 {
  font-size: clamp(3.5rem, 6vw, 5.8rem);
}

.hero-copy h2 {
	font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
}


.hero p {
  max-width: 32rem;
  font-size: 1.125rem;
  color: #544b44;
  margin-bottom: 2rem;
}

.map {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
	
	background:
		linear-gradient(90deg, rgba(245, 241, 237, 0.92) 0%, rgba(245, 241, 237, 0.72) 36%, rgba(245, 241, 237, 0.1) 100%),
		url('assets/map.jpg') center/cover no-repeat;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 0.85rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border: 1.5px solid var(--accent);
  color: var(--accent-dark);
}

.btn-outline:hover {
  background: rgba(190, 155, 116, 0.08);
}

.info-strip {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}


.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.info-card {
  display: flex;
  gap: 1rem;
  padding: 2rem;
}

.info-card:not(:last-child) {
  border-right: 1px solid var(--border);
}

.icon-circle {
  min-width: 3rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(190, 155, 116, 0.16);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.info-card h3,
.site-footer h4,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.info-card h3,
.site-footer h4 {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
}

.info-card p {
  margin: 0.25rem 0;
  color: var(--muted);
}

.info-card p span {
  float: right;
  margin-left: 1rem;
  color: var(--text);
  font-weight: 600;
}

.info-card a {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.welcome-section {
  padding: 6rem 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.welcome-image img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
  min-height: 380px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.welcome-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.welcome-copy p,
.footer-motto,
.footer-bottom,
.footer-links a {
  color: var(--muted);
}

.site-footer {
  background: #f0ebe6;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.6rem;
}

.footer-social {
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding: 1.2rem 0 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}

.footer-bottom div {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  .nav-wrap,
  .welcome-grid,
  .footer-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    padding: 1rem 0;
  }

  .main-nav,
  .social-links {
    justify-content: flex-start;
  }

  .main-nav .nav-item {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav .submenu {
    position: static;
    width: 100%;
    margin-top: 0.25rem;
    transform: none;
  }

  .main-nav .has-submenu:hover .submenu,
  .main-nav .has-submenu:focus-within .submenu {
    transform: none;
  }

  .info-card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .hero {
    min-height: 620px;
    background-position: center right;
  }
}

@media (max-width: 640px) {
  .brand-name {
    font-size: 1.55rem;
  }

  .hero {
    min-height: 560px;
  }

  .hero-copy {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .info-card,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }
}
