/* Footer Styles matching Figma Prototype */

.site-footer {
  background-color: #FFFFFF;
  padding: 80px 0 40px;
  border-top: 1px solid #F0F0F0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 60px;
}

.footer-brand {
  flex-shrink: 0;
}

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

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-main);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #555555;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-accent-orange);
  transform: translateX(2px);
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid #F4F4F4;
}

.copyright-text {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #888888;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 50px 0 30px;
  }
  .footer-top {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer-nav-groups {
    gap: 40px;
    flex-wrap: wrap;
  }
}
