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

:root {
  --bg-primary: #1e1e2e;
  --bg-secondary: #313244;
  --text-primary: #cdd6f4;
  --accent-yellow: #f9e2af;
  --accent-blue: #89b4fa;
  --accent-teal: #94e2d5;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}

.nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--bg-primary);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-yellow);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}
html {
  scroll-behavior: smooth;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent-yellow);
}

.nav-cta {
  background-color: var(--accent-blue);
  color: var(--bg-primary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s;
}

.nav-cta:hover {
  transform: scale(1.05);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-yellow);
  position: relative;
  transition: background 0.2s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--accent-yellow);
  transition: transform 0.2s;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  bottom: -6px;
}

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-btn.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

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

.header {
  background-color: var(--bg-secondary);
  padding: 5rem 2rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.header-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.highlight {
  background-color: var(--accent-yellow);
  color: var(--bg-primary);
  border-radius: 15px;
  transform: rotate(-5deg);
  padding: 0.2em 0.4em;
  display: inline-block;
  text-decoration: underline;
}

a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-decoration-color: var(--accent-teal);
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: var(--accent-blue);
  color: var(--bg-primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.cta-button:hover {
  transform: scale(1.05);
}

.cta-button:active {
  transform: scale(0.95);
}

.why-donate {
  padding: 4rem 0;
}

.why-donate-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-donate-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--accent-yellow);
}

.why-donate-content {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.why-donate-image {
  border-radius: 15px;
  overflow: hidden;
}

.why-donate-image img {
  width: 100%;
  height: auto;
  display: block;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.stat-item {
  background-color: #181825;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
}

.donation-process {
  padding: 4rem 0;
  background-color: var(--bg-secondary);
}

.process-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  color: var(--accent-yellow);
  margin-bottom: 3rem;
}

.process-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  background-color: #181825;
  padding: 2rem;
  border-radius: 8px;
  width: 300px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step h3 {
  color: var(--accent-blue);
  font-size: 1.5rem;
  font-weight: 700;
}

.process-step p {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.6;
}

.process-arrow {
  position: relative;
  width: 100px;
  height: 4px;
}

.arrow-line {
  width: 100%;
  height: 100%;
  background-color: var(--accent-yellow);
  position: relative;
}

.arrow-line::after {
  content: "";
  position: absolute;
  right: -10px;
  top: -8px;
  border-left: 12px solid var(--accent-yellow);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.truck {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 24px;
}

@media (max-width: 768px) {
  .why-donate-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .header {
    padding: 3rem 1rem;
  }

  .header-title {
    font-size: 2.5rem;
  }

  .why-donate {
    padding: 3rem 1rem;
  }
  .process-container {
    flex-direction: column;
    gap: 2rem;
  }

  .process-step {
    width: 100%;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
  .guidelines-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .accepted-items,
  .condition-requirements {
    padding: 1.5rem;
  }

  .accepted-items h3,
  .condition-requirements h3 {
    font-size: 1.5rem;
  }

  .accepted-items ul {
    padding-left: 1rem;
  }

  .accepted-items li,
  .condition-requirements p {
    font-size: 1rem;
  }
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
  }
}

.guidelines {
  padding: 4rem 0;
  background-color: var(--bg-primary);
}

.guidelines-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  color: var(--accent-yellow);
  margin-bottom: 2rem;
}

.guidelines-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.accepted-items,
.condition-requirements {
  background-color: #181825;
  padding: 2rem;
  border-radius: 8px;
}

.accepted-items h3,
.condition-requirements h3 {
  color: var(--accent-blue);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.accepted-items ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.accepted-items li {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.condition-requirements p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.cta {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 2rem;
}
