/* ================= GLOBAL ================= */
:root {
  --navbar-height: 90px;
}

body {
  background-color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  padding-top: var(--navbar-height);
}

/* ================= NAVBAR ================= */
.navbar-brand:hover {
  opacity: 0.9;
  transform: scale(1.02);
  transition: 0.2s ease-in-out;
}

.nav-link {
  color: #212529 !important;
  font-weight: 500;
  padding: 8px 15px !important;
  border-radius: 8px;
  transition: 0.25s;
}

.nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000 !important;
}

/* ================= MOBILE NAVBAR ================= */
@media (max-width: 768px) {

  body {
    padding-top: 75px;
  }

  /* HEADER PUTIH */
  .navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  /* TEKS BRAND */
  .navbar-brand span {
    color: #212529 !important;
    font-weight: 600;
  }

  /* TEKS MENU */
  .navbar-nav .nav-link {
    color: #212529 !important; /* DARK */
    font-weight: 500;
  }

  /* HOVER MENU */
  .navbar-nav .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000000 !important;
  }

  /* ICON TOGGLER */
  .navbar-toggler {
    border: none;
  }

  .navbar-toggler-icon {
    filter: invert(0); /* icon tetap dark */
  }

}

/* ===== SLIDER FULL WIDTH ===== */

/* gambar slider */
.slider-full .slider-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8; /* biar mentok */
}

/* tablet */
@media (max-width: 992px) {
  .slider-full .slider-img {
    height: 300px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .slider-full {
    margin-top: 0;
  }
  .slider-full .slider-img {
    height: 220px;
  }
}

/* ===== INFO VISI MISI ===== */
.hero-info {
  padding: 60px 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 40px;
}

/* IMAGE */
.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 280px;
  max-width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* CONTENT */
.hero-content h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.badge {
  display: inline-block;
  background: #f6b100;
  color: #003366;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

.btn-primary {
  display: inline-block;
  background: #0066cc;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .hero-content h1 {
    font-size: 26px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image img {
    width: 200px;
    margin-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .btn-primary {
    padding: 10px 20px;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .hero-image img {
    width: 180px;
  }

  .hero-content h1 {
    font-size: 22px;
  }
}

/* ================= TEXT EFFECT ================= */
.text-gradient {
  background: linear-gradient(90deg, #b30000, #ff3333);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.text-animate {
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.text-shadow {
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}


footer {
background-color: #495057 !important;
}
    .logo-bulat {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 10px;
    }

    .content-section {
      background-color: #fff;
      padding: 2rem;
      border-radius: 10px;
      margin-bottom: 2rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    footer h6,
    footer p,
    footer a,
    footer i {
      color: #ffffff !important;
    }

    footer iframe {
      border-radius: 8px;
    }

    .social-icon i {
      transition: transform 0.3s ease;
    }

    .social-icon i:hover {
      transform: scale(1.2);
    }

    .carousel img {
      height: 300px;
      object-fit: cover;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .carousel img {
        height: 200px;
      }
    }

    /* FOOTER KHUSUS MOBILE */
@media (max-width: 768px) {
  footer {
    background-color: #495057 !important; /* abu-abu */
  }

  footer h6,
  footer p,
  footer a,
  footer i {
    color: #ffffff !important;
  }
}

.donasi-section {
  background: linear-gradient(135deg, #f9f9f9, #eef4ff);
  padding: 60px 20px;
}

.donasi-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* gambar lebih kecil */
  gap: 40px;
  align-items: center;
}

/* GAMBAR DIPERKECIL */
.donasi-image {
  text-align: center;
}

.donasi-image img {
  width: 80%;
  max-width: 320px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.donasi-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #0d6efd;
}

.donasi-text {
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.donasi-box {
  background: #ffffff;
  border-left: 6px solid #0d6efd;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 22px;
  box-shadow: 0 8px 25px rgba(0,0,0,.12);
}

.donasi-box span {
  font-size: 14px;
  color: #6c757d;
}

.donasi-box h3 {
  margin: 6px 0;
  font-size: 20px;
  font-weight: 600;
}

.donasi-box .rek {
  font-size: 24px;
  font-weight: bold;
  color: #0d6efd;
  letter-spacing: 1px;
}


/* TOMBOL WHATSAPP */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .donasi-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .donasi-image img {
    width: 65%;
  }

  .donasi-box {
    border-left: none;
    border-top: 6px solid #0d6efd;
  }

  .btn-wa {
    justify-content: center;
  }
}
