/* ============================ */
/* RESET & BASE                 */
/* ============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #e0f7fa, #e8f5e9);
  color: #333;
  line-height: 1.6;
}

/* ============================ */
/* HEADER                       */
/* ============================ */
header {
  background: #2e7d32;
  color: white;
  padding: 15px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.header-container .logo {
  font-size: 1.8rem;
  font-weight: bold;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #ffb74d;
}

/* ============================ */
/* MAIN DONATION PAGE           */
/* ============================ */
.donation-page {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.donation-page h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1b5e20;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.intro-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #4e342e;
}

/* ============================ */
/* DONATION INSTRUCTIONS        */
/* ============================ */
.donation-instructions {
  background: #f1f8e9;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.donation-instructions h2 {
  font-size: 1.5rem;
  color: #2e7d32;
  margin-bottom: 10px;
}

/* ============================ */
/* PAYMENT METHODS              */
/* ============================ */
.payment-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.payment-card {
  background: linear-gradient(145deg, #fff9c4, #fff176);
  padding: 25px 20px;
  border-radius: 25px;
  width: 300px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.payment-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #f57c00;
}

.payment-card p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #6d4c41;
}

/* ============================ */
/* DONATE BUTTON                */
/* ============================ */
.donate-button {
  display: inline-block;
  background: linear-gradient(90deg, #f57c00, #ffb74d);
  color: white;
  font-weight: bold;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.donate-button:hover {
  background: linear-gradient(90deg, #ef6c00, #ffa726);
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* ============================ */
/* THANK YOU TEXT               */
/* ============================ */
.thank-you {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1b5e20;
  margin-top: 30px;
}

/* ============================ */
/* FOOTER                       */
/* ============================ */
footer {
  background: #2e7d32;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

footer p {
  font-size: 0.95rem;
}

/* ============================ */
/* RESPONSIVE                   */
/* ============================ */
@media (max-width: 768px) {
  .payment-methods {
    flex-direction: column;
    gap: 20px;
  }

  header nav ul {
    flex-direction: column;
    gap: 15px;
  }
}


.contact-card {
  background: linear-gradient(145deg, #c8e6c9, #a5d6a7);
  padding: 25px 20px;
  border-radius: 25px;
  width: 300px;
  text-align: center;
  margin: 20px auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #2e7d32;
}

.contact-card p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #4e342e;
}

.contact-button {
  background: linear-gradient(90deg, #66bb6a, #43a047);
}

.contact-button:hover {
  background: linear-gradient(90deg, #43a047, #2e7d32);
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}


