* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  color: #333;
  background-color: #f9f9f9;
}

header {
  background-color: #2c3e50;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.menu {
  align-items: center;
  margin-left: 50px;
  margin-right: 50px;
}
.logo {

  height: 40px;
  width: 150px;
  border-radius: 20px;
}

.hero {
  background-color: #34495e;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #e67e22;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #d35400;
}

.activities {
  padding: 3rem 1rem;
  background-color: #ecf0f1;
  text-align: center;
}

.activities h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #e67e22;
}

.activity-card {
  background-color: white;
  padding: 2rem;
  margin: 1rem auto;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  width: 80%;
  max-width: 600px;
}

.activity-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #34495e;
}

.contact {
  padding: 3rem 1rem;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #e67e22;
}

.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.contact input, .contact textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact button {
  background-color: #e67e22;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact button:hover {
  background-color: #fd9a3d;
}

footer {
  background-color: #2c3e50;
  color: white;
  padding: 1rem;
  text-align: center;
}
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Body Styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* About Section Styling */
.about {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about:hover {
  transform: translateY(-5px);
}

/* Headings */
.about h2 {
  font-size: 2em;
  color: #e67e22;
  text-align: center;
  margin-bottom: 15px;
}

.about h3 {
  font-size: 1.5em;
  color: #e67e22;
  margin-top: 20px;
  padding-bottom: 5px;
  text-align: center;
}

/* Paragraph Styling */
.about p, .about ul {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #666;
}

.about ul {
  list-style-type: disc;
  margin-left: 20px;
}

.about ul li {
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

/* Link Styling */
.about a {
  color: #e67e22;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.about a:hover {
  color: #e67e22;
}

/* Highlighted Text */
.about strong {
  color: #333;
}

/* Additional Styling for Quotes and Emphasis */
.about blockquote {
  border-left: 4px solid #fd9a3d;
  padding-left: 15px;
  margin: 20px 0;
  font-style: italic;
  color: #555;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .about {
    padding: 15px;
  }

  .about h2 {
    font-size: 1.8em;
  }

  .about h3 {
    font-size: 1.3em;
  }
}
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures the footer stays at the bottom */
}

/* Header Styling */
.header {
  background-color: #2c3e50; /* Header color */
  color: white; /* Header text color */
  padding: 10px;
  position: fixed; /* Fixes the header at the top */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* Keeps the header above other content */
}

/* Navigation Styling */
.header nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around; /* Spaces out the nav items */
}

.header nav ul li {
  padding: 10px;
}

.header nav ul li a {
  color: white;
  text-decoration: none;
}

/* Main Content Styling */
.main-content {
  flex: 1; /* Allows the main content to grow and fill available space */
  padding-top: 60px; /* Prevents content from being hidden behind the fixed header */
  padding-bottom: 40px; /* Provides space for the footer */
}

/* Footer Styling */
.footer {
  background-color: #333; /* Footer color */
  color: white; /* Footer text color */
  text-align: center; /* Centers footer text */
  padding: 10px;
  position: relative; /* Normal positioning */
  bottom: 0; /* Sticks the footer at the bottom */
  left: 0;
  right: 0;
}
/* Basic styles for the donate section */
.donate-section {
  background-color: #f9f9f9; /* Light background for the donation section */
  border: 1px solid #ddd; /* Light border */
  padding: 20px; /* Padding around the section */
  margin: 20px auto; /* Center the section */
  border-radius: 8px; /* Rounded corners */
  text-align: center; /* Center align text */
  max-width: 600px; /* Maximum width of the section */
}

/* Responsive form styles */
.donate-section form {
  display: flex;
  flex-direction: column; /* Stack form elements vertically */
  align-items: center; /* Center align form elements */
}

/* Responsive input styles */
.donate-section input[type="number"],
.donate-section input[type="submit"] {
  width: 100%; /* Full width for inputs */
  max-width: 300px; /* Max width for larger screens */
  padding: 10px; /* Padding for inputs */
  margin-bottom: 10px; /* Margin below the input */
  border: 1px solid #ccc; /* Border for the input */
  border-radius: 4px; /* Rounded corners */
}

/* Button styles */
.donate-section input[type="submit"] {
  background-color: #e67e22; /* Button color */
  color: white; /* Button text color */
  border: none; /* No border */
  cursor: pointer; /* Pointer cursor */
}

/* Hover effect for button */
.donate-section input[type="submit"]:hover {
  background-color: #e67e22; /* Darker shade on hover */
}

/* Media queries for smaller screens */
@media (max-width: 600px) {
  .donate-section {
      margin: 10px; /* Reduce margin on smaller screens */
      padding: 15px; /* Adjust padding on smaller screens */
  }
  .donate-section input[type="number"],
  .donate-section input[type="submit"] {
      max-width: 90%; /* Allow inputs to take up more space */
  }
}
/* Default header link styling */
header nav a {
  color: #e67e22; /* Default color for header links */
  text-decoration: none;
  padding: 5px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* Hover effect for header links */
header nav a:hover {
  color: #f5a133;
}

/* Style to apply after header link is clicked */
header nav a.clicked {
  color: #f8b525; /* Color after clicking */
  background-color: #f0f0f0; /* Optional background for clicked state */
  border-radius: 5px;
}
/* General styling for the donation-info section */
.donation-info {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  color: #333;
}

/* Section title */
.donation-info h2 {
  font-size: 1.8em;
  color: #e67e22;
  margin-bottom: 10px;
  text-align: center;
}

/* Subheadings for bank transfer, MOMO, etc. */
.donation-info h3 {
  font-size: 1.3em;
  color: #e67e22;
  margin-top: 20px;
}

/* Paragraph styling */
.donation-info p {
  line-height: 1.6;
  margin: 10px 0;
}

/* Strong text styling for labels */
.donation-info p strong {
  color: #333;
  font-weight: bold;
}

/* Styling for email link */
.donation-info a {
  color: #4e331c;
  text-decoration: none;
}

.donation-info a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .donation-info {
      padding: 15px;
      font-size: 0.9em;
  }

  .donation-info h2 {
      font-size: 1.5em;
  }

  .donation-info h3 {
      font-size: 1.1em;
  }
}

/* Footer styling */
.footer {
  background-color: #333;
  color: #f1f1f1;
  padding: 20px 0;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-info, .social-media {
  margin-bottom: 15px;
}

.footer h3 {
  color:#e67e22;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.footer a {
  color: #f1f1f1;
  text-decoration: none;
  margin: 0 8px;
  font-size: 1.5em;
}

.footer a:hover {
  color: #e67e22;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 0.9em;
}

@media (max-width: 600px) {
  .footer-content {
      flex-direction: column;
      align-items: center;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('backgroung.png') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  font-family: Arial, sans-serif;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #f7872b;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #fd9a3d;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #f7872b;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
      padding: 70px 20px;
  }

  .hero h1 {
      font-size: 2em;
  }

  .hero p {
      font-size: 1em;
  }
}

