* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  background: #f8f6f1;
  line-height: 1.6;
}

header {
  background: #3b1f0f;
  color: white;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  max-width: 1150px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.4rem;
  color: #f3c66b;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: #f3c66b;
}

.menu-toggle {
  display: none;
  background: none;
  color: white;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  min-height: 75vh;
  background:
    linear-gradient(rgba(59, 31, 15, 0.75), rgba(59, 31, 15, 0.75)),
    url("https://images.unsplash.com/photo-1438232992991-995b7058bbb3?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  padding: 40px 20px;
}

.hero-content {
  max-width: 850px;
  margin: auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #f3c66b;
  color: #3b1f0f;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.btn:hover {
  background: #dba94f;
}

.section {
  max-width: 1150px;
  margin: auto;
  padding: 60px 20px;
}

.section h2 {
  color: #3b1f0f;
  margin-bottom: 20px;
  font-size: 2rem;
}

.section p {
  margin-bottom: 20px;
}

.page-header {
  background: #6b3519;
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.page-header h1 {
  font-size: 2.7rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 35px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-top: 5px solid #f3c66b;
}

.card h3 {
  color: #3b1f0f;
  margin-bottom: 12px;
}

.banner {
  background: #3b1f0f;
  color: white;
  text-align: center;
  padding: 55px 20px;
}

.banner h2 {
  color: #f3c66b;
  font-size: 2rem;
  margin-bottom: 10px;
}

.event-list {
  display: grid;
  gap: 20px;
}

.event {
  background: white;
  padding: 25px;
  border-left: 6px solid #f3c66b;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.event h3 {
  color: #3b1f0f;
}

.giving-box {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.giving-box ul {
  margin: 15px 0 25px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.contact-info,
.contact-form {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #3b1f0f;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form button {
  margin-top: 18px;
}

#formMessage {
  margin-top: 15px;
  color: green;
  font-weight: bold;
}

.map-section {
  max-width: 1150px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

footer {
  background: #3b1f0f;
  color: white;
  text-align: center;
  padding: 22px;
}

/* Responsive */
@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 0;
    background: #3b1f0f;
    width: 100%;
    flex-direction: column;
    text-align: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}