/* =====================
   FOOTER CSS
   Footer Styles
   ===================== */

.footer {
    background-color: #F6F3EF;
    padding: 100px 50px 50px 50px !important;
}

.footer-wrap {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    padding-bottom: 60px;
    align-items: flex-start;
}

.footer-logo-text {
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: 1.2rem;
    color: #000;
    letter-spacing: -0.5px;
}

.footer-logo-col p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 20px;
    font-family: var(--font-third);
    color: #888175;
}

.footer-logo-col {
    flex: 3;
}

/* Footer Logo Sizing */
.footer-logo-col img {
    max-width: 130px;
    /* Adjust to match live site */
    height: auto;
}

.footer-links-col {
    flex: 1;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav li {
    width: 100%;
    line-height: 16px;
}

.footer-nav a {
    display: inline-block;
    line-height: 16px;
    color: #888175;
    font-size: 1rem;
    font-family: var(--font-third);
    font-weight: 400;
}

.footer-nav a:hover {
    color: var(--color-primary);
}

.footer-contact-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-col p,
.footer-contact-col p a {
    font-size: 1rem;
    line-height: 16px;
    color: #888175;
}

.footer-contact-col p a:hover {
    color: var(--color-primary);
}

/* Copyright */
.copy-right {
    border-top: 1px solid #E5E5E5;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #999;
}

.copy-left {
    display: flex;
    gap: 20px;
}

.copy-left p {
    color: rgba(103, 88, 59, 0.63);
    font-size: 15px;
    line-height: 15px;
    font-family: var(--font-third);
    font-weight: 400;
}

.copy-right-links {
    display: flex;
    gap: 20px;
}

.copy-right-links a {
    color: rgba(103, 88, 59, 0.63);
    font-size: 15px;
    line-height: 15px;
    font-family: var(--font-third);
    font-weight: 400;
}

.copy-right-links a:hover {
    color: var(--color-primary);
}

/* =====================
   FOOTER RESPONSIVE
   ===================== */
@media (max-width: 991px) {
    .footer-wrap {
        flex-direction: row;
        gap: 40px;
    }

    .footer-contact-col {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .copy-right {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .copy-left,
    .copy-right-links {
        justify-content: center;
    }

    .footer {
        background-color: #F6F3EF;
        padding: 80px 30px 30px 30px !important;
    }

    /* Mobile menu logo - can be slightly smaller */
    .footer-logo-col img {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .footer-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .footer-contact-col {
        text-align: left;
    }
}