﻿/* === FOOTER BASE === */
.footer {
    background-color: #3D3D98;
    color: #ffffff;
    padding: 60px 0 30px 0;
}

/* === LOGO === */
.footer-logo {
    height: 40px;
    margin-bottom: 25px;
}

/* === TITLES === */
.footer-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 15px;
    color:white;
}

/* === TEXT === */
.footer-text {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* === SOCIAL ICONS === */
.footer-social a {
    color: #ffffff;
    font-size: 18px;
    margin-right: 12px;
    transition: color 0.3s ease;
}

    .footer-social a:hover {
        color: #B8B8E9;
    }

/* === LINKS === */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

    .footer-links a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #B8B8E9;
        }

/* === DIVIDER === */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.3);
    margin: 40px 0 20px 0;
}

/* === BOTTOM BAR === */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #dddddd;
}

@media (min-width: 576px) {
    .footer-bottom {
        flex-direction: row;
    }
}
