/* General */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #2c2c2c;
  background-color: #f9f6f1;
}
h1, h2, h3 {
  font-family: Georgia, serif;
}
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}
.btn {
  background: #2c3e2c;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* Hero */
.hero {
  position: relative;
  background: url("https://images.pexels.com/photos/2850832/pexels-photo-2850832.jpeg") no-repeat center/cover;
  height: 90vh;
  color: #fff;
}
.overlay {
  background: rgba(0,0,0,0.55);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top-bar {
  display: flex;
  justify-content: space-around;
  padding: 15px;
  font-size: 14px;
  flex-wrap: wrap;
}
.hero-content {
  text-align: center;
  margin-bottom: 80px;
}
.hero-content h1 {
  font-size: 60px;
  margin: 10px 0;
}
.hero-content p {
  font-size: 20px;
}

/* Event */
.event-details {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row-reverse; /* image on right */
}
.event-details img {
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
}
.event-text {
  flex: 1;
}

/* Program Flow */
.program-flow {
  position: relative;
  background: url("https://images.pexels.com/photos/3171837/pexels-photo-3171837.jpeg") no-repeat center/cover;
  color: #fff;
  text-align: center;
}
.program-flow .overlay {
  background: rgba(0,0,0,0.6);
  padding: 60px 20px;
}
.program-flow ul {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 400px;
  text-align: left;
}
.program-flow ul li {
  margin-bottom: 10px;
}

/* FAQs */
.faqs .faq {
  margin-bottom: 20px;
}
.faqs h3 {
  margin-bottom: 8px;
}

/* Donate */
.donate {
  text-align: center;
}
.donate-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Spread */
.spread .flyers {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.spread img {
  border-radius: 10px;
  width: 200px;
  height: auto;
}

/* Contact */
.contact {
  background: #2c3e2c;
  color: #fff;
  text-align: center;
}
.contact p {
  margin: 8px 0;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* -------------------
   MEDIA QUERIES
-------------------- */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .event-details {
    flex-direction: column; /* stack text and image */
  }
  .event-details img {
    max-width: 100%;
  }
  .program-flow ul {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
  }
  .btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
}
