@import url("fontsheet.css");

:root{
    --main-font: 'Poppins', sans-serif;
    --logo-font: 'Style Script', cursive;
    --bg-color: #171717; 
    --bg-second-color: #292929;
    --contrast-color: orange;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    font-family: var(--main-font);
}

body{
    background-color: var(--bg-color);
    min-height: 100vH;
    width: 100%;
    color: #fff;
}

a{
    text-decoration: none;
    color: #fff;
}

/* ALLGEMEIN */

.simple_button{
    user-select: none;
    padding: 0.5rem 2rem;
    margin: 2rem 0;
    border: 1px solid var(--contrast-color);
    cursor: pointer;
    transition: border-radius 0.3s, padding 0.3s;
}

    .simple_button:hover{
        border-radius: 2rem;
        padding: 0.5rem 4rem;
    }


.black-gray{
    height: 3rem;
    width: 100%;
    background: linear-gradient(to bottom, black, var(--bg-color));
}


.cookie-banner{
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    border-radius: 20px;
    padding: 1rem;
    background: #282828;
    width: 400px;
    color: #636363;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .cookie-banner img{
        width: 80%;
    }

    .cookie-banner .header{
        font-size: 1.3rem;
        font-weight: 700;
        color: #fff;
        margin: 1rem 0 0.5rem 0;
    }

    .cookie-banner .accept_cookie_btn{
        padding: 0.5rem;
        border: 1px solid var(--contrast-color);
        margin: 0.5rem;
        font-family: var(--main-font);
        color: var(--contrast-color);
        background: transparent;
        cursor: pointer;
    }

    .cookie-banner .more_cookie{
        font-weight: 300;
        text-decoration: underline;
        color: #b3b3b3;
    }

.hidden{
    display: none;
}


/* NAVIGATION */
header{
    z-index: 100;
    width: 100%;
    background: linear-gradient(to bottom, var(--bg-second-color), rgba(0, 0, 0, 0));
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: 0;
    top: 0;
}

    header .logo{
        font-size: 2rem;
        font-weight: 700;
        font-family: var(--logo-font);
        color: var(--contrast-color);
        text-align: center;
    }

    header ul li{
        list-style: none;
        display: inline-block;
        margin: 0 .5rem;
        border-bottom: 1px solid transparent;
        transition: border-bottom 0.3s ease-in-out;
    }

        header ul li:hover{
            border-bottom: 1px solid #fff;
        }

/* LANDING COVER  */
.cover{
    height: 100vH;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../graphics/index/landing_cover.webp);
    background-size: cover;
    background-position: center;
}


    .cover .slogan{
        font-weight: 100;
        font-size: 4rem;
    }

    .cover .subslogan{
        font-weight: 200;
        font-size: 1.5rem;
    }


/* FOOTER */
footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

    footer .logo{
        font-size: 2rem;
        font-weight: 700;
        font-family: var(--logo-font);
        color:#636363;
        text-align: center;
        user-select: none;
    }

        footer ul li{
            list-style: none;
            display: inline-block;
            margin: 0 0.5rem;
            color: #636363
        }




@media only screen and (max-width: 900px){
    .cover .slogan{
        font-size: 3rem;
    }
}

@media only screen and (max-width: 800px){
    .cover .slogan{
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 700px){
    .cover .slogan{
        font-size: 1.6rem;
    }

    .cover .subslogan{
        font-size: 1.2rem;
    }

    header .logo{
        font-size: 1.4rem;
    }

    footer .logo{
        font-size: 1.4rem;
    }

    .cookie-banner{
        position: fixed;
        bottom: 1rem;
        left: 5%;
        border-radius: 20px;
        padding: 1rem;
        background: #282828;
        width: 90%;
        color: #636363;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        transition: display 0.3s ease-in-out;
    }

    .cookie-banner.hidden{
        display: none;
    }
}