.footer {
    background-color: #000000;
    color: var(--bg-white);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.footer-main {
    padding: 60px 0 0px;
    position: relative;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 24px;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--bg-cream);
    margin-bottom: 20px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    font-family: var(--font-editorial);
    font-size: var(--fs-body-sm);
    font-weight: var(--fw-body-regular);
    color: var(--bg-white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--bg-cream);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--bg-cream);
    transform: translateX(5px);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
    justify-content: center;
}

.footer-social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    color: #000000;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: var(--primary-maroon);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(140, 29, 24, 0.3);
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.footer-logo::after {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 60px;
    height: 115px;
    background: #000000;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    left: -1px;
}

.footer-logo::before {
    content: "";
    position: absolute;
    top: -1%;
    right: 25%;
    width: 72px;
    height: 140px;
    background: #ffedcf;
    clip-path: polygon(0 1%, 100% 0, 100% 100%);
    left: -70px;
}

.footer-bottom {
    background-color: #000000;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: var(--fs-body-xs);
    font-weight: var(--fw-body-regular);
    color: var(--bg-white);
    text-align: center;
    margin: 0;
    letter-spacing: 1px;
}

@media (min-width: 1855px) {
    .footer-logo::after {
        content: "";
        position: absolute;
        bottom: -2px;
        width: 63px;
        height: 134px;
        background: #000000;
        clip-path: polygon(0 0, 0% 100%, 100% 100%);
        left: -2px;
    }

    .footer-logo::before {
        content: "";
        position: absolute;
        top: -1%;
        right: 25%;
        height: 61%;
        background: #ffedcf;
        clip-path: polygon(0 1%, 100% 0, 100% 100%);
        left: -58px;
    }
}

@media (max-width: 991px) {
    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-heading {
        font-size: var(--fs-body-sm);
        margin-bottom: 15px;
    }

    .footer-logo-img {
        max-width: 200px;
    }

    .footer-logo::after {
        display: none;
    }

    .footer-logo::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-heading {
        font-size: var(--fs-body-md);
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-link {
        font-size: var(--fs-body-xs);
    }

    .footer-social {
        margin-bottom: 25px;
        gap: 12px;
    }

    .footer-social-link {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .footer-logo-img {
        max-width: 180px;
    }

    .footer-copyright {
        font-size: 0.7rem;
    }
}

@media (max-width: 575px) {
    .footer-main {
        padding: 30px 0 20px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto;
        max-width: 160px;
    }
}

@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: footerFadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.4s;
}

.row {
    --bs-gutter-x: 0rem;
}

.footer {
    background: #000;
    color: #fff;
    overflow: hidden;
}

.footer-left {
    padding: 20px 0px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer-col h5 {
    color: #d6c7ad;
    margin-bottom: 20px;
}

.footer-right {
    background: #d6c7ad;
    position: relative;
}

.footer-right::before {
    content: "";
    position: absolute;
    left: -80px;
    top: 0;
    width: 150px;
    height: 100%;
    background: #d6c7ad;
    transform: skewX(-20deg);
}

.footer-bottom {
    border-top: 1px solid #222;
    font-size: 13px;
}

@media (max-width: 991px) {
    .footer-right::before {
        display: none;
    }

    .footer-right {
        padding: 40px 0;
    }

    .footer-left {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .footer-col {
        margin-bottom: 30px;
    }
}
