body {
  margin: 0;
  background: #F7F5ED;
  color: #353632;
  font-family: 'Merriweather', 'Georgia', serif;
}

.main-content {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 20px;
}

/* ===============================
   HERO SECTION (HOME PAGE)
   =============================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 420px;
  height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: url('incbanner.jpg') center center / cover no-repeat fixed;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 32, 36, 0.62);
  z-index: 1;
}
.hero-section * {
  position: relative;
  z-index: 2;
}
.hero-logo {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 2px 16px #20232550;
}
.hero-section h1 {
  font-size: 2.5em;
  margin-bottom: 8px;
  letter-spacing: -1.1px;
}
.hero-section .subtitle {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #ebd17e;
  font-weight: bold;
}
.hero-section .intro {
  font-size: 1.12em;
  color: #e8e7e2;
  font-style: italic;
}

/* NAV BAR */
.nav-bar {
  display: flex;
  gap: 32px;
  justify-content: center;
  padding: 16px 0 8px 0;
  background: #FDF6E3;
  border-bottom: 1.5px solid #CAB570;
  flex-wrap: wrap;
  font-family: 'Merriweather',Georgia,serif;
}
.nav-bar a {
  color: #CAB570;
  text-decoration: none;
  font-size: 1.04em;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.14s;
}
.nav-bar a:hover,
.nav-bar .donate-link {
  border-bottom: 2px solid #A0842D;
  color: #A0842D;
}

/* ===============================
   PAGE SECTIONS & GENERAL CONTENT
   =============================== */
.section {
  padding: 40px 0;
  border-bottom: 1px solid #F2EDDF;
  background: #FFFDF7;
}
.section h2 {
  color: #A0842D;
  font-size: 1.25em;
  margin-bottom: 10px;
  text-align: left;
}
.about-list {
  margin-top: 11px;
  color: #827352;
}
.section-img-text {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.section-img {
  width: 145px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 10px;
}
.section-img.left { order: 0; }
.section-img.right { order: 1; margin-left: 30px; }
@media (max-width: 800px) {
  .section-img-text { flex-direction: column; gap: 12px; }
  .section-img { margin-left: 0 !important; }
}

/* Leadership Cards */
.leadership-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
}
.leader-card {
  background: #FFF9E5;
  border-radius: 12px;
  box-shadow: 0 2px 17px #f2dcaf66;
  padding: 16px 10px 10px 10px;
  text-align: center;
  width: 185px;
}
.leader-img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #CAB570;
  margin-bottom: 10px;
}

/* News Section */
.news-flex { display: flex; flex-wrap: wrap; gap: 33px; }
.news-article {
  flex: 1 1 270px;
  background: #FFF8E1;
  border-left: 5px solid #CAB570;
  border-radius: 8px;
  box-shadow: 0 2px 10px #cab5700A;
  padding: 16px;
  margin-bottom: 18px;
}
.news-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 9px;
  margin-bottom: 9px;
}
@media (max-width: 950px) { .news-flex { flex-direction: column; } }

/* Social Media Tiles */
.social-media-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-top: 18px;
}
.social-tile {
  background: #FAF8F1;
  border-radius: 8px;
  box-shadow: 0 2px 8px #cab5701c;
  padding: 15px 20px;
  width: 280px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
}
.follow-note {
  text-align: center;
  margin-top: 20px;
}

/* Footer */
.footer {
  text-align: center;
  color: #CAB570;
  background: #F7F5ED;
  padding: 28px 20px 16px 20px;
  font-size: 1.12em;
  letter-spacing: 0.01em;
}

