footer {
    position: relative;
    background: #000;
    background: #2a0005;

    #smoke {
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        mix-blend-mode: darken;
       mix-blend-mode: hard-light;
    }
}

@media only screen and(max-width: 980px) {
    footer {

    }  
}

footer {
    background-color: #000;
    color: #fff;
    padding: 6rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 1px;
    background: linear-gradient(to right, var(--site-primary), transparent);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c10119;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    border: 1px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 11px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #c10119;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-carousel {
    background-image: url(img/plaque.jpg);
    background-color: var(--site-primary);
    display: flex;
    gap: 50px;
    padding: 70px 0px;

    background-color: #d5aab0;
    background-blend-mode: color-burn;

    overflow: hidden;
    white-space: nowrap;
    position: relative;

    transition: all 0.3s;

    background-position: top;
    animation: backgroundPosition 10s linear infinite;

    .slide {
        display: inline-flex;
        align-items: center;
        gap: 70px;
        animation: 12s scroll infinite linear;
    }

    .slide:first-child {
        margin-right: 30px;
    }

    span {
        color: #fff;
        font-size: 80px;
        font-weight: 700;
        text-transform: uppercase;
        font-family: var(--font-heading);
    }
}

/* Define the animation */
@keyframes backgroundPosition {
  0% {
    background-position: top;
  }
  
  100% {
    background-position: bottom;
  }
}


@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
