/* Layout */
.site-footer {
  background: #0b5966;
  color: #e3f2f4;
  padding: 0;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

/* Logo with hover effect */
.footer-logo-contact {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 200px;
}
.footer-logo a {
  position: relative;
  display: block;
  margin-bottom: 0.5rem;
  max-width: 180px;
}
.footer-logo a:hover img {
  opacity: 0;
}
.footer-logo a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://vga.virginia.gov/wp-content/themes/vga/images/vga-logomark.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.footer-logo a:hover::before {
  opacity: 1;
}
.footer-logo img {
  display: block;
  max-width: 180px;
  transition: opacity 0.2s ease;
}

/* Contact Information */
.footer-visit-contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-visit-contact a {
  color: #e3f2f4;
}

/* Footer Menu */
.footer-heading {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: #b6e0e3;
  margin-bottom: 0.4rem;
  display: inline-block;
}
.footer-links {
  flex: 1;
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
}
.footer-column {
  flex: 1;
  min-width: 0;
}
.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-column li {
  margin-bottom: 0.5rem;
}
.footer-column a {
  color: #e3f2f4;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-column a:hover {
  color: #b6e0e3;
  text-decoration: underline;
}

/* Legal links and Copyright Notice */
.footer-bottom {
  border-top: 2px solid #33818b;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #b6e0e3;
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
}
.footer-bottom-links a {
  color: #b6e0e3;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: #e3f2f4;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 1080px) {
  /* Layout */
  .site-footer {
  }
  .footer-container {
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    padding: 2rem 1rem 1rem 1rem;
  }

  /* Logo, Address and Contact Information */
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  .footer-logo-contact {
    gap: 1rem;
    flex: 1 1 100%;
    width: 100%;
  }
  .footer-visit-contact {
    flex-direction: row;
    gap: 2rem;
    padding: 1rem;
    text-align: center;
    justify-content: space-between;
  }
  .footer-visit-contact > div {
    flex: 1;
  }

  /* Footer Menu */
  .footer-links {
    justify-content: flex-start;
    gap: 2rem;
    display: none;
  }

  /* Legal links and Copyright Notice */
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1rem 0.5rem 1rem;
    text-align: center;
    width: 100%;
  }
  .footer-copyright {
    text-align: center;
    order: 2;
  }
  .footer-bottom-links {
    text-align: center;
    order: 1;
  }
}