/* Floating Mobile Donate Button */
.floating-donate-btn {
  display: none;
  position: fixed;
  right: 10px !important;
  bottom: 20px;
  z-index: 50;
  background: linear-gradient(90deg, #CAB570 75%, #EFE5CE 100%);
  color: #4D3F1D;
  font-weight: bold;
  font-size: 1.12em;
  padding: 12px 18px !important;
  border-radius: 35px;
  box-shadow: 0 4px 22px 0 #cab57033;
  text-decoration: none;
  box-sizing: border-box;
  max-width: calc(100vw - 20px);
  word-wrap: break-word;
  white-space: normal;
  overflow-wrap: anywhere;
  font-family: 'Merriweather', serif;
}
@media (max-width: 900px) {
  .floating-donate-btn { display: block; }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive nav-bar on mobiles */
@media (max-width: 650px) {
  .nav-bar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-section, .main-content, .section {
    padding: 10px 6px !important;
  }
  .footer { font-size: 1em; padding: 16px 0 10px 0; }
}

/* ================================
   DONATE PAGE - ENHANCED 3-PANEL STYLE
   ================================ */
.donate-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 36px 20px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  background: #FFFDF7;
  border-radius: 20px;
  box-shadow: 0 16px 44px #b5cad326, 0 2px 10px #cdebe933;
}
/* UPPER PART: welcoming gold/cream */
.donate-upper {
  background: linear-gradient(45deg, #fff8e1, #f9f1d1);
  border-radius: 16px;
  padding: 28px 26px;
  color: #5c4a1a;
  text-align: left;
}
.donate-upper h2 {
  font-size: 1.75em;
  margin-bottom: 16px;
  color: #a38521;
  font-weight: 700;
}
.donate-upper p {
  font-size: 1.12em;
  line-height: 1.6;
  margin-bottom: 18px;
}
.donate-features ul {
  list-style: disc;
  margin-left: 28px;
  line-height: 1.7;
  text-align: left;
}
.donate-features li {
  color: #357269;
  font-size: 1.02em;
  margin-bottom: 4px;
}
.donate-features li strong {
  color: #183650;
}

/* MIDDLE PART: energetic teal for focus */
.donate-middle {
  background: linear-gradient(160deg, #c1e7e3, #8fd9d3);
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 0 18px #6eb7b1cc;
  text-align: center;
}
.qr-donate-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #e6f4fa;
  border-radius: 13px;
  box-shadow: 0 2px 24px #8fd7d41a;
  padding: 19px 15px 14px 15px;
  margin: 28px auto 14px auto;
  width: 100%;
  max-width: 340px;
}
.qr-img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  border-radius: 8px;
  border: 1.5px solid #40b6be;
  background: #fff;
}
.upi-id {
  text-align: center;
  color: #1e646d;
  font-weight: 700;
}
.upi-block {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.upi-link {
  font-family: monospace;
  background: #f5feea;
  padding: 5px 11px;
  color: #357269;
  border-radius: 5px;
  font-size: 1em;
  letter-spacing: 0.01em;
  user-select: all;
}
.upi-action-btn {
  color: #fff;
  background: linear-gradient(97deg,#28b58b 65%, #338f7d 100%);
  border: none;
  border-radius: 18px;
  padding: 8px 20px;
  font-size: 1em;
  box-shadow: 0 2px 10px #8fd7d43d;
  margin-top: 2px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.upi-action-btn:hover {
  background: linear-gradient(97deg, #208969 65%, #1bbc90 100%);
}
.donate-divider {
  margin: 26px 0 18px 0;
  color: #338f7d;
  font-weight: bold;
  letter-spacing: 0.14em;
  font-size: 1.1em;
  text-align: center;
  position: relative;
}
.donate-divider::before, .donate-divider::after {
  content: "";
  display: inline-block;
  width: 27px;
  height: 1.5px;
  background: #aededa;
  vertical-align: middle;
  margin: 0 7px;
}
.donate-btn.big {
  font-size: 1.14em;
  padding: 13px 28px;
  border: none;
  border-radius: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, #29b2a0 70%, #fae57a 100%);
  color: #1b3f4a;
  box-shadow: 0 5px 17px #7adfb454;
  margin-bottom: 16px;
  transition: background 0.18s;
  display: inline-block;
}
.donate-btn.big:hover {
  background: linear-gradient(80deg, #249076 60%, #e6e181 100%);
}

/* LOWER PART: calm warm sand/gray */
.donate-lower {
  background: linear-gradient(to bottom, #f8f6f2, #e9e7df);
  border-radius: 16px;
  padding: 24px 28px;
  color: #615a45;
  text-align: left;
}
.donation-impact h3,
.donate-justification h3 {
  font-weight: 700;
  font-size: 1.3em;
  margin-bottom: 18px;
  color: #7a6f35;
}
.donation-impact ul {
  margin-left: 34px;
  list-style: circle;
  line-height: 1.6;
  color: #35625a;
  font-size: 1.01em;
  text-align: left;
}
.donation-impact ul li strong {
  color: #5c5336;
}
.donate-justification p {
  max-width: 680px;
  font-size: 1.07em;
  line-height: 1.7em;
  margin-bottom: 18px;
  color: #40413a;
  text-align: justify;
}
.donate-justification blockquote {
  margin-left: auto;
  margin-right: auto;
  max-width: 550px;
  border-left: 5px solid #7a6f35;
  background: #faf8e5;
  padding: 18px 24px;
  font-style: italic;
  color: #6a633e;
  font-size: 1.1em;
  line-height: 1.55em;
  border-radius: 9px;
}
.disclaimer {
  margin-top: 24px;
  font-size: 0.95em;
  color: #736e57;
  padding-left: 8px;
  background: none;
}

.donate-logo {
  display: block;
  margin: 0 auto 18px auto;
  width: 70px; height: 70px;
}

/* Floating Home Button */
.floating-home-btn {
  display: block;
  position: fixed;
  left: 12px;
  bottom: 20px;
  z-index: 50;
  background: linear-gradient(90deg, #FACD74 80%, #5feebc 100%);
  color: #234037;
  font-weight: bold;
  font-size: 1em;
  padding: 13px 22px;
  border-radius: 28px;
  box-shadow: 0 4px 14px #cab57022;
  text-decoration: none;
}

/* Responsive for Small Devices */
@media (max-width: 600px) {
  .donate-main {
    padding: 26px 7px;
    gap: 28px;
  }
  .donate-upper, .donate-middle, .donate-lower {
    padding: 18px 6px;
  }
  .donate-logo { width: 44px; height: 44px; }
  .donate-justification p, .donation-impact ul {
    max-width: 100%;
    margin-left: 10px;
  }
}
