

/* Footer */
footer {
    width: 100%;
    padding: 2rem 1rem;
    background: #220041; /* Blue background */
    color: white;
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.footer-container {
    width: 85%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* TOP SECTION: LINKS LEFT + SOCIAL RIGHT */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Links */
.extra-pages {
    display: flex;
    gap: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

.footer-link {
    color: #ffffff;
    opacity: 0.85;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: 0.25s;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Right Social Links */
.all-social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: 0.25s;
}

.social-link i {
    font-size: 1.1rem;
}

.social-link:hover {
    opacity: 0.8;
}

/* COPYRIGHT */
.footer-text {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.75;
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .footer-top {
        flex-direction: column;
        gap: 1.2rem;
    }
}
