/* =========================
   FOOTER STYLES (Typography-aligned)
   ========================= */

.site-footer {
  background-color: var(--color-heading);
  color: #fff;
  padding: clamp(2.5rem, 4vw, 4rem) clamp(3rem, 5vw, 5rem) clamp(1.5rem, 3vw, 2rem);
  font-family: 'Assistant', sans-serif;
  line-height: var(--lh-normal);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

/* Section Headings */
.site-footer h4 {
  font-size: var(--font-md);
  font-weight: var(--fw-semibold);
  margin-bottom: 1rem;
  color: var(--color-accent);
  line-height: var(--lh-tight);
}

/* Body text inside footer */
.site-footer p,
.site-footer li,
.site-footer a,
.site-footer span {
  font-size: var(--font-base);
  font-weight: var(--fw-light);
  color: #fff;
  line-height: var(--lh-normal);
}

/* Social Icons */
.footer-social .social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social img {
  width: clamp(24px, 3vw, 32px);
  height: clamp(24px, 3vw, 32px);
  filter: brightness(0) invert(1);
  transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
}

.footer-social img:hover {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
  box-shadow: 0 0 10px var(--color-accent);
}

/* Contact Info */
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.footer-contact img {
  width: 28px; /* increased from 22px */
  height: 28px;
  margin-right: 0.75rem;
  filter: brightness(0) invert(1);
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

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

/* Footer Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-accent);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: clamp(2rem, 4vw, 2.5rem);
  padding-top: 1rem;
  text-align: center;
  font-size: var(--font-sm);
  opacity: 0.8;
}

/* =========================
   COOKIE BANNER STYLES
   ========================= */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  background: #04218B;
  color: #fff;
  
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

  padding: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Assistant', sans-serif;
  font-size: var(--font-sm);
  line-height: var(--lh-normal);
  z-index: 2000;
  gap: 1rem;
}

#cookieBanner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: #fff;
}

#cookieBanner a {
  color: var(--color-accent);
  text-decoration: underline;
  font-weight: var(--fw-semibold);
}

#cookieBanner a:hover {
  color: #fff;
  text-decoration: none;
}

#acceptCookies {
  background: var(--color-accent);
  color: #04218B;
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: var(--font-sm);
  font-weight: var(--fw-semibold);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#acceptCookies:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* Mobile refinement */
@media (max-width: 600px) {
  #cookieBanner {
    flex-direction: column;
    text-align: center;
  }

  #acceptCookies {
    width: 100%;
    margin-top: 0.5rem;
  }
}
