* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Outfit",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #141414;
  background: #ebddce;
  font-weight: 400;
}

.header {
  background: #ffffff;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  margin-bottom: 1rem;
  object-fit: contain;
  padding: 0.5rem;
}

h1 {
  color: #141414;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.tagline {
  color: #10799e;
  font-size: 1.1rem;
  font-weight: 300;
}

nav {
  background: #10799e;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 1rem 1.5rem;
  display: inline-block;
  transition: background 0.3s;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  background: #82a2bd;
}

.container {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

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

.block {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}

.block:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.block img {
  width: 100%;
  height: auto;
  object-fit: center;
}

.block-content {
  padding: 1.5rem;
}

.block h2 {
  color: #141414;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.block p {
  color: #10799e;
  font-weight: 400;
}

.page-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 75%;
  max-width: 900px;
  margin: 0 auto;
}

.page-content h2 {
  color: #141414;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.page-content img {
  display: block;
  width: 75%;
  max-width: 600px;
  border-radius: 8px;
  margin: 1rem auto;
}

.info-section {
  margin: 2rem 0;
}

.info-section h3 {
  color: #10799e;
  margin-bottom: 1rem;
  font-weight: 600;
}

.info-section p {
  font-weight: 400;
}

.info-list {
  list-style: none;
  padding-left: 0;
}

.info-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.info-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e9673b;
  font-weight: bold;
}

.footer {
  background: #141414;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
}

.footer a {
  color: #82a2bd;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.donate-btn {
  background: #e9673b;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 1rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
}

.donate-btn:hover {
  background: #10799e;
}

.photo-gallery {
  margin: 2rem 0;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s;
  background: #e8dfd4;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover {
  color: #bbb;
}
