@import url('https://fonts.googleapis.com/css2?family=Fauna+One&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fauna One", sans-serif;
}

/* || VARIABLES */

:root {
    /* FONTS */
    --FF: "Fauna One", san-serif;
    --FF-HEADINGS: "Fauna One", cursive;
    --FS: clamp(1rem, 2.2vh, 1.5rem);

    /* COLORS */
    --BGCOLOR: #c2f1d7;
    --BGCOLOR-FADE: rgb(225, 245, 234);
    --BGIMAGE: linear-gradient(to bottom, var(--BGCOLOR), var(--BGCOLOR-FADE));
    --FONT-COLOR: #000;
    --BORDER-COLOR: #333;
/* || VARIABLEN ENDE */    
}

header{
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 25vh;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 15px 200px;  
    transition: 0.5s ease; 
    border: 0px solid #fff;
}
header img{
    max-width: 200px;
    max-height: 200px;
}
header .brand{
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

header .navigation{
  position: relative;
  
}
header .navigation .navigation-items a{
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}
header .navigation .navigation-items a::before{
    content: "";
    position: absolute;
    background: #fff;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}
header .navigation .navigation-items a:hover::before{
    width: 100%;
}


section{
    padding: 100px 200px;
    padding: 150px 50px;
}



.home{
   position: relative;
   width: 100vw;
   height: 100vh;
   display: flex;
   justify-content: center; 
   flex-direction: column;
   background-image: var(--BGIMAGE);

}

.home::before{
    z-index: 777;
    content: "";
    position: absolute;
    /* background: rgba(109, 161, 240, 0.3);*/
    background: rgba(133, 133, 133, 0.6); 
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.home .content{
    z-index: 888;
    color: #fff;
    width: 80vw;
    margin-top: 10vh;
    display: none;
    border: 0px solid red;
}

.home .content.active{
    display: block;
    border: 0px solid red;
}

.home .content h1{
    font-size: 3.5em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 75px;
    margin-bottom: 40px;
}
.home .content h1 span{
    font-size: 0.65em;
    font-weight: 600;
}
.home .content p{
    margin-bottom: 65px;
    margin-left: 0px;
}
.home .content a{
    background: #fff;
    padding: 15px 35px;
    color: #1680AC;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
}
.home .media-icons{
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;  
}
.home .media-icons a{
    color: #fff;
    font-size: 1.6em;
    transition: 0.3s ease;
}
.home .media-icons a:not(:last-child) {
    margin-bottom: 20px;
}
.home .media-icons a:hover{
    transform: scale(1.5);
}

.home video{
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.slider-navigation{
    z-index: 888;
    position:relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
}
.slider-navigation .nav-btn{
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}
.slider-navigation .nav-btn.active{
    background: #2696e9;
}
.slider-navigation .nav-btn:not(:last-child){
    margin-right: 20px;
}
.slider-navigation .nav-btn:hover{
    transform: scale(1.5);
}

.video-slide{
    position: absolute;
    width: 100vw;
    height: 100vh;
    clip-path: circle(0% at 0 50%);
}
.video-slide.active{
    /* clip-path: circle(100% at 0 45%); 
    clip-path: circle(25% at 0 50%); */
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
}

@media(max-width: 1150px){
    header{
        /* background-color: red; */
        z-index: 999;
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 15vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        transition: 0.5s ease;
    }
    header img{
        max-width: 100px;
        max-height: 100px;
    }
    section{
        padding: 100px 20px;
    }

    .home .content{
        width: 80vw;
        margin-top: 5vh;
        font-size: 0.75em;
    }

    .home .content h1{
        font-size: 2.5em;
    }
    
    .home .content h1 span{
        font-size: 0.5em;
    }
    
    .home .media-icons{
        z-index: 888;
        position: absolute;
        right: 15px;
        display: flex;
        flex-direction: column;
        transition: 0.5s ease;
    }
    header .navigation{
        display: none;
    }
    header .navigation.active{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(1, 1, 1, 0.5);
    }
    header .navigation .navigation-items a{
        color: #222;
        font-size: 1rem;
        margin: 20px;
    }
    header .navigation .navigation-items a::before{
        background: #222;
        background: red;
        height: 2px;
    }
    header .navigation.active .navigation-items{
        background: #fff;
        width: 300px;
        /* max-width: 300px; */
        margin: 20px;
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(1, 1, 1, 0.2);
    }
    

    .menu-btn{
        background: url(../grafik/menu.png)no-repeat;
        background-size: 30px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
        color: #fff;
    }
    .menu-btn.active{
        z-index: 999;
        background: url(../grafik/close.png)no-repeat;
        background-size: 30px;
        background-position: center;
        transition: 0.3 ease;
        color: #fff;
    }
}
@media(max-height: 550px){
    .content h1{
        margin-top: 1rem;
    }
    .content p{
        display: none;
    }
    .slider-navigation{
     border: 0px solid #000;
        padding: 10px;
        margin-bottom: 50px;
    }
}