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

body {
  background: #fffaf0;
  color: #222;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: white;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.donate-btn {
  background: #ffd84d;
  padding: 8px 16px;
  border-radius: 20px;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  padding: 80px 60px;
  background: #fff2bf;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.primary-btn {
  background: #ffd84d;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}

.hero-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  max-width: 320px;
}

/* PEOPLE */
.people {
  padding: 80px 60px;
}

.people-grid {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.person-card {
  background: white;
  padding: 20px;
  border-radius: 20px;
  width: 240px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

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

.person-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

/* FOOTER */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-box {
  background: white;
  padding: 25px;
  border-radius: 20px;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.modal-box img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}
