/* ALLGEMEIN ////////////////////////////////////////////////////////////////////////// */

/*media max-width 650, 550 (1050, 950, 850, 750, 350) */

/*
*{  
    border: 0.5px solid red; 
} 
*/

/*NORMALIZE*/
* {
    padding: 0;
    margin: 0;
    font-style: normal;
}
a{
    color: black;
    text-decoration: none;
}
a:hover{
    color: #AAF2D4;
}
*:focus:not(:focus-visible) {
    outline: none
}
*:focus-visible {
    outline: 2px solid #FAFF00;
}
::-moz-selection {
    background:#FAFF00;
    color: #000;
}
::selection {
    background:#FAFF00;
    color: #000;
}
ul{
    padding-left: 0;
}
li{
    list-style-type: none;
    display: inline;
}
figure{
    margin: 0;
    padding: 0;
}


.displaynone{
    display: none;
}



/*GENERAL //////////////////////////////////////////////////////////////////////////////*/
html {
    scroll-behavior: smooth;
}
body{
    background-color: #FCFAF8;
    font-family: 'Archivo', Arial, Helvetica, sans-serif;
    font-weight: 300;
    line-height: 1.35;
    margin: 0;
}
.disable-scroll{
    overflow-y: hidden;
}
.basis{
    max-width: 1100px;
    margin: auto;
    padding: 0 40px;
}
@media screen and (max-width: 650px) {
    .basis{ 
        padding: 0 30px;      
    }
}


.slanted{
    transform: skewY(-2deg);  
}
.slanted-back {
    transform: skewY(2deg);
}   
.colorbg {
    background-color: #AAF2D4;
}
.whitebg {
    background-color: #FCFAF8;
}




p{
    margin-bottom: 1em;
}

h1{
    font-size: 1.7em;
    font-weight: 300;
    padding-bottom: 1em;
}
h3{
    font-weight: 800;
    font-size: 1.2em;
}
h4{
    font-size: 0.8em;
    font-weight: 300;
    text-transform: uppercase;
}
strong{
    font-weight: 800;
}
em{    
    font-style: normal;
}




/* HEADER ///////////////////////////////////////////////////////////////////////////////// */

header{
    position: fixed;
    z-index: 50;
    top: 0;
    width: 100%;
    height: 48px;
    background-color: #fff; 
        /* x, y wert, blur, farbe */
    box-shadow: 0px 3px 5px rgba(88, 88, 88, 0.2);

        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
header .basis{
    position: relative;
    height: 56px;

        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#logo{
    position: absolute;
    left: 40px;
    bottom: 0px;
    width: 130px;
    filter: brightness(0);

        -webkit-transition: all 0.1s;
        -moz-transition: all 0.1s;
        -o-transition: all 0.1s;
    transition: all 0.1s;
}
@media screen and (max-width: 650px) {
    #logo{
        left: 30px;    
    }
}
#logo:hover{
    filter: none;
}
nav{
    position: absolute;
    right: 40px;
    top: 0px;
    overflow: hidden;
    padding-top: 13px;
}
@media screen and (max-width: 650px) {
    nav{
        right: 30px;    
    }
}
#burger{
    float: right;
    margin-left: 20px;
    margin-top: 5px;
    display: none;
    overflow: hidden;
    cursor: pointer;
    height: 0.76em;
}
#burger span{
    display: block;
    width: 3.5em;
    height: 0.06em;
    background-color: #000;
    margin-bottom: 0.29em;
    margin-right: 1px;

        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
#burger span:last-child{
    margin-bottom:0;
}

#burger span:nth-child(2){
    width: 3.5em;
}

header.open #burger{
    height: 0.77em;
}
header.open #burger span:first-child{
        -webkit-transform: rotate(-60deg); 
        -moz-transform: rotate(-60deg); 
        -ms-transform: rotate(-60deg);
        -o-transform: rotate(-60deg);
    transform: rotate(-60deg);
    transform-origin: 98% center;
    height: 0.07em;
}
header.open #burger span:nth-child(2){
    margin-left: 3.5em;
    width: 0em;

}
header.open #burger span:last-child{
        -webkit-transform: rotate(60deg);
        -moz-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        -o-transform: rotate(60deg);
    transform: rotate(60deg);
    transform-origin: 98% center;
    height: 0.07em;
}
body.homepage header.hide{
    height: 0;
}
body.homepage header.hide .basis{
    height: 0;
}
body.homepage header.hide #menu a:hover{
    color: #FAFF00;
}
#menu{
    display: inline;
}
#menu a{
    display: inline;
    font-size: 0.95em;
    text-transform: uppercase;
    margin-left: 15px;
}
#menu a:hover{
    color: #AAF2D4;
}
.activemenuitem{
    color: #AAF2D4 !important;
}

