﻿.footer {
    background: #090909;
    border-top: 1px solid rgba(177,18,38,.25);
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 45px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.footer-logo {
    width: 340px;
    margin-bottom: 45px;
    filter: drop-shadow(0 0 8px rgba(177,18,38,.35)) drop-shadow(0 0 25px rgba(177,18,38,.15));
    transition: .35s;
    
 
}

    .footer-logo:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 0 15px rgba(177,18,38,.55)) drop-shadow(0 0 45px rgba(177,18,38,.30));
    }



.footer-links {
    display: flex;
    gap: 55px;
    margin-bottom: 40px;
}

    .footer-links a {
        color: #d8d8d8;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 14px;
        font-weight: 600;
    }

        .footer-links a:hover {
            color: #b11226;
        }

.footer-social {
    display: flex;
    gap: 30px;
}

    .footer-social a {
        color: #dcdcdc;
        font-size: 34px;
        transition: .3s;
    }

        .footer-social a:hover {
            color: #b11226;
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px;
    text-align: center;
    color: #888;
}



@media(max-width:768px) {

    .footer-logo {
        width: 180px;
    }

    .footer-links {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .footer-social a {
        font-size: 28px;
    }
}
