:root{
    --main-color: #a60154;
}
@font-face {
    font-family: main;
    src: url(Frutiger.ttf);
}
html, body{
    padding: 0px;
    margin: 0px;
    font-family: main;
    font-size: 18px;
}

h1{
    font-size: 76px;
    line-height: 1.25em;
    margin: 0;
    margin-bottom: 30px;
}
h2{
    font-size: 47.12px;
    line-height: 1.25em;
    margin: 0;
    margin-bottom: 30px;
}
h3{
    font-size: 29.12px;
    line-height: 1.25em;
    margin: 0;
    margin-bottom: 30px;
}
button{
    border-radius: 1000px;
    background-color: var(--main-color);
    color: white;
    padding: 10px 30px 10px 30px;
    font-size: 18px;
    font-weight: 700;
    border-style: none;
}
a{
    display: block;
}



.hero{
    width: 100%;
    max-width: 100vw;
    height: 80vh;
    background-image: url("./img/Wellen.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100vw;

    box-sizing: border-box;
    padding-left: 10vw;
    padding-right: 10vw;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}
.hero_text_container{
    width: 100%;
}
.hero_img_container > img{
    max-height: 70vh;
    max-width: 100%;
}

.tagline_hero{
    font-size: 47px;
    line-height: 1.618em;
    margin: 0;
}



.impressions_bild_container{
    width: 80vw;
    overflow: hidden;
}
.impressions_bild{
    width: 100%;
}
.rahmenprogramm{
    padding: 0 20vw 0 20vw;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
}
#main_text{
    text-align: center;
    font-size: 24px;
    line-height: 1.618em;
}




.sectionmargin{
    margin: 10vh 0 10vh 0;
}
.flyerdownload{
    display: flex;
    flex-direction: column;
    align-items: center;
}




.kunsthandwerker_section{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10vw;
    box-sizing: border-box;
}
.container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 5vw;
    grid-row-gap: 5vh;
    max-width: 1500px;
}
.kunsthandwerker{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;

    -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.31);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.31);
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.31);
}
.kunsthandwerker > .bg{
    background-color: white;
    width: 100%;
    aspect-ratio: 1.25/1;
    border-radius: 10px 10px 0 0;
}

.kunsthandwerker > .txt_container{
    width: 80%;
    padding-bottom: 30px;
    padding-top: 30px;
}

/*Small Desktop*/
@media (max-width: 1200px){
    .hero{
        padding: 0 5vw;
    }
    h1{
        font-size: 60px;
        line-height: 1.25em;
        margin: 0;
        margin-bottom: 30px;
    }
    .tagline_hero,
    h2{
        font-size: 37.12px;
        line-height: 1.25em;
        margin: 0;
        margin-bottom: 30px;
    }
    h3{
        font-size: 23.12px;
        line-height: 1.25em;
        margin: 0;
        margin-bottom: 30px;
    }
    html{
        font-size: 14px;
    }
    .rahmenprogramm{
        padding: 0 10vw;
    }
    .programmpunkt{
        width: 45%;
    }
}

/*Tablet*/
@media (max-width: 992px){
    h1{
        font-size: 40px;
    }

    .rahmenprogramm{
        padding: 0 5vw;
    }
    .programmpunkt{
        width: 47.5%;
    }
    .kunsthandwerker_section{
        padding: 0 5vw;
    }
    .container{
        grid-template-columns: repeat(2, 1fr);
    }
    .hero_img_container{
        min-width: 30%;
    }
}

/*Mobile Horizontal*/
@media (max-width: 768px){
    .hero{
        width: 100%;
        padding: 0;
        background-image: none;
        height: auto;
    }
    .hero_text_container{
        display: none;
    }
    .hero_img_container{
        width: 100%;
    }
    .hero_img_container > img{
        width: 100%;
        max-height: none;
    }
}

/*Mobile Portrait*/
@media (max-width: 480px){
    .container{
        grid-template-columns: repeat(1, 1fr);
    }
    .punkte_rahmenprogramm{
        flex-direction: column;
    }
    .programmpunkt{
        width: 100%;
        margin-bottom: 5vh;
    }
    .kunsthandwerker_section{
        padding: 0 10vw;
    }
    .rahmenprogramm{
        padding: 0 10vw;
    }
}