@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Ubuntu Color Palette */
:root {
  --red: #C62828;
  --black: #1B1B1B;
  --green: #2E7D32;
  --white: #ffffff;
  --paypal-blue: #003087;
}

/* Base Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-weight: 400;
}

/* Navigation Bar */
.navbar {
  background-color: var(--red);
  padding: 10px 20px;
  text-align: center;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  margin: 0 10px;
  display: inline-block;
}

.nav-link:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background-color: var(--black);
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.intro {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Explore Section */
.explore {
  padding: 40px 20px;
  background-color: var(--green);
  color: var(--white);
  text-align: center;
}

.explore h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.explore-list {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  text-align: left;
}

.explore-list li {
  margin: 12px 0;
}

.explore-list a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  display: block;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: background 0.3s;
}

.explore-list a:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Donate Section */
.donate-section {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--red);
  color: var(--white);
}

.donate-section h2 {
  font-size: 24px;
  font-weight: 700;
}

.donate-section p {
  max-width: 600px;
  margin: 10px auto;
  font-size: 16px;
}

.mpesa-green {
  color: #25D366; /* WhatsApp green (used for MPesa number text) */
}

/* PayPal Button */
.paypal-button {
  background-color: var(--paypal-blue);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  margin-top: 10px;
}

.paypal-button img {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

/* Linktree Section */
.linktree-section {
  padding: 30px 20px;
  background-color: var(--black);
  text-align: center;
  color: var(--white);
}

.linktree-section a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
}

.linktree-section a:hover {
  text-decoration: underline;
}

/* Mobile Responsive Styles */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 18px;
  }

  .nav-link {
    display: block;
    margin: 8px 0;
  }

  .paypal-button {
    flex-direction: row;
    justify-content: center;
  }
}
