/* ===== Light Footer Styles ===== */
.footer {
    margin-top: 30px;
    background-color: #fff;
    color: #333;
    padding: 3rem 1.5rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    border-top: 1px solid #e0e0e0;
}

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

/* ===== Footer Sections ===== */
.footer-section {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #111;
    border-bottom: 2px solid #ffc107;
    display: inline-block;
    padding-bottom: 0.3rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-links p {
    margin-bottom: 0.6rem;
    color: #555;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

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

/* ===== Social Links ===== */
.social-links a {
    margin-right: 0.75rem;
    color: #444;
    font-size: 1.2rem;
    transition: transform 0.2s, color 0.2s;
}

.social-links a:hover {
    color: #ffc107;
    transform: scale(1.1);
}

/* ===== Bottom Footer ===== */
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #777;
}

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

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .social-links a {
        font-size: 1.4rem;
    }
}
