/* footer.css - Place this file in a /css folder */
/* Base Font Styles */
body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Apply Montserrat to all common text elements */
p, a, span, li, label, input, textarea, button, div {
    font-family: 'Montserrat', sans-serif;
}

/* Header font for all heading elements */
h1, h2, h3, h4, h5, h6,
.header-font {
    font-family: "Inter", sans-serif;
}

/* Ensure header and footer elements use correct fonts */
header,
header *,
footer,
footer * {
    font-family: 'Montserrat', sans-serif;
}

header h1, header h2, header h3, header h4, header h5, header h6,
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    font-family: "Inter", sans-serif;
}

/* Override for specific header/footer class if needed */
.header-font,
header .header-font,
footer .header-font {
    font-family: "Inter", sans-serif;
}
/* Footer */
footer {
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 60px 60px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    justify-content: flex-start;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
    color: #113e62;
    margin: 0 0 4px;
    letter-spacing: 1px;
}

.footer-logo p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #113e62;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact a {
    color: black;
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #113e62;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #113e62;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #113e62;
    color: white;
}

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

.footer-nav a {
    font-size: 14px;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #113e62;
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: #6b7280;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #113e62;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    footer {
        padding: 40px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}