/* Base */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f4f6f8; /* helps floating navbar look truly "floating" */
  padding-top: 120px; /* space for fixed navbar */
}
.nav-link {
  color: black;
}

.nav-link:hover {
  color: #94c044;
}
#langSwitch {
  border: 1px solid black;
  color: #000;
}
#langSwitch:hover {
  background-color: black;
  color: #94c044;
}
/* Floating Navbar */
.floating-navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;

  width: calc(100% - 32px);
  max-width: 1200px;

  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Navbar logo size */
.navbar-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* Keep the first section separated a bit */
.hero-section {
  background: #ffffff;
}

/* Card images consistent */
.card-img-top {
  height: 220px;
  object-fit: cover;
}

/* Contact card */
.contact-card {
  border-left: 5px solid #000;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-item .icon {
  font-size: 24px;
  line-height: 1;
}

.contact-item .label {
  font-size: 13px;
  color: #666;
  margin-bottom: 2px;
}

.contact-item a {
  text-decoration: none;
  color: #000;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Mobile tweaks */
@media (max-width: 991px) {
  body {
    padding-top: 110px;
  }

  .floating-navbar {
    top: 10px;
    width: calc(100% - 20px);
  }
}
/* Social Media Icons */
.social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f1f1;
  color: #000;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #000;
  color: #94c044;
  transform: translateY(-3px);
}
/* Footer */
.footer {
  background: #111;
}

.footer-logo {
  height: 26px;
  width: auto;
}

.footer p {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* Reuse social icons style */
.footer .social-icons a {
  background: #222;
  color: #fff;
}

.footer .social-icons a:hover {
  background: #fff;
  color: #000;
}
#footerCopy {
  color: #fff;
}
#footerDesc {
  color: #fff !important;
}
#footerYear {
  color: #fff;
}
.footerC {
  color: #fff !important;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 30px;
  background: #94c044;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 6px 15px rgba(148, 192, 68, 0.25);
}

.whatsapp-link i {
  font-size: 18px;
  margin-right: 10px; /* replaces gap */
}

.whatsapp-link:hover {
  background: #86b53d;
  box-shadow: 0 8px 20px rgba(148, 192, 68, 0.35);
  transform: translateY(-1px);
}
