/* GOOGLE FONTS: --------------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* GENERAL: --------------------------------------------------------------------------------------- */

:root {
    --glass-bg: rgba(20, 26, 32, 0.55);
    /* dunkles Glas */
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --glass-blur: 10px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif !important;
}

body {
    background-color: black !important;
}

.header-logo {
    width: 100px;
    height: auto;
}

/* Background im Body */
.header-vip {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)), url(../images/community_race_image_berlin.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.header-inner {
    min-height: 60vh;
}

.social-btn{
    border: 1px solid rgba(255,255,255,0.14) !important;
    background: rgba(255,255,255,0.06) !important;
    color: #e9eef3 !important;
    text-decoration: none !important;
    transition: transform .15s ease, background .15s ease, border-color .15s ease !important;
}

.social-btn:hover{
    transform: translateY(-2px) !important;
    background: rgba(255,255,255,0.10) !important;
    border-color: rgba(255,255,255,0.22) !important;
    color: #fff !important;
}

.benefits-card {
    width: 100%;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 20px;
}

/* MEDIAQUERY: --------------------------------------------------------------------------------------- */

@media (min-width: 700px) {
    main, footer {
        width: 70%;
        margin: 20px auto;
    }

    .header-vip {
        border-radius: 20px 20px 0 0;
    }
}

@media (min-width: 850px) {
    main, footer {
        width: 50%;
        margin: 20px auto;
    }

    .header-vip {
        border-radius: 20px 20px 0 0;
    }
}