/* Footer styles matching the provided design */
.site-footer {
  background-color: #500617; /* maroon */
  color: #fff;
  margin-top: auto;
}

.site-footer__main {
  padding: 3rem 0 2rem;
}

.site-footer__inner {
  max-width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.site-footer__left {
  flex: 0 0 auto;
}

.site-footer__branding {
  margin-bottom: 2rem;
}

.site-footer__branding .site-logo {
  display: block;
}

.site-footer__branding .site-logo img,
.site-footer__logo {
  height: 60px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* Make logo white */
}

.site-footer__site-name {
  color: #fff;
}

.site-footer__site-name-main {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  line-height: 1.2;
}

.site-footer__site-name-sub {
  font-size: 1rem;
  font-weight: normal;
  display: block;
  line-height: 1.2;
}

.site-footer__heading {
  color: #FDB71A;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.site-footer__phone {
  color: #fff;
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.site-footer__phone:last-child {
  margin-bottom: 1.5rem;
}

.site-footer__phone a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__phone a:hover {
  color: #ffd166;
}

.site-footer__social {
  display: flex;
  gap: 1rem;
}

/*
.site-footer__social-link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s;
}

.site-footer__social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.site-footer__social-icon {
  font-size: 0.875rem;
  font-weight: bold;
}
*/

.site-footer__social-icon {
  &:hover {
    svg {
      path {
        fill:#FDB618;
      }
    }
  }
}


.site-footer__right {
  flex: 1;
  justify-items: right;
}

.site-footer__nav {
  display: flex;
  gap: 3rem;
}

.site-footer__nav-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.site-footer__nav-link:hover {
  color: #ffd166;
}

.site-footer__separator {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0;
}

.site-footer__bottom {
  padding: 1.5rem 0 4rem 0;
}

.site-footer__bottom-inner {
  max-width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.site-footer__copyright {
  color: #fff;
  font-size: 0.875rem;
}

.site-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.site-footer__legal-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.site-footer__legal-link:hover {
  color: #ffd166;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column;
    gap: 2rem;
  }
  
  .site-footer__nav {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .site-footer__bottom-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    align-items: flex-start;
  }

  .site-footer__right {
    justify-items: flex-start;
  }

  .site-footer__heading {
    font-family: Gelasio, sans-serif;
    font-size: 1.375rem;
  }

  .site-footer__phone,
  .site-footer__nav-link,
  .site-footer__legal-link {
    font-size: .875rem;
    font-weight: 700;
  }

  .site-footer__copyright {
    order: 1;
    width: 100%;
    text-align: center;
  }

  .site-footer__legal {
    flex-direction: column;
    text-align: left;
  }

  .site-footer__separator {
    height: 2px;
    background-color: #B40015;
  }
}
