/* Footer Styles */

.footer {
    background: var(--header-footer-bg);
    color: var(--white);
    padding: 1.75rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Brand bar */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 44px;
    width: auto;
    flex-shrink: 0;
    display: block;
}

.footer-brand-text {
    flex: 1;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent-color);
    font-size: 0.88rem;
    opacity: 0.9;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.social-link {
    color: var(--white);
    opacity: 0.6;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.social-link:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Nav columns */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.35rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.75;
    display: inline-block;
    transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateX(4px);
}

/* Contact items */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.75;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.875rem 0;
    font-size: 0.78rem;
    opacity: 0.45;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-brand {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 560px) {
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 380px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}
