/* ============================================
   FOOTER STYLES - Light Theme Only
   ============================================ */

/* Push footer to bottom of page */
html, body {
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
}

.site-footer {
  margin-top: auto; /* This pushes footer to bottom */
  background-color: #f8f9fa;
  padding: 60px 80px 30px 80px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  border-top: 1px solid #e9ecef;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

/* ============================================
   Left Section: Brand
   ============================================ */

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 24px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #374151;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: #111827;
}

/* ============================================
   Right Section: Link Columns
   ============================================ */

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column {
  min-width: 120px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  letter-spacing: -0.2px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 14px;
}

.footer-list li:last-child {
  margin-bottom: 0;
}

.footer-list a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: #111827;
}

/* ============================================
   Bottom Bar
   ============================================ */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 50px auto 0 auto;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.footer-copyright {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  font-size: 13px;
  color: #6b7280;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #111827;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 900px) {
  .site-footer {
    padding: 48px 40px 24px 40px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links {
    gap: 48px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 40px 24px 20px 24px;
  }

  .footer-links {
    gap: 32px;
  }

  .footer-column {
    min-width: 100px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}
