/* ==== Marquee ==== */
.footer-marquee {
    position: relative;
    overflow: hidden;
    background: var(--accent);
    color: var(--on-accent);
    padding: 0.8rem 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
    z-index: 1;
    transform: rotate(-1deg);
}
@media screen and (max-width: 768px) {
    .footer-marquee {
        font-size: 1.1rem;
    }
}
.footer-marquee::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../img/association-theme-graffiti-bg.png');
  background-image: url('../../img/association-theme-graffiti-bg.webp');
  background-size: cover; 
  background-position: center;
  opacity: .15;
  z-index: -1;
  pointer-events: none;
}


.footer-marquee__inner {
    display: flex;
    width: max-content;
    animation: marquee var(--marquee-speed, 25s) linear infinite;
}

.footer-marquee__inner span {
    padding: 0 2rem;
    white-space: nowrap;
}


@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==== Footer ==== */
.main-footer {
    position: relative;
    background: var(--foreground-100);
    color: var(--foreground-0);
    padding: 5rem 1rem 2rem;
    margin-top: -2rem;
}

.footer__container {
    max-width: var(--inner-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    border-bottom: 1px solid var(--foreground-70);
    padding-bottom: 2rem;
}

.footer__logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer__logo-link:hover img {
    transform: scale(1.05);
}

.footer__top_wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.footer__menus {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-menu__list,
.footer-social__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: .6rem 1.2rem;
}
@media screen and (max-width: 500px) {
    .footer-menu__list,
    .footer-social__list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.footer-menu__list a {
    color: var(--foreground-0);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-menu__list a:hover {
    text-decoration: underline;
}

.footer-social__list i {
    margin-right: .5rem;
}

.footer-social__list a:hover span {
    text-decoration: underline;
}

.footer-social__list a:hover i {
    text-decoration: none;
}

.footer__bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.footer__copy {
    color: var(--foreground-25);
    text-decoration: none;
    margin-left: 0.5rem;
}

