@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600&display=swap');

:root {
  --yellow: #f9c80e;
  --green: #1c3a2d;
  --blue: #1f6feb;
  --off-white: #ecece7;
  --gray: #444;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--off-white);
  color: var(--gray);
  -webkit-font-smoothing: antialiased;
}

.section {
  padding: 2.5rem 1rem;
  max-width: 600px;
  margin: auto;
}

.hero {
  background: linear-gradient(120deg, var(--green), var(--blue));
  color: var(--off-white);
  text-align: center;
  padding: 4rem 1rem 3rem;
  border-bottom: 4px solid var(--yellow);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.button {
  display: inline-block;
  background-color: var(--yellow);
  color: var(--green);
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  margin: 0.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 2px 0 var(--green);
  transition: all 0.2s ease-in-out;
}

.button:hover {
  background-color: #f5c400;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.button:active {
  transform: scale(0.98);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--green);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.2rem;
}

.icons {
  display: flex;
  justify-content: space-around;
  margin: 2rem 0;
}

.icons div {
  text-align: center;
  font-weight: 600;
}

.icons img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.gallery img {
  width: 75%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.donate {
  background-color: var(--blue);
  text-align: center;
  padding: 2.5rem 1rem;
}

.donate h2 {
  color: var(--green);
}

.donate p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

a {
  color: var(--blue);
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

.footer {
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.9rem;
  color: #666;
  background-color: #f0f0f0;
}
