@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  --purple-primary: #6B5FFF;
  --purple-light: #9D8FFF;
  --lavender: #E8DEFF;
  --lavender-light: #F5F0FF;
  --yellow-primary: #FFD84D;
  --gold: #FFC947;
  --dark: #1a1a1a;
  --text-dark: #2D2D2D;
  --text-light: #666;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out;
}

.fade-in-delay-1 {
  animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.6s both;
}

.fade-in-delay-3 {
  animation: fadeIn 1s ease-out 0.9s both;
}

/* Typography Accents */
.text-highlight {
  color: var(--purple-primary);
  font-style: italic;
  font-weight: 600;
}

.text-accent {
  color: var(--purple-primary);
  font-style: italic;
  font-weight: 600;
}

.text-accent-light {
  color: var(--yellow-primary);
  font-style: italic;
  font-weight: 600;
}

.text-accent-gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Decorative Elements */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--yellow-primary);
  opacity: 0.4;
  z-index: 1;
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 20px;
  right: 10%;
}

.circle-2 {
  width: 80px;
  height: 80px;
  bottom: 30px;
  left: 8%;
  background: var(--lavender);
}

.decorative-dot {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.dot-1 {
  background: var(--purple-light);
  top: 15%;
  right: 5%;
}

.dot-2 {
  background: var(--yellow-primary);
  bottom: 20%;
  left: 3%;
}

.decorative-blob {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  opacity: 0.15;
  z-index: 1;
}

.aim-blob-1 {
  background: var(--yellow-primary);
  top: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
}

.aim-blob-2 {
  background: rgba(255, 255, 255, 0.2);
  bottom: 15%;
  left: 8%;
  width: 180px;
  height: 180px;
  border-radius: 60% 40% 40% 60% / 50% 60% 40% 50%;
}

.contact-circle-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  background: var(--gold);
}

.contact-circle-2 {
  width: 70px;
  height: 70px;
  bottom: 20%;
  right: 8%;
  background: var(--lavender);
  opacity: 0.5;
}

.wave-divider {
  position: absolute;
  width: 100%;
  height: 80px;
  left: 0;
}

.wave-divider.top {
  top: 0;
}

.wave-divider.bottom {
  bottom: 0;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-light) 100%);
  color: var(--text-dark);
  padding: 2.5rem 0;
  text-align: center;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.logo {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--purple-primary);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  animation: fadeIn 1.2s ease-out;
  position: relative;
  z-index: 10;
}

.tagline {
  font-size: 1.1rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
  animation: fadeIn 1.5s ease-out;
  position: relative;
  z-index: 10;
  font-weight: 500;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--lavender) 100%);
  color: var(--text-dark);
  padding: 7rem 0 10rem;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.blob {
  position: absolute;
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  opacity: 0.2;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--purple-primary);
  top: -50px;
  right: 10%;
  animation: pulse 8s ease-in-out infinite;
}

.blob-2 {
  width: 250px;
  height: 250px;
  background: var(--yellow-primary);
  bottom: -80px;
  left: 5%;
  border-radius: 60% 40% 40% 60% / 50% 60% 40% 50%;
  animation: pulse 6s ease-in-out infinite;
}

.decorative-squiggle {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 20%;
  left: 15%;
  border: 3px dashed var(--purple-light);
  border-radius: 50%;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.highlight {
  font-size: 1.6rem !important;
  font-weight: 600;
  color: var(--text-dark);
  margin: 2rem 0 !important;
}

.highlight em {
  color: var(--purple-primary);
  font-style: italic;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--purple-primary);
  color: white;
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  margin-top: 2rem;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(107, 95, 255, 0.3);
}

.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(107, 95, 255, 0.4);
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

/* Gallery Section */
.gallery {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.gallery h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.gallery-item {
  position: relative;
  transition: all 0.4s ease;
}

.blob-container {
  position: relative;
  padding: 1.5rem;
}

.blob-container.purple .blob-shape {
  background: var(--lavender);
}

.blob-container.yellow .blob-shape {
  background: var(--yellow-primary);
  opacity: 0.4;
}

.blob-container.lavender .blob-shape {
  background: var(--lavender-light);
}

.blob-container.gold .blob-shape {
  background: var(--gold);
  opacity: 0.4;
}

.blob-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  z-index: 1;
}

.gallery-item img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

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

