/* start header css */
/* Header Styling */
.main-header {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  border-radius: 8px;
}

.main-header a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-header a:hover {
  color: #f39c12; /* golden hover */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

/* Mobile view */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .main-header a {
    font-size: 24px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}


/* Donate Section */
.donate-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
}

.donate-header {
  text-align: center;
  margin-bottom: 40px;
}

.donate-header h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.donate-header p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.donate-details {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.donate-details h3 {
  margin-bottom: 15px;
}

.donate-details p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.donate-details a {
  color: #007BFF;
  text-decoration: none;
}

.donate-details a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  
  .donate-header h2 {
    font-size: 1.6rem;
  }
  .donate-header p {
    font-size: 1rem;
  }
}
