/* ============================================================
   FOOTER STYLES
   Buz Software master template — footer.css
   Gradient: warm parchment (light ? mid-tone base)
   Primary text:   #3a2e1e  (deep warm brown)
   Secondary text: #6b6560  (slate grey-brown)
   ============================================================ */


/* ?? Outer shell ?? */

.footer {
    background: linear-gradient(
        180deg,
        #f9f7f2 0%,
        #f2ede3 35%,
        #e8e0d0 70%,
        #ddd4c0 100%
    );
    border-top: 1px solid #cfc4ad;
    color: #3a2e1e;
    font-size: 14px;
    line-height: 1.6;
}


/* ?? Main content row ?? */

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 0 32px;
    border-bottom: 1px solid #cfc4ad;
}


/* ?? Contact block ?? */

.footer-contact {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item strong {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b6560;
    margin-bottom: 3px;
}

.contact-item span {
    color: #3a2e1e;
    font-size: 13px;
    line-height: 1.6;
}

.contact-item a {
    color: #3a2e1e;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
    color: #1f1710;
}


/* ?? Quick links ?? */

.footer-links {
    flex: 1 1 160px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-links ul li a {
    color: #3a2e1e;
    font-size: 13px;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: #1f1710;
    text-decoration: underline;
}


/* ?? Social icons ?? */

.footer-social {
    flex: 0 1 auto;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #bfb4a0;
    color: #3a2e1e;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
}

.social-links a:hover {
    background-color: rgba(0, 0, 0, 0.07);
    border-color: #9a8e78;
}


/* ?? Bottom bar ?? */

.footer-bottom {
    background: rgba(0, 0, 0, 0.04);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 28px;
    width: auto;
    opacity: 0.75;
}

.footer-logo span {
    font-size: 12px;
    color: #6b6560;
}

.copyright {
    font-size: 11px;
    color: #6b6560;
}

.copyright a {
    color: #6b6560;
    text-decoration: none;
}

.copyright a:hover {
    color: #3a2e1e;
    text-decoration: underline;
}


/* ?? Responsive ?? */

@media (max-width: 768px) {

    .footer-main {
        gap: 28px;
        padding: 28px 0 24px;
    }

    .footer-contact {
        flex: 1 1 100%;
    }

    .footer-links {
        flex: 1 1 140px;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {

    .footer-main {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links,
    .footer-social {
        flex: 1 1 100%;
    }
} 