/*MOBILE MENU*/
@media screen and (max-width: 650px) {
    #logo{
        width: 110px;
        bottom: 1px;
    }
    #menu{
        display: block;
        opacity: 0;
        margin-top: 30px;
    }
    #menu.menudisplaynone{
        display: none;
    }
    #menu a{
        display: block;
        text-align: right;
        margin-top: 0;
        line-height: 2.4em;
        padding-left: 15px;
    }
    #burger{
        display: block;
        margin-bottom: 0.9em;
    }
    header.open{
        height: 172px; /*4 Menupoint 207px*/
    }
    #menu.show{
        opacity: 1;
    }
    body.homepage header.hide{
        height: 48px;
    }
    body.homepage header.hide .basis{
        height: 56px;
    }
    body.homepage header.open{
        height: 172px; /*4 Menupoint 207px*/
    }
    body.homepage header.open .basis{
        height: 180px; /*4 Menuppoint 215px*/
    }

    body.projektpage header.open{
        height: 172px; /*4 Menuppoint 207px*/
    }
    body.projektpage header.open .basis{
        height: 180px; /*4 Menuppoint 215px*/
    }

    body.homepage header.hide #menu a:hover{
        color: #AAF2D4;
    }
}





/* SCROLLDOWN ///////////////////////////////////////////////////////////////////////////////// */
#scrolldown{
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 10;
    display: none;

    animation-name: jump;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
@keyframes jump{
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    transform: translateY(0);    
    }
    100% {
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
    transform: translateY(20px);    
    }
}
@media screen and (max-width: 650px) {
    #scrolldown {
        right: 30px;    
    }
}

#scrolldown svg{
    width: 20px;
}
#scrolldown svg path{
    stroke: #000;
    stroke-width: 1.2px
}








/* MAIN ///////////////////////////////////////////////////////////////////////////////// */

.homepage main{
    margin-top: -50px;
}
.homepage main .slanted-back{
    padding-top: 100px;
}



/* HERO ///////////////////////////////////////////////////////////////////////////////// */

#hero{
    margin-top: 90px;
    position: relative;
}
#hero-medium{
    display: none;
}
#hero-small{
    display: none;
}
#hero img{
    width: 75%;
    margin-left: 6%;
}
#keywords{
    position: absolute;
    width: 382px;
    bottom: 35px;
    left: 58%;
    line-height: 0em;
}
#keywords span{
    display: inline-block;
}
#keywords span:first-child{
    margin-left: 25px;
}
#keywords span:nth-child(3){
    margin-left: 35px;
}
#keywords span:nth-child(4){
    margin-left: 15px;
}
#keywords li{
    font-size: 1.35em;
    line-height: 1.15em;
    text-transform: uppercase;
    padding-right: 18px;
}
#keywords span li:last-child{
    padding-right: 0;
}
#keywords li a:hover{
    color: #FAFF00;
    font-weight: 800;
}
.keyword.active {
    font-weight: 800;
}

