:root {
  --blue: #DCEEFF;
  --green: #DDEEDB;
  --white: #FFFFFF;
  --gray: #F7F7F7;
  --yellow: #FFF4D6;
  --text: #2F2F2F;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
}


/* Accessibility Bar */

.access-bar {
  padding: 10px;
  background: var(--gray);
  text-align: right;
}


/* Navigation */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: var(--white);
}

.logo {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
}


/* Buttons */

.donate {
  background: var(--yellow);
  padding: 6px 10px;
  border-radius: 6px;
}

.crisis {
  background: #D9534F;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}


/* Hero Section */

.hero {
  background: var(--blue);
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
}

.hero-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--green);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}


/* Cards */

.cards {
  display: flex;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: var(--gray);
  padding: 20px;
  width: 250px;
  border-radius: 12px;
}


/* Mission */

.mission {
  padding: 40px;
  text-align: center;
}


/* Statistics */

.statistics {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  background: var(--blue);
  flex-wrap: wrap;
}

.stat-card {
  background: var(--white);
  padding: 25px;
  width: 220px;
  text-align: center;
  border-radius: 12px;
}

.stat-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
}


/* Footer */

footer {
  background: var(--gray);
  padding: 20px;
  text-align: center;
}


/* Accessibility Modes */

.high-contrast {
  background: black;
  color: white;
}

.dyslexia {
  letter-spacing: 0.1em;
  line-height: 1.8;
}


/* Tablet */

@media (max-width: 1024px) {

  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    justify-content: center;
  }

  .hero {
    padding: 40px 20px;
  }

}


/* Mobile */

@media (max-width: 768px) {

  .logo {
    height: 50px;
  }

  .nav-links {
    display: none;
  }

  .access-bar {
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-buttons a {
    display: block;
    width: 80%;
    margin: 10px auto;
    text-align: center;
  }

  .cards {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .card {
    width: 90%;
  }

  .statistics {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 90%;
  }

}


/* Large Desktop */

@media (min-width: 1200px) {

  .cards {
    max-width: 1200px;
    margin: auto;
  }

}