/* ============================================
   FOOTER COMPONENT STYLES
   ============================================ */

/* Main footer container */
.app-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
    padding: 40px 20px 24px;
    margin-top: auto;
    font-family: 'Nunito', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Footer top section with logo and links */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

/* Footer brand/logo section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    font-size: 1.4em;
    font-weight: bold;
    color: #F7E226;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-logo:hover {
    color: #e6c200;
    text-decoration: none;
}

.footer-tagline {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

/* Footer links section */
.footer-links {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-title {
    font-size: 0.85em;
    font-weight: bold;
    color: #40403e;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 4px 0;
}

.footer-link {
    color: #555;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    color: #F7E226;
    text-decoration: none;
}

.footer-link i {
    font-size: 0.9em;
    width: 16px;
}

/* Footer bottom section with copyright */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.85em;
    color: #888;
    margin: 0;
}

.footer-copyright a {
    color: #F7E226;
    text-decoration: none;
    font-weight: 600;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Social links */
.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    color: #555;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: #F7E226;
    color: #40403e;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .app-footer {
        padding: 32px 16px 20px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        justify-content: center;
        gap: 32px;
    }

    .footer-links-column {
        align-items: center;
    }

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

/* Mobile */
@media (max-width: 480px) {
    .app-footer {
        padding: 24px 12px 16px;
    }

    .footer-logo {
        font-size: 1.2em;
    }

    .footer-tagline {
        font-size: 0.85em;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-link {
        font-size: 0.9em;
    }

    .footer-copyright {
        font-size: 0.8em;
    }

    .footer-social-link {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .footer-links {
        gap: 16px;
    }

    .footer-social {
        gap: 12px;
    }
}
