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

:root {
  --red:    #E63946;
  --yellow: #FFD60A;
  --blue:   #1D6FA4;
  --sky:    #A8DADC;
  --cream:  #FFF8F0;
  --green:  #52B788;
  --dark:   #1a1a2e;
  --track:  #e0e0e0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── ROAD STRIPE ── */
.road-stripe {
  height: 12px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0px, var(--yellow) 40px,
    transparent 40px, transparent 80px
  ), var(--dark);
}

/* ── NAV ── */
nav {
  background: var(--dark);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem;
  color: var(--yellow);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.nav-logo img {
  height: 4.4rem;
  width: auto;
  object-fit: contain;
}
.nav-logo span { color: white; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-donate {
  background: var(--red);
  color: white !important;
  padding: 0.5rem 2.4rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-donate:hover { background: #c0303a !important; transform: scale(1.05); }

/* ── HERO ── */
.hero {
  background: var(--blue);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,214,10,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(230,57,70,0.10) 0%, transparent 50%);
  pointer-events: none;
}

/* Animated road at bottom */
.hero-road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  background: #222;
  display: flex;
  align-items: center;
}
.hero-road::before {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  height: 6px;
  width: 200%;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0px, var(--yellow) 60px,
    transparent 60px, transparent 120px
  );
  animation: roadMove 1.5s linear infinite;
}
@keyframes roadMove {
  from { transform: translateY(-50%) translateX(0); }
  to   { transform: translateY(-50%) translateX(-120px); }
}

/* Animated car on road */
.hero-car {
  position: absolute;
  bottom: 20px;
  font-size: 3rem;
  animation: carDrive 6s linear infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
  transform: scaleX(-1);
}
@keyframes carDrive {
  from { left: -80px; }
  to   { left: 110%; }
}

.hero-text {
  padding: 4rem 3rem 10rem 4rem;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(3rem, 5vw, 5.5rem);
  color: white;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}
.hero-sub {
  color: var(--sky);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.btn-primary { background: var(--red); color: white; }
.btn-secondary { background: white; color: var(--blue); }

.hero-visual {
  padding: 2rem 4rem 10rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 2;
}
.hero-cars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  max-width: 340px;
}
.car-chip {
  background: white;
  border-radius: 16px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s;
  animation: carBounce 3s ease-in-out infinite;
}
.car-chip:nth-child(2) { animation-delay: 0.3s; }
.car-chip:nth-child(3) { animation-delay: 0.6s; }
.car-chip:nth-child(4) { animation-delay: 0.9s; }
.car-chip:nth-child(5) { animation-delay: 1.2s; }
.car-chip:nth-child(6) { animation-delay: 1.5s; }
.car-chip:nth-child(7) { animation-delay: 1.8s; }
.car-chip:nth-child(8) { animation-delay: 2.1s; }
@keyframes carBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.cup-display {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
}
.cup-display span:first-child { font-size: 2.5rem; }

/* ── MISSION STRIP ── */
.mission-strip {
  background: var(--yellow);
  padding: 1.2rem 2rem;
  text-align: center;
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--dark);
  letter-spacing: 0.02em;
}

/* ── SECTIONS ── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 1rem;
}
.section-sub {
  text-align: center;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.step {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.step-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}
.step-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--dark);
}
.step p { color: #666; line-height: 1.6; font-size: 0.95rem; }

/* ── IMPACT ── */
.impact-section {
  background: var(--dark);
  color: white;
  padding: 6rem 2rem;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.impact-card {
  text-align: center;
  padding: 2rem 1rem;
}
.impact-num {
  font-family: 'Fredoka One', cursive;
  font-size: 3.5rem;
  color: var(--yellow);
  display: block;
}
.impact-origin-note {
  text-align: center;
  color: var(--sky);
  font-size: 1rem;
  font-style: italic;
  margin-top: 2.5rem;
  opacity: 0.8;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.impact-label {
  font-size: 1rem;
  color: var(--sky);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── DONATE ── */
.donate-section {
  padding: 6rem 2rem;
  background: var(--cream);
}
.donate-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 32px;
  padding: 3rem 3.5rem;
  box-shadow: 0 10px 60px rgba(0,0,0,0.1);
}
.donate-container h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.donate-container p {
  text-align: center;
  color: #888;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.zeffy-embed {
  width: 100%;
  min-height: 700px;
  border: none;
  border-radius: 16px;
  margin-bottom: 0.5rem;
}

/* ── ABOUT ── */
.about-section {
  background: linear-gradient(135deg, var(--sky) 0%, #e8f4f8 100%);
  padding: 6rem 2rem;
}
.about-inner {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.about-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.about-icon-wrap .big-icon {
  font-size: 8rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
  animation: carBounce 4s ease-in-out infinite;
}
.about-icon-wrap .cups-row {
  display: flex; gap: 0.5rem; font-size: 2rem;
}
.about-text h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--dark);
}
.about-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.about-text strong { color: var(--blue); }

/* ── WISHLIST ── */
.wishlist-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #fffbef 0%, var(--cream) 100%);
  border-top: 4px solid var(--yellow);
}
.wishlist-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  background: white;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border-left: 6px solid var(--yellow);
}
.wishlist-icon {
  font-size: 6rem;
  line-height: 1;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.1));
  animation: carBounce 4s ease-in-out infinite;
}
.wishlist-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.wishlist-content h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.7rem;
}
.wishlist-content p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 400;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wishlist-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,214,10,0.45);
}
.wishlist-footnote {
  margin-top: 0.9rem !important;
  font-size: 0.82rem !important;
  color: #aaa !important;
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .wishlist-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .wishlist-icon-col { display: flex; justify-content: center; }
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #aaa;
  padding: 3rem 2rem;
  text-align: center;
}
footer .footer-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
footer .footer-logo img {
  height: 2.4rem;
  width: auto;
  object-fit: contain;
}
footer p { font-size: 0.9rem; line-height: 1.8; }
footer a { color: var(--sky); text-decoration: none; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.charity-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  margin-top: 1rem;
}

/* ── NAV TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 3rem 1.5rem 6rem; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-icon-wrap { flex-direction: row; justify-content: center; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-container { padding: 2rem 1.5rem; }
  .section { padding: 4rem 1.5rem; }
  .impact-section { padding: 4rem 1.5rem; }
  .about-section { padding: 4rem 1.5rem; }
  .donate-section { padding: 4rem 1.5rem; }
  .wishlist-section { padding: 3rem 1.5rem; }
  .mission-strip { font-size: 1rem; padding: 1rem 1.5rem; }
  .footer-links { gap: 1rem; }

  nav {
    padding: 0 1rem;
    flex-wrap: wrap;
    position: relative;
  }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { list-style: none; }
  .nav-links a { font-size: 1rem; padding: 0.6rem 0; display: block; }
  .nav-donate { display: inline-block !important; margin-top: 0.5rem; }
}
