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

:root {
  --bg: #f2eee8;
  --surface: #ffffff;
  --text: #4f4034;
  --muted: #7a6a5d;
  --accent: #7fb0c0;
  --accent-dark: #6d9cac;
  --brown: #4a382d;
  --line: #ddd4ca;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --orange: #ff7900;
  --blue: #304C89;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
}

hr {
  height: 0.4rem;
  margin: 2rem;
  background: var(--blue);
}

main {
  width: 100%;
  margin: 0 auto;
}

.content {
  padding: 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.text-section {
  grid-template-columns: 1fr;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}
.section-heading h2 {
  color: var(--brown);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1.15;
  font-weight: 400;
}
.section-heading p {
  color: #6b625c;
  line-height: 1.6;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 14px;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.image-wrapper {
  border: 4px solid #d8d1c8;
  padding: 0.5rem;
  margin: 2rem;
  background-color: #f7f4ef;
  display: inline-block;
}
.image-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}

.image-gallery {
  background: var(--accent);
  margin-bottom: 2.5rem;
  border-radius: 0.8rem;
  overflow: auto;
  white-space: nowrap;
  gap: 2rem;
  padding: 3rem;
}
.image-gallery img {
  margin: 1rem;
  width: 22rem;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 1.1rem rgba(0, 0, 0, 0.15);
}

.btn {
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.primary-btn {
  text-decoration: none;
  background: var(--orange);
  color: white;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 14px 24px;
  border-radius: 22px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.content-btn {
  text-decoration: none;
  width: 10rem;
  background: var(--blue);
  color: white;
  border-radius: 2rem;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  display: block;
}
.content-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}

.donate-btn {
  margin-top: 8px;
  padding: 10px;
  border-radius: 999px;
  border: none;
  background: var(--orange);
  color: white;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-transform: uppercase;
}
.donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
}

#donate-btn {
  justify-self: end;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#join-us-btn {
  text-align: center;
  width: 10rem;
}

.card {
  margin: 0 auto;
  max-width: 50rem;
  padding: 1rem;
  background-color: var(--bg);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-header p {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 16px;
  color: var(--blue);
}

.site-header {
  top: 0;
  background-color: #F2E2BA;
  border-bottom: 1px #9A771D;
  padding: 8px 0;
  z-index: 1000;
}

.nav-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
}

.logo img {
  width: 110px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 58px;
}
.main-nav a {
  text-decoration: underline;
  color: #6e5e4f;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.main-nav a:hover {
  opacity: 0.7;
}

@media (max-width: 800px) {
  .nav-container {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    z-index: 1000;
  }
  .logo {
    justify-self: center;
  }
  .main-nav {
    flex-wrap: wrap;
    gap: 24px;
  }
  #donate-btn {
    justify-self: center;
  }
}
.site-footer {
  background-color: #F2E2BA;
  color: black;
  margin-top: 40px;
  padding: 50px 0 24px;
}

.footer-inner {
  width: min(92%, 1300px);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 24px;
}
.footer-inner a {
  display: block;
  margin-bottom: 8px;
  color: black;
}

.footer-note {
  width: min(92%, 1300px);
  margin: 0 auto;
  color: darkblue;
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 620px;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 400;
  text-align: center;
}

.hero-text {
  background: var(--blue);
  color: #fff;
  padding: 78px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.5;
}

.hero-copy {
  font-size: 1.15rem;
  max-width: 580px;
  color: #f2e9df;
  margin-bottom: 32px;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  min-height: 38.75rem;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-text {
  line-height: 1.5;
  max-width: 100%;
  font-size: 1.15rem;
  color: var(--muted);
  margin: 2rem;
}

@media (max-width: 800px) {
  .hero {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .hero-text,
  .hero-image-wrap {
    display: block;
  }
  section {
    padding: 64px 0;
  }
}
.project-card {
  margin: 5rem;
  border: 1px solid #d8d1c8;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.project-card:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.project-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4a382d;
  background: #f8f4ef;
}

.project-image-wrapper {
  position: relative;
}

.project-image {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.project-details {
  padding: 1.75rem 1.5rem 2rem;
  border-top: 1px solid #e6dfd7;
  animation: slideDown 0.3s ease;
}
.project-details h3 {
  margin-bottom: 0.75rem;
  color: #4a382d;
  font-size: 1.35rem;
}
.project-details p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #5f554d;
}
.project-details ul {
  padding-left: 1.25rem;
  color: #4f4034;
  line-height: 1.8;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: #f8f4ef;
  border-bottom: 1px solid #e6dfd7;
}

.project-read-more {
  font-size: 0.95rem;
  font-weight: 600;
  color: #7a5c46;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.project-read-more:hover {
  opacity: 0.7;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .content {
    padding: 2rem 1rem;
  }
  .project-image {
    height: 240px;
  }
  .project-year {
    font-size: 1.25rem;
  }
  .project-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    right: 0.85rem;
  }
}
.page-content {
  padding: 6rem 1.5rem;
  background: #f8f5f0;
}

.content-section {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  padding: 4rem;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid #e6dfd5;
}
.content-section h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #1f2937;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.content-section h2 {
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.content-section p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.content-section ul {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}
.content-section li {
  padding: 1.25rem 1.5rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #374151;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.content-section li strong {
  color: #111827;
}
.content-section li:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .page-content {
    padding: 3rem 1rem;
  }
  .content-section {
    padding: 2rem;
  }
  .content-section h1 {
    font-size: 2.5rem;
  }
  .content-section p,
  .content-section li {
    font-size: 1rem;
  }
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid #d6d3d1;
  background: #f9fafb;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.back-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.back-btn:active {
  transform: translateY(0);
}

.donate-hero {
  min-height: 680px;
}

.donate-hero-text {
  gap: 1rem;
}

.donate-card {
  margin-top: 1rem;
  max-width: 42rem;
  width: 100%;
}

.donate-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.donation-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group {
  display: flex;
  align-items: center;
  background: var(--line);
  border-radius: 999px;
  padding: 10px 14px;
}
.input-group input {
  background: transparent;
  border: none;
  outline: none;
  color: black;
  font-size: 1rem;
  width: 100%;
}
.input-group input::placeholder {
  color: grey;
}

.currency {
  color: var(--blue);
  margin-right: 6px;
  font-size: 1rem;
}

.donate-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.donate-info-card {
  background: #f8f4ef;
  border: 1px solid #ddd4ca;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}
.donate-info-card h3 {
  color: var(--brown);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}
.donate-info-card p {
  color: var(--muted);
  line-height: 1.7;
}

.donor-summary {
  max-width: 34rem;
  margin: 0 auto 2rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8f4ef;
  text-align: left;
}

.donor-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e6dfd7;
}
.donor-row:last-child {
  border-bottom: none;
}

.donor-label {
  font-weight: 700;
  color: var(--brown);
}

.donor-value {
  color: var(--muted);
  text-align: right;
  word-break: break-word;
}

@media (max-width: 900px) {
  .donate-info-grid {
    grid-template-columns: 1fr;
  }
}
.success-page {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(to bottom, #f8f4ef, #ffffff);
}

.success-card {
  max-width: 780px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 4rem 2rem;
  text-align: center;
}
.success-card h1 {
  color: var(--brown);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.success-copy {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.success-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.18);
}

.success-message {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .success-actions a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
.success-actions .content-btn {
  width: auto;
  min-width: 11rem;
  padding: 14px 24px;
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .success-card {
    padding: 2.5rem 1.25rem;
  }
  .success-actions {
    flex-direction: column;
    align-items: center;
  }
}

/*# sourceMappingURL=main.css.map */
