/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
/* ================================
   FOOTER COMPONENT
   Portable footer using tokens
   ================================ */

.footer {
  background: var(--nav-bg);
  padding: 40px 20px 20px;
  margin-top: auto;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}

.footer.section-dark {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-grid {
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.footer h3 {
  color: var(--footer-heading);
  font-size: var(--text-lg);
  margin-bottom: 20px;
}

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

.footer ul li {
  margin-bottom: 12px;
}

.footer ul a {
  color: var(--footer-link);
  font-size: var(--text-base);
}

.footer ul a:hover {
  color: var(--footer-link-hover);
}

.footer-contact p,
.footer-contact a {
  color: var(--footer-text);
  font-size: var(--text-base);
  margin-bottom: 8px;
  display: block;
}

.footer-contact a:hover {
  color: var(--footer-link-hover);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-social a svg {
  width: 48px;
  height: 48px;
}

.footer-social a:hover {
  color: var(--color-orange);
}

.footer-brand p {
  color: var(--footer-text);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand h3,
.footer-col h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--accent-primary);
  margin-bottom: 12px;
}

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

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--text-base);
  transition: all var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-primary);
  padding-left: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
  color: var(--footer-text);
  font-size: var(--text-base);
  margin: 0;
}

.footer-bottom a {
  color: var(--color-text);
}

.footer-bottom__subtext {
  color: var(--footer-text);
  font-size: var(--text-xs);
}

/* Mobile Adjustments */
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-brand h3,
  .footer-col h3 {
    font-size: var(--text-2xl);
  }

  .footer h3 {
    font-size: var(--text-2xl);
  }

  .footer-brand p {
    font-size: var(--text-xl);
  }

  .footer-col a {
    font-size: var(--text-2xl);
  }

  .footer ul a {
    font-size: var(--text-xl);
  }

  .footer-contact p,
  .footer-contact a {
    font-size: var(--text-xl);
  }

  .footer-social {
    justify-content: center;
  }

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

  .footer-bottom p {
    font-size: var(--text-lg);
  }

  .footer-bottom__subtext {
    font-size: var(--text-base);
  }
}

/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
