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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #000000;
  margin: 3px 0;
  transition: 0.3s;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-links li a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.nav-links li a:hover {
  color: #985812;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ffffff;
  text-align: center;
}

.hero-content {
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}

.hero-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 2rem;
  object-fit: cover;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Sections */
section {
  padding: 5rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about {
  background-color: #ffffff;
  color: #000000;
}

.mission {
  background-color: #524d4d;
  color: #ffffff;
}

.vision {
  background-color: #ffffff;
  color: #000000;
}

.contact {
  background-color: #524d4d;
  color: #ffffff;
}

.what-we-do {
  background-color: #ffffff;
  color: #000000;
}

.how-we-work {
  background-color: #524d4d;
  color: #ffffff;
}

.who-we-work-with {
  background-color: #ffffff;
  color: #000000;
}

.geographic-scope {
  background-color: #524d4d;
  color: #ffffff;
}

.resource-mobilization {
  background-color: #ffffff;
  color: #000000;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: inherit;
}

section p, section ul, section ol {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

section ul, section ol {
  list-style-position: inside;
  padding-left: 0;
}

section li {
  margin-bottom: 0.5rem;
}

section ol li {
  margin-bottom: 1rem;
}

section ol li ul {
  margin-left: 2rem;
  list-style-type: disc;
}

section h3 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem 0;
  color: inherit;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #985812;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.card li::before {
  content: "•";
  color: #5f3e06;
  position: absolute;
  left: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.social-links a {
  color: #985812;
  text-decoration: none;
  font-weight: 500;
}

.social-links a:hover {
  color: #5f3e06;
}

.email-link {
  color: #985812;
  text-decoration: none;
  font-weight: 500;
}

.email-link:hover {
  color: #5f3e06;
}

/* Footer */
footer {
  background-color: #000000;
  color: #ffffff;
  padding: 2rem 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: left 0.3s;
  }

  .nav-links.active {
    left: 0;
  }

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

  .tagline {
    font-size: 1.2rem;
  }

  section h2 {
    font-size: 2rem;
  }

  .hero-logo {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1rem;
  }

  section h2 {
    font-size: 1.8rem;
  }
}