/* static/css/main.css */
@import url("css/base.css");
@import url("css/layout.css");
@import url("css/nav.css");
@import url("css/auth.css");
@import url("css/contact.css");
@import url("css/home.css");
@import url("css/services.css");
@import url("css/about.css");
@import url("css/error.css");
@import url("css/page.css");



header {
  position: relative;
  z-index: 10;
}

.hero {
  margin-top: -1px; /* hides 1px border line if any */
}

/* --- FOOTER LOGO --- */
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.8rem;
}

.footer-logo img {
  width: 80px;   /* matches your actual logo size */
  height: 80px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-logo img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* --- FOOTER LINKS --- */
.footer-links {
  text-align: center;
  margin: 2rem 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 2.5rem; /* space between links */
}

.footer-links li {
  display: inline;
}

.footer-links a {
  position: relative;
  color: #d0d0d0;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: color 0.25s ease;
}

/* underline animation */
.footer-links a::after {
  content: "";
  position: absolute;
  width: 0;
  left: 0;
  bottom: -4px;
  height: 2px;
  background-color: #4b1489; /* accent color */
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a:hover::after {
  width: 100%;
}

/* small screens */
@media (max-width: 600px) {
  .footer-links ul {
    flex-direction: column;
    gap: 1rem;
  }
}

