/* ===============================
   Global Styles
=================================*/
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ===============================
   Hero Section
=================================*/
#hero {
  background: url('images/hero.png') no-repeat center/cover;
  height: 100vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
}

#hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

#hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2C4BFA; /* Blue highlight */
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #2C4BFA;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}
.btn-primary:hover { background: #1A35C7; }

/* Hero Nav Buttons */
.nav-buttons {
  position: absolute;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.nav-buttons a {
  padding: 10px 20px;
  border-radius: 25px;
  background: #F2F4FF;
  color: #2C4BFA;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.3s ease;
}
.nav-buttons a:hover {
  background: #2C4BFA;
  color: #fff;
}

/* ===============================
   Section 2: Announcements (Izimemezelo)
=================================*/
.announcements {
  padding: 80px 20px;
  text-align: center;
  background: #f2f4ff;
  color: #444;
}
.announcements h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.announcements p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.announcement-card {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.announcement-card img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

/* Arrows */
.arrows {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
}
.arrow {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 5px 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.arrow:hover { background: rgba(0,0,0,0.7); }

/* ===============================
   Section 3: About (Mayelana Nathi)
=================================*/
.about {
  padding: 100px 10%;
  background: #f2f4ff;
  text-align: center;
  color: #444;
}

.about-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-intro p,
.about-scripture p,
.about-bottom-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.about-intro { max-width: 800px; margin: 0 auto 50px; }
.about-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
}

.about-image img {
  max-width: 350px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.about-scripture { max-width: 500px; text-align: justify; }
.verse { margin-top: 10px; font-weight: 600; }

.about-bottom-text { max-width: 800px; margin: 0 auto; }

/* ===============================
   Section 4: Services
=================================*/
.services-section {
  position: relative;
  background: url('images/bible.png') no-repeat center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.services-section .overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}
.services-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.services-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.services-section .btn {
  display: inline-block;
  padding: 12px 30px;
  background: #2C4BFA;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}
.services-section .btn:hover { background: #2C4BFA; }

/* ===============================
   Section 5: Prayers (Imikhuleko)
=================================*/
.prayer-section {
  background: #f2f4ff;
  min-height: 90vh;
  padding: 100px 10%;
  display: flex;
  align-items: center;
}

.prayer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}
.prayer-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #444;
}

.prayer-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 500px;   
  margin: 0 auto;     
  justify-content: center;
}

@media (max-width: 600px) {
  .prayer-buttons {
    grid-template-columns: 1fr;
  }
}
.prayer-btn {
  display: block;
  padding: 18px;
  text-align: center;
  background: #dbe4ff;
  color: #2C4BFA;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}
.prayer-btn:hover {
  background: #b6c8ff;
  transform: translateY(-3px);
}

/* ===============================
   Section 6: Contact (Ezokuxhumana)
=================================*/
.contact-section {
  background: #f2f4ff url('images/mountains.png') no-repeat center/cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 10%;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.contact-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #444;
  margin-bottom: 10px;
}
.contact-text p { font-size: 1.3rem; color: #444; }

.contact-info {
  max-width: 400px;
  text-align: center;  
  margin: 0 auto;      
}
.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #444;
}

.contact-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #2C4BFA;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  margin: 0 auto;
}
.contact-btn:hover { background: #2C4BFA; }

/* ===============================
   Services List Page
=================================*/
.services-list-section {
  padding: 100px 10%;
  background: #f2f4ff;
  text-align: center;
}
.services-list-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2C4BFA;
}
.services-list-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #444;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 600px;
  text-align: left;
}
.services-list li { margin-bottom: 15px; }
.services-list a {
  display: block;
  padding: 12px 20px;
  background: #F2F4FF;
  border-radius: 10px;
  color: #2C4BFA;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}
.services-list a:hover {
  background: #2C4BFA;
  color: #fff;
}

.back-link { margin-top: 30px; }

