/* ------------------------- FOOTER ------------------------- */

.footer {
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.95rem;
    margin-top: 60px;
    padding: 40px 20px 20px 20px;
}

.footer-bottom {
    color: #aaa;
    font-size: 0.8rem;
    margin-top: 20px;
    text-align: center;
}

.footer-content {
    border-bottom: 1px solid var(--primary-color);
    border-top: 1px solid var(--primary-color);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin: 0 auto;
    padding-bottom: 20px;
    padding-top: 20px;
}

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

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* ------------------------- MEDIA QUERIES <=1000px ------------------------- */

@media (max-width: 1000px) {

    header {
        padding: 100px 20px;
        text-align: center;
    }

    header h1 {
        font-size: 10vw;
        margin-top: 0;
    }

    header h2 {
        font-size: 1.3rem;
    }
}
