/* ============================================
   Footer Section
   ============================================ */

.site-footer {
  width: 100%;
  /*background-color: #111111;*/
  color: #ffffff;
  padding: 4rem 6rem ;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
  /*margin-top: 0;*/
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.footer-container {
  width: 100%;
  /*max-width: 1440px;*/
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Footer Top */
.footer-top {
  display: flex;
  flex-direction: row;
  /*justify-content: space-between;*/
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 13rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 445px;
}

.brand-logo img {
  width: 100px;
  height: auto;
}

.brand-description {
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 0;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
}

.brand-tagline {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.75rem 0 0 0;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
}

.footer-nav {
  min-width: 150px;
}

.footer-nav h3 a {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  font-size: 1.3em;
  margin: 0;
  padding-bottom: 15px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  font-size: 1.1em;
  color: #ffffff;
  font-weight: 500;
  font-family: 'Satoshi', sans-serif;
  text-decoration: none;
}

.footer-nav a:hover {
  opacity: 0.7;
}

/* Footer Divider */
.footer-divider {
  width: 100%;
  padding-top: 6rem;
}


.footer-divider::after {
  content: '';
  position: absolute;
  /*top: 15.5rem;*/
  /*left: 25%;*/
  right: 0;
  height: 0.05rem;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(107, 75, 138, 0.07) 0%,
    rgba(255, 255, 255, 0.31) 50%,
    rgba(107, 75, 138, 0.07) 100%
  );
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.25rem;
}

.copyright {
  font-size: 0.875rem;
  color: #8b8b8b;
  font-family: 'Satoshi', sans-serif;
}

.legal-links {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
}

.legal-links a {
  font-size: 0.875rem;
  color: #8b8b8b;
  font-family: 'Satoshi', sans-serif;
  text-decoration: none;
}

.legal-links a:hover {
  opacity: 0.7;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 1.5rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2.5rem;
  }

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

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2rem;
  }

  .legal-links {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 2.5rem 1rem;
  }

  .brand-description {
    font-size: 1rem;
  }

  .brand-tagline {
    font-size: 1.1rem;
  }

  .footer-nav a {
    font-size: 0.95rem;
  }

  .legal-links {
    gap: 0.875rem;
  }
}
