/* ============================================
   FOOTER SECTION - DESKTOP FIRST (Original Style)
   ============================================ */

footer {
    background:
        linear-gradient(to top, rgba(36, 28, 20, 0) 60%, var(--mainbg) 100%),
        url(../images/footerbackground.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 30vw;
    width: 100%;
    background-color: #241c14;
    display: block;
    margin: 0;
    padding: 0;
}

.footer {
    background: transparent;
    font-family: var(--pixelfont);
    text-align: center;
    display: block;
}

.footer h3 {
    color: lightblue;
    font-size: 3.5vw;
    margin-bottom: 0.5vw;
    text-shadow: 0 0 10px black;
    transition: ease 500ms;
    padding-top: 5vw;
}

.footer h3:hover {
    color: var(--maincolor);
    letter-spacing: 1vw;
    font-size: 4vw;
}

.footer h4 {
    color: gray;
    font-size: 1.3vw;
    text-shadow: 0 0 5px black;
    transition: ease 500ms;
    margin-top: -0.5vw;
}

.footer h4:hover {
    color: aliceblue;
}

.footer p {
    color: gray;
    font-size: 1vw;
    text-shadow: 0 0 5px black;
    transition: ease 500ms;
    margin-top: -0.5vw;
}

.footer p:hover {
    color: aliceblue;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    footer {
        height: auto !important;
        min-height: 350px !important;
        padding: 50px 20px 50px 20px !important;
        display: block !important;
        visibility: visible !important;
        background-color: #241c14 !important;
        margin: 0 !important;
        margin-top: 50px !important;
        width: 100% !important;
        clear: both !important;
    }

    .footer {
        display: block !important;
        visibility: visible !important;
        padding: 20px 10px !important;
        margin: 0 !important;
    }

    .footer h3 {
        font-size: 7vw !important;
        padding-top: 40px !important;
        margin-bottom: 15px !important;
        color: lightblue !important;
        display: block !important;
    }

    .footer h3:hover {
        letter-spacing: 0.5vw;
        font-size: 7.5vw;
    }

    .footer h4 {
        font-size: 4vw !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
        color: gray !important;
        display: block !important;
    }

    .footer p {
        font-size: 3.5vw !important;
        margin-top: 10px !important;
        padding-bottom: 30px !important;
        color: gray !important;
        display: block !important;
    }
}
