/* =========================================
   WHATSUPGRAZ SOCIAL FOOTER
========================================= */


#social-container {
    width: 900px;
    max-width: 95%;
    margin: 40px auto 0;
}

.social-footer {
    width: 100%;
    max-width: 900px;
    margin: 35px auto 25px;
    padding: 28px 25px;

    box-sizing: border-box;

    background:
        linear-gradient(
            rgba(5, 6, 12, 0.96),
            rgba(5, 6, 12, 0.96)
        );

    border: 2px solid #2b2b2b;
    border-top: 3px solid #f5c542;
    border-bottom: 3px solid #f5c542;

    box-shadow:
        0 0 20px rgba(0, 0, 0, 0.8),
        inset 0 0 25px rgba(0, 0, 0, 0.8);

    text-align: center;

    font-family: "Courier New", monospace;
}


/* =========================================
   TITEL
========================================= */

.social-title {
    color: #f5c542;

    font-size: 20px;
    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 22px;

    text-transform: uppercase;
}


/* =========================================
   SOCIAL BUTTONS
========================================= */

.social-links {
    display: flex;

    justify-content: center;
    align-items: stretch;

    gap: 15px;

    flex-wrap: nowrap;
}


.social-links a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 180px;
height: 48px;

    padding: 12px 18px;

    box-sizing: border-box;

    background: #0d0d12;

    border: 1px solid #555;

    color: #f5c542;

    text-decoration: none;

    font-size: 16px;
    font-weight: bold;

    letter-spacing: 1px;

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


/* =========================================
   HOVER
========================================= */

.social-links a:hover {
    color: #ffffff;

    border-color: #f5c542;

    background: #17130a;

    transform: translateY(-3px);

    box-shadow:
        0 0 12px rgba(245, 197, 66, 0.25);
}


/* =========================================
   UNTERE ZEILE
========================================= */

.social-bottom {
    margin-top: 22px;

    padding-top: 15px;

    border-top: 1px solid #292929;

    color: #777;

    font-size: 13px;

    letter-spacing: 1px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .social-footer {
        width: 94%;

        margin: 25px auto 20px;

        padding: 22px 12px;
    }


    .social-title {
        font-size: 16px;

        letter-spacing: 2px;

        margin-bottom: 18px;
    }


    .social-links {
    display: flex;
    gap: 8px;
    width: 100%;
    flex-wrap: nowrap;
}

.social-links a {
    width: auto;
    min-width: 0;
    flex: 1;
    height: 50px;
    padding: 8px 5px;
    font-size: 13px;
}


    .social-bottom {
        font-size: 11px;

        line-height: 1.5;
    }

}