/* ============================================================
   FOOTER CSS - VINED
   ============================================================ */
.site-footer {
    background-color: #000000;
    padding: 64px 0 24px 0;
    color: #FFFFFF;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    gap: 40px; /* Space between the two columns */
    padding: 0 48px;
}

/* 20% Column */
.footer-brand {
    flex: 0 0 20%;
    max-width: 20%;
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    width: 260px;
    height: auto; /* Maintain aspect ratio based on width */
    max-width: 100%;
}

/* 80% Column */
.footer-contact-wrapper {
    flex: 0 0 80%;
    max-width: 80%;
}

.footer-title {
    font-family: 'Public Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-contact li img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.footer-contact li p,
.footer-contact li a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
    margin: 0; /* Remove default margins */
    display: flex;
    align-items: center; /* vertical-align: middle essentially */
    min-height: 32px; /* to match icon height */
}

.footer-contact a:hover {
    color: #AC7D24;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    text-align: center;
    margin: 0 48px;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-align: center;
}

/* Mobile specific styling */
@media (max-width: 991px) {
    .site-footer {
        padding: 48px 0 24px 0;
    }

    .footer-top {
        flex-direction: column;
        align-items: stretch;
        gap: 36px;
        padding: 0 20px;
        margin-bottom: 36px;
    }

    .footer-brand {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .footer-logo {
        display: inline-block;
        margin: 0 auto;
    }

    .footer-logo img {
        width: 210px;
        max-width: 80%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .footer-contact-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .footer-title {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: left;
    }

    .footer-contact li {
        gap: 14px;
        margin-bottom: 16px;
        width: 100%;
        align-items: flex-start;
    }

    .footer-contact li img {
        width: 24px;
        height: 24px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .footer-contact li p,
    .footer-contact li a {
        font-size: 15px;
        line-height: 1.6;
        width: 100%;
        max-width: 100%;
        min-height: auto;
    }

    .footer-bottom {
        margin: 0 20px;
        padding-top: 20px;
    }
}

@media (max-width: 575px) {
    .footer-top {
        padding: 0 16px;
        gap: 32px;
    }

    .footer-logo img {
        width: 180px;
    }

    .footer-bottom {
        margin: 0 16px;
    }
}

