/* Footer Component */
.footer {
  background: var(--color-dark, #2e2f3e);
  color: var(--color-white, #ffffff);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 0 0 200px;
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-links-column {
  min-width: 200px;
}

.footer-links-column h5 {
  font-size: var(--font-size-lg, 1.125rem);
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--color-white, #ffffff);
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal, 0.3s ease);
}

.social-icons a:hover {
  background: var(--color-peach, #e27d5a);
  transform: translateY(-3px);
}

.social-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

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

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

.footer-nav a {
  color: var(--color-white, #ffffff);
  text-decoration: none;
  transition: color var(--transition-fast, 0.2s ease);
  font-size: var(--font-size-base, 1rem);
  opacity: 0.8;
}

.footer-nav a:hover {
  color: var(--color-peach, #e27d5a);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.copyright {
  font-size: var(--font-size-sm, 0.875rem);
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    flex-direction: column;
    margin-bottom: 30px;
  }
  
  .footer-logo {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links-column {
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-nav {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 20px;
  }
  
  .footer-logo img {
    max-width: 120px;
  }
  
  .social-icons a {
    width: 36px;
    height: 36px;
  }
  
  .social-icons img {
    width: 18px;
    height: 18px;
  }
}

/* hide any pseudo-element watermarks coming from other CSS */
.footer::before,
.footer::after {
  display: none !important;
}

/* constrain footer imagery */
.footer-logo img {
  height: 48px;
  width: auto;
  display: inline-block;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Fixed social links sizing */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-link {
  display: block;
  width: 24px;
  height: 24px;
}

.social-link img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-link:hover img {
  opacity: 1;
}
