/* File: styles/footer.css */

.footer {
    background-color: #28293E; /* Dark background */
    padding: 2rem;
    color: #fff;
    font-family: 'Epilogue', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 8rem 0 8rem;
}

.footer-left, .footer-middle, .footer-right {
    flex: 1;
}

.footer-title {
    color: #00A9E0;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    margin-top: 3.4rem;
}

.icon {
    margin-right: 1rem;
}

.contact-info .label {
    font-size: 0.875rem;
    color: #00A9E0;
}

.contact-info .value {
    display: block;
    font-size: 0.8rem;
}

.footer-bottom {
    margin: 0 8rem 0 8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.footer-bottom-links li {
    margin: 0;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
}

@media (max-width: 950px) {

    .footer-container {
        margin: 0 2rem 0 2rem;
        gap: 0;
    }

    .footer-left, .footer-middle, .footer-right {
        flex: 1 1 100%;
    }

    .contact-item {
        margin-top: 1.5rem;
    }

    .footer-bottom {
        margin: 0 2rem 0 2rem;
    }

}