/* footer.css - Logos International School Footer Styles */

.lis-footer {
    background-color: #2e73b9;
    /* theme color */
    color: #ffffff;
    padding: 4rem 2rem 2rem 2rem;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 150px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffffff;
    display: inline-block;
    padding-bottom: 0.25rem;
}

.footer-col a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffd700;
}

.footer-col.center {
    text-align: center;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-row a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-row a:hover {
    color: #ffd700;
}

.footer-logo img {
    width: 80px;
    height: auto;
    margin-top: 0.5rem;
}

.footer-copy {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        flex: 1 1 100%;
        text-align: center;
    }
}