.gallery-label {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Problem Section */
.problem {
  background: var(--lavender);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.problem-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.problem-content h3 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.problem-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.citation {
  font-style: italic;
  color: var(--text-light);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  padding: 2.5rem 2rem;
  border-radius: 30px;
  color: var(--text-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-item.purple-card {
  background: var(--purple-primary);
  color: white;
}

.stat-item.yellow-card {
  background: var(--yellow-primary);
}

.stat-item:hover {
  transform: translateY(-8px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 500;
}

/* Aims Section */
.aims {
  background: var(--white);
  color: var(--text-dark);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.aims h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 10;
  font-weight: 700;
}

.aims-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.aim-card {
  padding: 3rem 2.5rem;
  border-radius: 35px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  position: relative;
}

.aim-card.card-purple {
  background: var(--purple-primary);
  color: white;
}

.aim-card.card-yellow {
  background: var(--yellow-primary);
  color: var(--text-dark);
}

.aim-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.aim-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.aim-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.aim-card.card-purple h3 {
  color: white;
}

.aim-card.card-yellow h3 {
  color: var(--text-dark);
}

.aim-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.aim-text strong {
  font-size: 1.3rem;
  font-weight: 800;
}

/* Donation Section */
.donation {
  padding: 8rem 0;
  background: var(--lavender-light);
  position: relative;
  overflow: hidden;
}

.donation h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.donation-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 4rem;
  font-weight: 500;
}

.donation-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.tier {
  padding: 3rem 2rem;
  border-radius: 35px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.tier.tier-lavender {
  background: var(--lavender);
}

.tier.tier-purple {
  background: var(--purple-light);
  color: white;
}

.tier.tier-gold {
  background: var(--gold);
}

.tier.tier-yellow {
  background: var(--yellow-primary);
}

.tier:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.tier.featured {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(255, 201, 71, 0.4);
}

.tier.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.tier-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.tier-amount {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.tier.tier-purple .tier-amount {
  color: white;
}

.tier-impact {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.tier.tier-purple .tier-impact {
  color: white;
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple-primary);
  color: white;
  padding: 0.5rem 1.3rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(107, 95, 255, 0.4);
}

/* Contact Section */
.contact {
  background: var(--dark);
  color: white;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.contact h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  color: white;
  position: relative;
  z-index: 10;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 10;
}

.contact-method {
  padding: 3rem 2.5rem;
  border-radius: 35px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-method.card-lavender {
  background: var(--lavender);
  color: var(--text-dark);
}

.contact-method.card-gold {
  background: var(--gold);
  color: var(--text-dark);
}

.contact-method:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.contact-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.contact-method h3 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.contact-detail {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 1.5rem 0;
  letter-spacing: 0.5px;
}

.contact-name {
  font-size: 1.1rem;
  font-style: italic;
  margin-top: 0.5rem;
  opacity: 0.8;
}

.reference {
  font-size: 1rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

.hashtag {
  text-align: center;
  font-size: 2.3rem;
  color: var(--yellow-primary);
  font-weight: 800;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

/* Footer */
footer {
  background: var(--dark);
  color: #ccc;
  padding: 3rem 0;
  border-top: 4px solid var(--purple-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
  align-items: center;
}

.footer-logo h3 {
  color: var(--purple-light);
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.footer-logo p {
  font-style: italic;
  color: #999;
  font-size: 0.95rem;
}

.footer-mission p {
  margin: 0.5rem 0;
  color: #aaa;
}

.footer-year {
  font-size: 0.9rem;
  color: #888;
  margin-top: 1rem !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .tagline {
    font-size: 1rem;
  }

  .decorative-circle,
  .decorative-blob,
  .decorative-dot {
    display: none;
  }

  .hero {
    padding: 5rem 0 8rem;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .highlight {
    font-size: 1.4rem !important;
  }

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

  .gallery h2,
  .aims h2,
  .donation h2,
  .contact h2 {
    font-size: 2.2rem;
  }

  .section-subtitle,
  .donation-subtitle {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .blob-container {
    padding: 1rem;
  }

  .gallery-item img {
    height: 240px;
  }

  .problem {
    padding: 5rem 0;
  }

  .problem-content h3 {
    font-size: 2rem;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .aims {
    padding: 5rem 0;
  }

  .aims-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .aim-card {
    padding: 2.5rem 2rem;
  }

  .donation {
    padding: 5rem 0;
  }

  .donation-tiers {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tier {
    padding: 2.5rem 2rem;
  }

  .tier.featured {
    transform: scale(1);
  }

  .tier.featured:hover {
    transform: scale(1.02) translateY(-8px);
  }

  .tier-icon {
    font-size: 2.5rem;
  }

  .tier-amount {
    font-size: 2.5rem;
  }

  .contact {
    padding: 5rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-method {
    padding: 2.5rem 2rem;
  }

  .contact-detail {
    font-size: 1.6rem;
  }

  .hashtag {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .wave-divider {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .gallery h2,
  .aims h2,
  .donation h2,
  .contact h2 {
    font-size: 1.9rem;
  }

  .gallery-item img {
    height: 200px;
  }

  .problem-content h3 {
    font-size: 1.7rem;
  }

  .problem-content p {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .tier-amount {
    font-size: 2.2rem;
  }

  .contact-detail {
    font-size: 1.4rem;
  }

  .hashtag {
    font-size: 1.7rem;
  }
}