/*media max-width 650, 550 (1050, 950, 850, 750, 350) */
@media screen and (max-width: 1050px) {
    #hero img{
        width: 80%;
        padding-left: 0;
    }
    #keywords{
        left: 55%;
        bottom: -10px;
    }
}  
@media screen and (max-width: 850px) {
    #hero img{
        width: 80%;
        margin-left: 3%; 
    }
    #keywords{
        width: 335px;
        bottom: -15px;
    }
    #keywords li{
        font-size: 1.15em;
        line-height: 1.15em;
    }
   
}  
@media screen and (max-width: 750px) {
    #hero{
        margin-top: 90px;
    }
    #hero img{
        margin-left: 3%;    
    }
    #keywords{
        width: 298px;
        left: 54%;
    }
    #keywords li{
        font-size: 1em;
    }
}  
@media screen and (max-width: 650px) {
    #hero-large{
        display: none;
    }
    #hero-medium{
        display: block;
    }
    #hero img{
        width: 85%;
        margin: auto;
    }
    #hero{
        margin-bottom: 130px;
    }
    #keywords{
        transform: translateX(-100%);
        min-width: 350px;
        left: 100%;
        top:115%;
    }
    #keywords li{
        font-size: 1.15em;
        line-height: 1.15em;
    }
}  
@media screen and (max-width: 550px) {
    #hero{
        margin-top: 90px;
    }
    #hero-medium{
        display: none;
    }
    #hero-small{
        display: block;
    }
    #hero img{
        width: 100%;
        margin: auto;
    }
    #keywords{
        width: 350px;
        top:113%;
    }
    #keywords li{
        font-size: 1.15em;
        line-height: 1.15em;
    }
}  
@media screen and (max-width: 420px) {
    #hero{
        margin-top: 80px;
    }
    #keywords li{
        font-size: 0.9em;
    }
    #keywords{
        left: auto;
        transform: none;
        min-width: auto;
        width: 275px;
        right: 0;
        top:112%;
    }
} 
@media screen and (max-width: 350px) {
    #hero{
        margin-top: 65px;
    }
    #keywords li{
        font-size: 0.9em;
    }
    #keywords{
        left: auto;
        transform: none;
        min-width: auto;
        width: auto;
        right: 0;
        top:112%;
    }
} 




/* ABOUT ///////////////////////////////////////////////////////////////////////////////// */

#profil{
    padding: 200px 8% 70px;
}
#profil h1{
    padding: 0 5% 50px; /*LEBENSLAUF padding: 0 5%;*/
}
/* LEBENSLAUF
#profil h4{
    font-size: 1.1em;
    padding: 15px 5% 40px;
}
#profil h4 #arrowlink{
    display: inline;
}
#profil h4 #arrowlink:hover{
    color: #FAFF00;
}
#arrowlink svg{
    margin-right: 10px;
    width: 50px;
    position: relative;
    top: 3px;
}
#arrowlink svg path{
    stroke: #000;
    stroke-width: 1.2px; 
}
#arrowlink:hover svg path{
    stroke: #FAFF00;
}
#arrowlink:hover svg{
    animation-name: bounceright;
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
    @keyframes bounceright{
        0% {
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
        transform: translateX(0);    
        }
        100% {
            -webkit-transform: translateX(10px);
            -moz-transform: translateX(10px);
            -ms-transform: translateX(10px);
            -o-transform: translateX(10px);
        transform: translateX(10px);    
        }
    }
*/


#lena-maria-gif{
    width: 110px;
    margin-left: 100px;
}

@media screen and (max-width: 762px) {
    #profil h1 span:nth-child(2){
        display: inline;
    }
}
@media screen and (max-width: 850px) {
    #profil{
        padding-top: 180px;
    }
    #profil h1{
        font-size: 1.5em;
    }
}
@media screen and (max-width: 650px) {
    #profil{
        padding-top: 150px;
    }
    #profil h1{
        font-size: 1.3em;
    }

    #profil h4{
        font-size: .9em;
    }
    #arrowlink svg{
        width: 45px;
        top: 2.5px;
    }
    #lena-maria-gif{
        width: 110px;
        margin-left: 70px;
    }
    #balloon-about-large{
        width: 60%;
        display: block;
    }
}
@media screen and (max-width: 550px) {
    #lena-maria-gif{
        margin-left: 25%;
    }
    #balloon-about-large{
        width: 70%;
    }
}
@media screen and (max-width: 450px) {
    #profil{
        padding-left: 0;
        padding-right: 0;
        padding-top: 120px;
    }
    #profil h1{
        font-size: 1.25em;
        padding: 0 6%;
    }
    #balloon-about-large{
        margin-top: 10px;
        width: 90%;
    }
}


/* PROJEKTE ///////////////////////////////////////////////////////////////////////////////// */

#projekte {
    padding: 80px 0 60px;
}
#filter{
    max-width: 750px;
    font-size: 1.2em;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-bottom: 35px;
}
#filter li{
    margin-right: 15px;
}
#filter li:hover{
    cursor: pointer;
    color: #AAF2D4;
}
#filter li.active{
    font-weight: 800;
    color: #AAF2D4;
}
@media screen and (max-width: 650px) {
    #filter{
        font-size: 1em;
    }
}  


