/**
 * Footer Branding Styles
 * Styles for logo and site name in footer
 */

/* Footer Branding (Logo + Site Name) */
.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
       display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    max-height: 80px;
    width: auto;
    display: block;
}

.footer-site-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: inherit;
}

/* Footer contact links (phone / email) */
.footer-contact-link {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    gap: 6px;
}
.footer-contact-link:hover {
    opacity: 0.8;
}
.footer-company-name,
.footer-email {
    margin: 4px 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .footer-logo img {
        max-height: 60px;
    }

    .footer-site-name {
        font-size: 16px;
    }
}