/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f5f5f5;
  color: #111;
}

/* HEADER */
header {
  background: #0b1f3a;
  color: white;
  padding: 10px 20px;display: flex;align-items: center;justify-content: space-between;
}
header div {display: flex;align-items:center;gap: 10px;}
header h1 {
  margin-bottom: 5px;
}
header img {width: 70px;height: auto;border-radius: 50%;}
nav {
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
  font-weight: bold;
}

nav a:hover {
  color: #d4af37;
}

/* HERO */
#hero {
  background: #0b1f3a;
  color: white;
  padding: 100px 20px;
  text-align: center;
}
#about{background-color: darkseagreen;}
#hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  text-align: center;
  background: white;
  margin: 20px;
  border-radius: 10px;
}

/* PASTOR IMAGE */
#pastor img {
  width: 250px;
  border-radius: 10px;
  margin: 20px 0;
}

/* GALLERY */
#gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

#gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* BUTTON (SERMON LINK) */
a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #d4af37;
  color: black;
  text-decoration: none;
  border-radius: 5px;
}

a:hover {
  background: #b8962e;
}
#giving{text-decoration:underline;background-image:url('images/giving.png');background-size: cover;color:aliceblue;background-position: center;background-repeat: no-repeat;position: relative; }
#giving::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

#giving > * {
  position: relative;
  z-index: 1;
}
/* CONTACT TEXT */
#contact p {
  margin: 8px 0;
}
#sermons{background-color: #0b1f3a;color: aliceblue;}
/* FOOTER */
footer {
  background: #0b1f3a;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}
footer .fa-facebook{color: #f5f5f5;}
#founder{text-align: center;background-color: #0b1f3a;color: #f5f5f5;}
#founder img{width: 250px;height: auto;border-radius: 10px;margin: 20px 0;}
