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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff8f0;
  color: #333;
  line-height: 1.6;
}

/* Top Contact Bar */
.top-bar {
  background-color: #d9534f;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 5px 20px;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 1001;
}

/* Sticky Navigation Bar */
.main-navbar {
  background-color: #fff;
  border-bottom: 2px solid #ff9900;
  position: sticky;
  top: 34px; /* below top-bar */
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
}

.logo-left {
  height: 60px;
}

.nav-items {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-items li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-items li a:hover {
  color: #d9534f;
}

/* Red Donate Button */
.donate-btn {
  background-color: #d9534f;
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.donate-btn:hover {
  background-color: #c9302c;
}

/* Slider */
.slider {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.slider img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: none;
}

/* Section Styling */
section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  font-size: 28px;
  color: #d9534f;
  margin-bottom: 20px;
  text-align: center;
}

/* Activities Grid */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.activity-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Donate Section */
#donate p {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}

/* Footer */
.site-footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-content {
  max-width: 1000px;
  margin: auto;
}

.footer-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-content iframe {
  margin-top: 15px;
  border-radius: 4px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  border-top: 1px solid #555;
  padding-top: 10px;
  color: #ccc;
}

/* Address Styling */
.address-block {
  padding: 20px;
  background-color: #fff2e6;
  border-left: 5px solid #d9534f;
  margin-bottom: 40px;
}

.leader-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.leader-text {
  flex: 1;
  min-width: 280px;
}

.leader-image img {
  max-width: 300px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.leader-section.no-image {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
  text-align: left;
}

.leader-section.no-image .leader-text {
  max-width: 800px;
}

.policy-section {
  max-width: 1050px;
}

.policy-intro {
  max-width: 850px;
  margin: 0 auto 30px;
  text-align: center;
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.policy-card {
  background-color: #fff;
  border-left: 5px solid #d9534f;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 22px;
}

.policy-card h3 {
  color: #d9534f;
  margin-bottom: 12px;
}

.policy-card p {
  margin-bottom: 12px;
}

@media (max-width: 800px) {
  .top-bar {
    align-items: center;
    flex-direction: column;
    gap: 3px;
    position: static;
    text-align: center;
  }

  .main-navbar {
    top: 0;
  }

  .nav-container {
    gap: 12px;
    justify-content: center;
  }

  .logo-left {
    height: 52px;
  }

  .nav-items {
    gap: 12px;
  }

  .nav-items li a {
    font-size: 14px;
  }
}
