@import url("https://fonts.googleapis.com/css2?family=Abel&family=Abhaya+Libre&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abel&display=swap");

/* Colors */
:root {
  --primary: #006838; /* Deep Green */
  --secondary: #fbb040; /* Golden Yellow */
  --accent: #007acc; /* Fresh Blue */
  --neutral-dark: #1c1c1c;
  --neutral-light: #f8f9fa;
}

/* Base */
body {
  font-family: "Abel", sans-serif;
  background-color: var(--neutral-light);
  color: var(--neutral-dark);
  line-height: 1.6;
}

/* Headings & Navbar */
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.hero-overlay h1,
.hero-overlay h4 {
  font-family: "League Spartan", sans-serif;
  font-weight: 600; /* bold for impact */
}

.nav-link {
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 400;
}

#nav2 {
  position: sticky;
  top: 0;
  z-index: 1030;
  /* higher than cards */
}

/* Change nav-pills from primary to success */
.nav-pills .nav-link.active {
  background-color: #198754 !important;
  color: #fff !important;
  /* Bootstrap success */
}

.nav-pills .nav-link {
  color: #198754 !important;
}

.download-card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.search-bar {
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.section-title {
  margin: 40px 0 20px;
  text-align: center;
  font-weight: 700;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: white;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.download-title {
  margin: 40px 0 20px;
  text-align: center;
  font-weight: 700;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-circle i {
  font-size: 1.3rem;
}

.text-justify {
  text-align: justify !important;
}

.custom-image {
  width: 70% !important;
}

.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  /* padding: 15px; */
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.2s ease-in-out;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}
