/* Footer base */
.footer {
  background-color: #1D2D22;
  color: #ffffff;
  font-size: 14px;
}

/* Headings */
.footer h2 {
  color: #C18F2D;
  font-size: 20px;
  margin-bottom: 15px;
}

/* Links */
.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #C18F2D;
 
}

/* Contact Info */
.footer li {
  margin-bottom: 8px;
}

/* Bottom border row */
.footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.footer .fw-bold {
  font-weight: 600;
}


/* Scroll to top button */
#scroll-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  background-color: #C18F2D;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease;
  text-decoration: none;
}

/* Hover effect */
#scroll-to-top:hover {
  background-color: #1D2D22;
  color: #fff;
}

/* Optional responsive tweaks for small screens */
@media (max-width: 576px) {
  #scroll-to-top {
    padding: 10px;
    bottom: 15px;
    left: 15px; /* Still on the left side */
  }

  .footer {
    text-align: center;
  }

  .footer h2 {
    margin-top: 20px;
  }

  .footer ul {
    padding-left: 0;
  }
}