#gallery{
    -webkit-column-count: 2;    
    -webkit-column-gap: 40px;    
    -moz-column-count: 2;
    -moz-column-gap: 40px;
    column-count: 2;    
    column-gap: 40px;  
}
/*media max-width 650, 550 (1050, 950, 850, 750, 350) */
@media screen and (max-width: 950px) {
    #gallery {
    -moz-column-count:    2;
    -webkit-column-count: 2;
    column-count:         2;
    }
}  
@media screen and (max-width: 550px) {
    #gallery {
    -moz-column-count:    1;
    -webkit-column-count: 1;
    column-count:         1;
    }
}



.projekt{
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    margin-bottom: 60px;
}

.projekt:hover figure{
    transition-duration: 200ms;
}

.projekt img{
    width: 100%;
    display: block;  
    transition-duration: 300ms;
}
.projekt img:nth-child(2){
    display: none;
}
.projekt a{
    display: block;
}

.projektimage{
    position: relative;
}
.projektimageborder{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0px solid #AAF2D4;
    transition-duration: 300ms;

}
.projekt:hover figure{
    color: #AAF2D4;
}
.projekt:hover img{
   transform: scale(0.97); /*column count: 3 -> scale(0.96)*/
}
.projekt:hover .projektimageborder{
    border: 10px solid #AAF2D4;
}

article h4{
    margin-top: 13px;
}
article h3{
    margin-top: 4px;
}













/* FOOTER ///////////////////////////////////////////////////////////////////////////////// */
footer{
    padding: 40px 0 20px;
}

/* KONTAKT ///////////////////////////////////////////////////////////////////////////////// */
address{
    overflow: hidden;
}
address img{
    float: left;
    width: 80px;
    margin-right: 23px;
}   
address p{
    margin-top: 17px;
}    
address a:hover{
    font-weight: 800;
    color: #FAFF00;
} 

/*media max-width 650, 550 (1050, 950, 850, 750, 350) */
@media screen and (max-width: 550px) {
    address img{
        float: none;
    }
}



/* FOOTER LINE ///////////////////////////////////////////////////////////////////////////////// */
#footerline {
    margin-top: 60px;
    overflow: hidden;
}
#footerline h4{
    text-align: center;
    padding-top: 4px;
}
#footerline a:hover {
    color: #FAFF00;
}
#scrolltotop {
    float: right;
}
#scrolltotop svg{
    width: 17px;
}
#scrolltotop svg path{
    stroke: #000;
    stroke-width: 1.3px
}
#scrolltotop:hover svg path{
    stroke: #FAFF00;
}

/*media max-width 650, 550 (1050, 950, 850, 750, 350) */
@media screen and (max-width: 650px) {
    #footerline h4{
        text-align: left;
    }
}




/*Pattern ///////////////////////////////////////////////////*/
#pattern {
    background-image: url(../images/universal/pattern-repeat-lena-maria-design.jpg);
    height:25px;
    background-repeat: repeat-x;
    background-size: 600px;
}




/* SCHRIFTEN //////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////// */



  
  /* archivo-300 - latin */
  @font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 300;
    src: local(''),
         url('../schriften/archivo-v18-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('../schriften/archivo-v18-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* archivo-regular - latin */
  @font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 400;
    src: local(''),
         url('../schriften/archivo-v18-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('../schriften/archivo-v18-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* archivo-800 - latin */
  @font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 800;
    src: local(''),
         url('../schriften/archivo-v18-latin-800.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('../schriften/archivo-v18-latin-800.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  

  
/* archivo-300italic - latin */
@font-face {
    font-family: 'Archivo';
    font-style: italic;
    font-weight: 300;
    src: local(''),
         url('../schriften/archivo-v18-latin-300italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('../schriften/archivo-v18-latin-300italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  

/* archivo-200 - latin */
/*falls gebraucht wird: 

@font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 200;
    src: local(''),
         url('../schriften/archivo-v18-latin-200.woff2') format('woff2'),
         url('../schriften/archivo-v18-latin-200.woff') format('woff');
  }
*/