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

body {
  font-family: "Book Antiqua", Palatino, serif;
  line-height: 1.6;
  color: #333;
  background: #f9f7f2;
}

.hero-content h2 {
  font-size: 3rem;
  font-family: "Book Antiqua", Palatino, serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #1f3b4d;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
  url('https://images.unsplash.com/photo-1519491050282-cf00c82424b4?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h2 {
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
}

.hero-content p {
  margin: 1rem 0 2rem;
  font-size: 1.3rem;
}

.btn {
  display: inline-block;
  background: #7b3f00;
  color: white;
  padding: .8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  margin: .5rem;
}

.secondary {
  background: #1f3b4d;
}

.worship {
  padding: 4rem 0;
}

.card {
  background: white;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

.about {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 12px;
}

.ministries {
  background: #eef3f5;
  padding: 4rem 0;
}

.ministry-grid,
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.ministry-card,
.event-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.events {
  padding: 4rem 0;
}

.center {
  text-align: center;
  margin-top: 2rem;
}

.contact {
  background: #1f3b4d;
  color: white;
  padding: 4rem 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

input,
textarea {
  padding: 1rem;
  border: none;
  border-radius: 6px;
}

footer {
  background: #132531;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}
