/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

a {
  color: #2c5aa0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  font-family: inherit;
}

/* TYPOGRAPHY */
h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a3a5c;
}

h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

h4 {
  font-size: 16px;
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

/* NAVBAR */
nav {
  position: sticky;
  top: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

nav > div {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: #2c5aa0;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.donate-btn {
  background: #ffc107;
  color: #1a3a5c;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
}

.donate-btn:hover {
  background: #ffb300;
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 80px 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* HERO SECTION */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./Bavuke1.png") center/cover;
  color: white;
  text-align: center;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 22px;
  margin: 30px 0;
  opacity: 0.95;
}

.hero-tagline {
  font-size: 16px;
  opacity: 0.85;
  font-style: italic;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ffc107;
  color: #1a3a5c;
  padding: 16px 45px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 16px 45px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
}

.btn-primary:hover,
.btn-secondary:hover {
  opacity: 0.9;
}

/* SECTION STYLES */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.yellow-line {
  display: inline-block;
  height: 4px;
  background: #ffc107;
  width: 60px;
  margin: 15px auto 30px;
}

.bg-light {
  background: #f5f5f5;
}

.bg-blue {
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3a5c 100%);
  color: white;
}

.bg-blue h2,
.bg-blue h3,
.bg-blue h4 {
  color: white;
}

/* CARDS */
.card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.card-icon,
.card > .fa {
  font-size: 50px;
  margin-bottom: 20px;
  color: #013585;

  line-height: 1;
  display: inline-block;
}

.card-icon i {
  font-size: inherit;
  line-height: 1;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.pillar-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.mission-box {
  background: #2c5aa0;
  color: white;
  padding: 30px;
  border-radius: 8px;
  margin-top: 25px;
}

.mission-box p {
  margin: 0;
}

.vision-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.vision-placeholder {
  background: linear-gradient(135deg, #e8f0f7 0%, #f0f4f9 100%);
  padding: 10px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  color: #999;
  font-size: 14px;
}
.vision-placeholder img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* STATISTICS */
.stat {
  text-align: center;
  margin: 30px 0;
}

.stat-number {
  font-size: 54px;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 12px;
}

.stat p {
  font-size: 16px;
  opacity: 0.9;
}

/* TESTIMONIALS */
.testimonial {
  border-left: 6px solid #ffc107;
}

.testimonial p:first-child {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-name {
  font-weight: 700;
  color: #2c5aa0;
  margin-top: 12px !important;
  margin-bottom: 8px !important;
}

.testimonial-role {
  font-size: 13px;
  color: #999;
  margin: 0 !important;
}

/* CTA CARDS */
.cta-card {
  text-align: center;
  border-top: 6px solid #2c5aa0;
}

.cta-card:nth-child(2) {
  border-top-color: #4caf50;
}

.cta-card:nth-child(3) {
  border-top-color: #ff9800;
}

.cta-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-link {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 15px;
  text-decoration: none;
  color: white;
}

.donate-link {
  background: #ffc107;
  color: #1a3a5c;
}

.volunteer-link {
  background: #4caf50;
}

.partner-link {
  background: #ff9800;
}

.cta-link:hover {
  opacity: 0.9;
}

/* CONTACT SECTION */
.contact-box {
  background: white;
  color: #333;
  padding: 40px;
  border-radius: 12px;
}

.bg-blue .contact-box {
  background: white;
  color: #333;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h4 {
  color: #2c5aa0;
  margin-bottom: 12px;
}

.contact-item p,
.contact-item a {
  font-size: 14px;
}

/* CONTACT FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input,
textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

input:focus,
textarea:focus {
  border-color: #2c5aa0;
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
  outline: none;
}

.form-submit {
  background: #2c5aa0;
  color: white;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-submit:hover {
  background: #1f4577;
}

/* FOOTER */
footer {
  background: #1a3a5c;
  color: white;
  padding: 60px 40px 30px;
}

footer h3,
footer h4 {
  color: white;
  margin-bottom: 15px;
}

footer p {
  font-size: 14px;
  opacity: 0.85;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 8px;
}

footer a {
  color: #ffc107;
  opacity: 0.8;
  font-size: 14px;
}

footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  nav > div {
    flex-direction: column;
    height: auto;
    padding: 15px 40px;
    gap: 15px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  section {
    padding: 40px 20px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .hero {
    min-height: 500px;
    padding: 80px 20px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
