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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #f6f7f8;
  color: #1f2933;
}

img {
  max-width: 100%;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

/* HERO */

.hero {
  background:
    linear-gradient(rgba(0, 60, 45, 0.82), rgba(0, 60, 45, 0.82));
  color: white;
  text-align: center;
  padding: 90px 20px;
}

.demo-badge {
  display: inline-block;
  background: #ffffff;
  color: #0b5d47;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  max-width: 850px;
  margin: 0 auto 20px;
  line-height: 1.1;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.15rem;
  color: #edf7f3;
}

.btn-primary {
  display: inline-block;
  background: #d9a441;
  color: #15211d;
  text-decoration: none;
  font-weight: bold;
  padding: 15px 28px;
  border-radius: 10px;
  transition: 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #e7b552;
}

/* GENERAL SECTIONS */

section {
  padding: 70px 0;
}

section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 18px;
  color: #0b5d47;
}

section > .container > p {
  max-width: 760px;
  margin: 0 auto 35px;
  text-align: center;
  color: #5d6870;
}

/* FUNDRAISING */

.campaign-section {
  background: white;
}

.fundraising-card {
  max-width: 760px;
  margin: 40px auto 0;
  background: #f8faf9;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.fundraising-numbers {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.fundraising-numbers div {
  flex: 1;
}

.label {
  display: block;
  color: #718078;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.fundraising-numbers strong {
  display: block;
  color: #0b5d47;
  font-size: 1.8rem;
}

.progress-container {
  width: 100%;
  height: 18px;
  background: #dfe6e2;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: #0b5d47;
  border-radius: inherit;
  transition: width 1.2s ease;
}

.progress-text {
  margin-top: 12px;
  text-align: center;
  font-weight: bold;
  color: #4d5a53;
}

/* IMPACT CARDS */

.impact-section {
  background: #eef3f0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.impact-card {
  background: white;
  padding: 28px 20px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.impact-card h3 {
  color: #0b5d47;
  margin-bottom: 10px;
}

.impact-card p {
  color: #68756f;
  font-size: 0.95rem;
}

/* DONATION */

.donation-section {
  background: white;
  text-align: center;
}

.qr-section {
  margin-top: 45px;
}

.qr-section h3 {
  margin-bottom: 18px;
}

.qr-placeholder {
  width: 220px;
  height: 220px;
  margin: 0 auto 18px;
  border: 3px dashed #0b5d47;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #0b5d47;
  background: #f5faf8;
  border-radius: 15px;
}

/* SOCIAL */

.share-section {
  background: #0b5d47;
  color: white;
  text-align: center;
}

.share-section h2 {
  color: white;
}

.share-section > .container > p {
  color: #e1efea;
}

.social-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.social-btn {
  text-decoration: none;
  color: #0b5d47;
  background: white;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
}

/* FOOTER */

footer {
  background: #13211d;
  color: #d7e0dc;
  text-align: center;
  padding: 30px 20px;
}

.demo-note {
  font-size: 0.9rem;
  margin-top: 8px;
  color: #95a39d;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 70px 20px;
  }

  section {
    padding: 55px 0;
  }

  .fundraising-numbers {
    flex-direction: column;
    text-align: center;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .btn-primary {
    width: 100%;
    max-width: 320px;
  }
}
.qr-image {
  width: 220px;
  height: 220px;
  display: block;
  margin: 20px auto;
  background: white;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.campaign-visual {
  background: #0b5d47;
  color: white;
}

.campaign-visual-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.campaign-visual h2 {
  color: white;
  text-align: left;
  font-size: 2.4rem;
}

.campaign-visual p {
  margin-bottom: 25px;
}

.section-label {
  color: #d9a441;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.campaign-image-placeholder {
  min-height: 350px;
  background: #f4efe4;
  color: #0b5d47;
  border-radius: 20px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-weight: bold;
}

@media (max-width: 700px) {
  .campaign-visual-content {
    grid-template-columns: 1fr;
  }

  .campaign-visual h2 {
    text-align: center;
  }
}

/* Display the complete campaign artwork at its original proportions. */
.campaign-image {
  display: block;
  width: 100%;
  min-width: 0;
  height: auto;
  border-radius: 20px;
}
