/* ==========================================================
   OLD WAYS LIVING
   Footer
========================================================== */

.owl-footer {
    background: #3f4a3c;
    color: #f5f2ea;
    margin-top: 60px;
    font-size: 16px;
    line-height: 1.8;
}

.owl-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 40px 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.owl-footer-column h3 {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 600;
    color: #f5f2ea;
}

.owl-footer-column h4 {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 600;
    color: #d7c9aa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.owl-footer-column p {
    margin: 0;
    color: rgba(245, 242, 234, 0.85);
}

.owl-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.owl-footer-column li {
    margin-bottom: 10px;
}

.owl-footer-column a {
    color: rgba(245, 242, 234, 0.88);
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.owl-footer-column a:hover {
    color: #d7c9aa;
    padding-left: 4px;
}


/* ==========================================
   Social Links
========================================== */

.owl-footer-social {
    margin-top: 20px;
}

.owl-footer-social a {
    display: inline-block;
    margin-bottom: 10px;
}


/* ==========================================
   Footer Logo
========================================== */

.owl-footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.owl-footer-logo img {
    width: 120px;
    height: auto;
    display: block;
}


/* ==========================================
   Footer Bottom
========================================== */

.owl-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    padding: 24px 20px;
}

.owl-footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(245, 242, 234, 0.75);
}


/* ==========================================
   Footer Credit
========================================== */

.owl-footer-credit {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(245, 242, 234, 0.65);
}

.owl-footer-credit a {
    color: #d7c9aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.owl-footer-credit a:hover {
    color: #ffffff;
}


/* ==========================================
   Tablet
========================================== */

@media (max-width: 1024px) {

    .owl-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

}


/* ==========================================
   Mobile
========================================== */

@media (max-width: 768px) {

    .owl-footer {
        text-align: center;
    }

    .owl-footer-container {
        grid-template-columns: 1fr;
        padding: 50px 25px;
        gap: 35px;
    }

    .owl-footer-column a:hover {
        padding-left: 0;
    }

}