/* Site developed and built by sitethreesixty.com */
/* https://www.sitethreesixty.com */

/* ==========================================================================
   FOOTER COMPONENT
   Site footer styles.
   ========================================================================== */

.site-footer {
  background-color: var(--color-neutral-900);
  color: var(--text-inverse);
  padding: var(--space-12) 0 var(--space-6);
}

/* --------------------------------------------------------------------------
   FOOTER CONTENT
   -------------------------------------------------------------------------- */

.footer__content {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* --------------------------------------------------------------------------
   FOOTER BRAND
   -------------------------------------------------------------------------- */

.footer__logo {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-inverse) !important;
  text-decoration: none;
}

.footer__logo:hover {
  color: var(--text-inverse) !important;
}

.footer__text {
  color: var(--color-neutral-400);
  max-width: 400px;
  margin-top: var(--space-4);
}

/* --------------------------------------------------------------------------
   FOOTER NAVIGATION
   -------------------------------------------------------------------------- */

.footer__heading {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-4);
  color: var(--text-inverse);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__link {
  color: var(--color-neutral-400);
  text-decoration: none;
  transition: var(--transition-colors);
}

.footer__link:hover {
  color: var(--text-inverse);
}

/* --------------------------------------------------------------------------
   FOOTER BOTTOM
   -------------------------------------------------------------------------- */

.footer__bottom {
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-neutral-800);
  text-align: center;
  color: var(--color-neutral-500);
  font-size: var(--text-sm);
}

.footer__bottom a {
  color: var(--color-neutral-400);
  text-decoration: underline;
}

.footer__bottom a:hover {
  color: var(--text-inverse);
}

/* Footer Attribution */
.footer__attribution {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-neutral-500);
}

.footer__attribution a {
  color: var(--color-neutral-400);
  text-decoration: underline;
}

.footer__attribution a:hover {
  color: var(--text-inverse);
}

/* Site developed and built by sitethreesixty.com */
/* https://www.sitethreesixty.com */
