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

body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #333;
  background: #ffffff;
}

header {
  position: absolute;   /* sits on top of the hero */
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 20px;
  z-index: 10;               /* keeps it above the hero */
  /* glassmilk blur */
  background: rgba(0,0,0,.25);        /* faint tint */
  backdrop-filter: blur(8px);       /* ↑ more blur = bigger px */
  -webkit-backdrop-filter: blur(8px); /* Safari */

}

.logo {
  width: 100px;
  height: auto;
  margin-left: 250px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

.hero {
  min-height: 100vh;   /* make sure it always reaches the bottom */
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;          /* keeps blur inside */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("fga-img/background.webp") center/cover no-repeat;
  filter: blur(2px);         /* ↑ more blur = bigger number */
  z-index: -2;
}

.hero::after {               /* dark overlay for readability */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: -1;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

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

.btn {
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

.primary {
  background: #d76e0b;
  color: white;
}

.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn:hover {
  opacity: 0.9;
}

header {
  height: 120px;          /* whatever feels right – try 50–60 px */
  display: flex;
  align-items: center;   /* keeps logo + links vertically centred */
}
header nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 24px;
  margin: 0 30px;   /* 12 px left & right (tweak as needed) */
}

/* ---- FOOTER ---- */
/* footer background */
.footer {
  background: #111;        /* was #ffffff */
  color: #fff;
  padding: 40px 20px 10px;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 70px;
  display: flow-root;   /* prevents margin-collapse instantly */
}
.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-col h4 {
  margin: 0 0 10px;
  color: #ff7828;
  font-size: 16px;
}
.footer-col p {
  margin: 0;
}
.social a {
  color: #fff;
  margin-right: 12px;
  text-decoration: none;
  font-weight: bold;
}

.footer-spacer {
  height: 20px;   /* whatever gap you need */
}

/* copyright strip */
.footer-bar {
  text-align: center;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #333;
  font-size: 12px;
  color: #aaa;             /* soft grey, still visible on #111 */
}


.footer {
  animation: fadeIn 1s ease-out both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ---- Services Section ---- */
.service-times {
  display: inline-block;
  margin-left: 1vh;
  margin-top: 0.5em;
}

/* About Hero */
.about-hero {
  min-height: 25vh;
  background: url("img/bg.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.205);
}

.about-text {
  position: relative;
  z-index: 1;
  max-width: 500px;
  padding: 0 20px;
  text-align: center;
  padding-top: 100px;
  font-size: 25px;
}

/* About Content */
.about-content {
  padding: 30px 20px;
  background: #fff;
  text-align: center;
}
.about-content .container {
  max-width: 800px;
  margin: 0 auto;
}
.about-content h2 {
  margin-top: 40px;
  color: #ff7828;
}
.about-content ul {
  list-style: none;
  padding: 0;
}
.about-content li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}
.about-content li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #ff7828;
  margin-left: 30vh;
}

/* Staff Section */
.staff           { padding: 60px 20px; background: #fff; text-align: center;}
.pastors         { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 2vh;}
.pastor img      { width: 220px; height: 220px; object-fit: cover; border-radius: 50%; }
.pastor h3       { margin: 15px 0 5px; color: #ff7828; }
.Meet-Our-Pastors { font-size: 25px; }
