/* Footer Component Styles */

.footer {
    padding: 4rem 4rem;
    background-color: #fafafa;
    /* Faint grey */
    /* Subtle separator */
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    /* Split left and right */
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

/* Left Side */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #555;
    font-weight: normal;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #333;
}

/* Right Side */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Align to right edge */
    gap: 0.5rem;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #555;
    margin: 0 0 0.5rem 0;
    /* Match logo margin-bottom */
    font-weight: normal;
}

.footer-email {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #999;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 2rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-right {
        align-items: flex-start;
        /* Left align on mobile */
    }
}