@font-face {
    font-family: 'TexGyreHeros';
    src: url('texgyreheros-regular-webfont.woff') format('woff');
}

html{
    scroll-behavior: smooth;
    height: 100%;
}


::-webkit-scrollbar{
    width:8px;
    height:8px;
}
::-webkit-scrollbar-track{
    background-color: #000;
}

::-webkit-scrollbar-thumb{
    background:#222;
    border-radius: 4px;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #222 #000;
}

body {
    font-family: "TexGyreHeros", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style:normal;
    font-weight:400;
    height:100%;
    width:100%;
    background-color: #000;
    margin:0;
    color: white;
}

div{
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
}

img{
    pointer-events: none;
}

#navleiste{
    width:97%;
    height:9vh;
    padding-right: 3%;
    background-color: #FFFFFF;
    color: white;
    display:flex;
    justify-content: space-between;
    align-items: center;
    gap:2vw;
}

#westandbild{
    height:100%;
    width:22vh;
    background-image: linear-gradient(to right, #fff0 60%, #ffff 100%), url("westandbild_klein.webp");
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

#hauptlogo{
    display:flex;
    justify-content: center;
    align-items: center;
    height:80%;
    width:auto;
    cursor: pointer;
    pointer-events: all;
}

#hauptlogo img{
    object-fit: contain;
    max-height: 100%;
}

#navbuttonsdiv{
    display:flex;
    justify-content:end;
    align-items: center;
    height:100%;
    width: 80%;
    flex-direction: row;
    gap:4vw;
}

#menutoggle{
    opacity: 0;
    position: absolute;
    pointer-events: none;
    width: 5vh;
    height: 5vh;
    margin-right: 1.5vw;
}

#menutogglelabel{
    display: none;
    justify-content: center;
    align-items: center;
    color:#111;
    font-size: 4vh;
    cursor: pointer;
    user-select: none;
    margin-right: 2vw;
}

#navbuttons{
    list-style: none;
    display: flex;
    gap: 2vw;
    margin: 0;
    padding: 0;
    z-index: 1000;
}
#navbuttons li{
    display: flex;
    justify-content: center;
    align-items: center;
}
#navbuttons li a {
    text-decoration: none;
    text-align: center;
    color:#282828;
    font-size: calc(0.4vw + 2.0vh);
    font-weight: 680;
    letter-spacing: 1.4px;
    padding: 0.8vh;
}
#leistungenbutton{
    background-color: #d04628;
    border-radius: 1vh;
    color:#fff !important;
}
#navbuttons li a:hover{
    cursor: pointer;
    color:#d84e36;
    transition: 100ms all ease;
}

@media screen and (max-width: 1000px) {
  #menutogglelabel {
    display: block;
  }

  #navbuttons {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 2vh;
    background: #fff;
    position: absolute;
    top: 9vh;
    right: 0;
    width: 20vh;
    gap:2.4vh;
    border-bottom-left-radius: 2vh;
    box-shadow: 0 0 3px #fff;
  }
    #leistungenbutton{
        background-color:#fff;
        color:#282828 !important;
    }
  #menutoggle:checked ~ #menutogglelabel ~ #navbuttons {
    display: flex;
  }
}



main{
    width:100%;
    min-height:84vh;
    overflow-y:auto;
    display:flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    transition: 142ms all ease;
    padding-top:2px;
    background-color:#181819;
    box-shadow: 0 12px 2px -10px inset #fff;
    overflow-x: hidden;
}


#banner{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    flex-wrap: wrap;
    min-width: 100%;
    overflow-x: scroll;
    height: calc(66vh - 6vw);
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-top: 0;
    background-color: #2a2b32;
    box-shadow: 0 -15px 20px -10px inset #141414;
}

#bannerbackbutton, #bannernextbutton{
    position: absolute;
    top:40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#ddd;
    width:calc(4vw + 4vh);
    height:16vh;
    font-size: 5vh;
    cursor:pointer;
}
#bannerbackbutton{
    left:4vw;
}
#bannernextbutton{
    right:4vw;
}

.bannerobj{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100vw;
    height: 100%;
    scroll-snap-align: start;
    overflow-x: hidden;
    overflow-y: hidden;
    cursor: pointer;
}

.bannerbilddiv{
    display: flex;
    justify-content:center;
    align-items: center;
    width: 100%;
    min-width: 420px;
    height: 100%;
    user-select: none;
}

.bannerbilddiv img{
    max-width: 150%;
    max-height: 150%;
    object-fit: contain;
    border-radius: 4px;
    opacity: 0.82;
}

.bannertextdiv{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap:1.4vh;
    width: 50%;
    min-width: 280px;
    border-radius: 1vh;
    padding: 2vw;
    margin-left:calc(10vw - 55vh);
    backdrop-filter: brightness(0.6) blur(2px);
}
/*
@media screen and (min-width:1000px){
    .bannerobj{
        width:84%;
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 1vh;
    }
    .bannerbilddiv{
        width: 50%;
    }
    .bannerbilddiv img{
        max-width: 100%;
        max-height: 100%;
    }
    .bannertextdiv{
        margin-left:0;
        backdrop-filter: none;
    }
}
    */

.bannerueberschrift{
    width:80%;
    font-size: calc(3.8vh + 1vw);
    font-weight: 320;
    letter-spacing: 1px;
    user-select: none;
}

.banneruntertitel{
    margin-top: -2vh;
    width:80%;
    font-size: calc(1.6vh + 0.5vw);
    font-weight: 320;
    letter-spacing: 1px;
    user-select: none;
}

.bannertext{
    width:80%;
    font-size: calc(0.5vw + 1.5vh);
    font-weight: 200;
    word-break: break-word;
    text-wrap: break-word;
    overflow-wrap: break-word;
    color:#BBB;
    user-select: none;
}

.bannerticketbutton{
    margin-left:6vw;
    font-size: 2.8vh;
    font-weight: 400;
    padding-left: 1vw;
    padding-right: 1.2vw;
    padding-top: 1vh;
    padding-bottom: 1vh;
    box-shadow: 0 0 20px #424242;
    border-radius: 1vw;
    cursor:pointer;
    transition: 200ms all ease;
    user-select: none;
    text-decoration: none;
    color:inherit;
}

.bannerticketbutton:hover{
    background-color: #282828;
    box-shadow: 0 0 20px #525256,0 0 4px inset #282828;
}

#willkommen{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width:80%;
    height:calc(30vh -10vw);
    margin-top: 9vh;
    padding: 1vh;
    padding-left: 10vw;
    margin-bottom: 6vh;
    gap:3vw;
    row-gap:0;
}

#willkommenueberschrift{
    padding: 1vh;
    border-radius: 1vh;
    background-color: #d04628;
    font-size: 2.8vh;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#willkommenwestand{
    padding: 1vh;
    font-size: 5.8vh;
    font-weight: 600;
    letter-spacing: 1px;
    font-style: italic;
}
#willkommenbraunschweig{
    padding-left: 1vh;
    font-size: 4.2vh;
    font-weight: 420;
    letter-spacing: 1.4px;
}

#willkommentext{
    font-size: calc(1vw + 1vh);
    width: 80%;
    font-weight: 480;
    letter-spacing: 0.3px;
    line-height: 1.4;
    color:#ddd;
    margin-top: 2vh;
}

#willkommenkontaktbutton{
    margin-left: 8vw;
    margin-top: calc(8vh - 1vw);
    padding: 2vh;
    padding-top: 1.2vh;
    padding-bottom: 1.2vh;
    border-radius: 1.2vh;
    background-color: #eee;
    color: #d04628;
    font-size: 2.4vh;
    font-weight: 600;
    box-shadow: 0 0 10px #646464;
    cursor: pointer;
    transition: 100ms all ease;
    text-decoration: none;
}
#willkommenkontaktbutton:hover{
    box-shadow: 0 0 20px #848484;
}



#alsnaechstes{
    margin: 4vh;
    margin-left:10vw;
    margin-bottom: 3vh;
    display: flex;
    justify-content: start;
    align-items: center;
    width:90%;
    font-size: 3vh;
    font-weight: 500;
    letter-spacing: 1px;
    color:#ccc;
}

#events{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: row;
    flex-wrap: wrap;
    gap:calc(1vw + 2vh);
    width:95%;
    min-height: 20vh;
    margin-bottom: 2vh;
    margin-left: 2.5%;
}

#eventsplatzlinks{
    height: 90%;
    width: 5vw;
}

#eventsplatzrechts{
    height: 90%;
    width: 15vw;
}

.event{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    height:31.5vh;
    width:42vh;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-snap-align: center;
    border: 1px solid #424242;
    cursor: pointer;
    transition: 200ms all ease;
    text-decoration: none;
    color:inherit;
}
.event:hover{
    transform: scale(1.02);
    background-color: #202021;
    box-shadow: 0 0 10px #484850;
}

.eventbild{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:60%;
    overflow-y: hidden;
}

.eventtext{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width:100%;
    height:40%;
    gap: 1vh;
}
.eventueberschrift{
    display: flex;
    justify-content: start;
    align-items: start;
    width:88%;
    font-size: calc(10px + 2vh);
    font-weight: 420;
    letter-spacing: 0.5px;
    user-select: none;
}
.eventuntertitel{
    display: flex;
    justify-content: start;
    align-items: start;
    width:88%;
    font-size: calc(5px + 1vh);
    font-weight: 420;
    letter-spacing: 0.5px;
    user-select: none;
}

.eventbild img{
    max-width: 100%;
    max-height: 120%;
    object-fit: contain;
}

.eventdatum{
    position: absolute;
    bottom:0;
    left:0;
    padding: 1vh;
    padding-right: 2vh;
    border-top-right-radius: 1.5vh;
    border-top-left-radius: 0.5vh;
    font-size: 1.8vh;
    font-weight: 420;
    letter-spacing: 0.5px;
    user-select: none;
    backdrop-filter: blur(6px) brightness(0.4);
}

#alleeventsbutton{
    margin-left:25vw;
    margin-top:3vh;
    font-size: 2.8vh;
    font-weight: 400;
    padding-left: 2vw;
    padding-right: 2.4vw;
    padding-top: 1vh;
    padding-bottom: 1vh;
    box-shadow: 0 0 20px #424242;
    border-radius: 1vh;
    cursor:pointer;
    transition: 200ms all ease;
    user-select: none;
    text-decoration: none;
    outline:none;
    color:inherit;
    transition: 100ms all ease;
}
#alleeventsbutton:hover{
    background-color: #202021;
    box-shadow: 0 0 20px #646464;
}


#unsereleistungen{
    margin: 4vh;
    margin-left: 10vw;
    margin-bottom: 2vh;
    display: flex;
    justify-content: start;
    align-items: center;
    width:90%;
    font-size: 3.4vh;
    font-weight: 600;
    letter-spacing: 1px;
    color:#eee;
}

#leistungen{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width:100%;
    min-height:70vh;
    gap:2vw;
    row-gap: 2vh;
}

.leistung{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width:calc(340px + 1vw);
    max-width: 420px;
    height:60vh;
}

.leistungenbild{
    display: flex;
    justify-content: center;
    align-items: center;
    width:90%;
    height:60%;
    overflow-x: hidden;
    overflow-y: hidden;

}

.leistungenbild img{
    max-width: 100%;
    max-height: 120%;
    object-fit: contain;
}

.leistungentext{
    width:80%;
    font-size: calc(16px + 0.4vh + 0.2vw);
    font-weight: 280;
    letter-spacing: 1px;
    user-select: none;
    color:#ccccc6;
}

.leistungenbutton{
    padding: 1vh;
    padding-top: 0.5vh;
    padding-bottom: 0.8vh;
    border-radius: 1vh;
    background-color: #d04628;
    font-size: calc(10px + 0.2vw + 1.2vh);
    font-weight: 500;
    margin-left: 10%;
    box-shadow: 0 0 8px #777;
    cursor: pointer;
    user-select: none;
    outline: none;
    text-decoration: none;
    color:inherit;
    transition: 100ms all ease;
}
.leistungenbutton:hover{
    box-shadow: 0 0 20px #646464;
}

.trennlinie{
    margin-top: 8vh;
    margin-bottom: 4vh;
    height:0.2vh;
    width:80vw;
    margin-right: auto;
    background-color: #bbb;
    box-shadow: 0 0 4px #bbb;
}

#ueberuns{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 8vh;
    gap:4vw;
    padding-top: 2vh;
    padding-bottom: 2vh;
}

#ueberunstext{
    width:80%;
    font-size: calc(2vh + 0.8vw);
    font-weight: 280;
    letter-spacing: 0.5px;
    line-height: 1.5;
    user-select: none;
    color:#bbb;
}

#grosseswestandbild{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: hidden;
    width:80%;
    max-height:calc(10vw + 40vh);
    margin-left: auto;
}

#grosseswestandbild img{
    max-width: 110%;
    max-height: 100%;
    object-fit: contain;
}

#innenansicht{
    display: flex;
    justify-content: start;
    align-items: center;
    overflow-x: hidden;
    overflow-y: hidden;
    width:80%;
    max-height:calc(20vw + 20vh);
}

#innenansicht img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


#wo{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width:100%;
    gap:2vw;
    row-gap:2vh;
    margin-top: 8vh;
}

#wobild{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width:80%;
    max-width: 420px;
    height:36vh;
    max-height: 420px;
    overflow-x: hidden;
    overflow-y: hidden;
    margin-bottom: 2vh;
}
/*
#wobild:after{
    content:"";
    position: absolute;
    inset:0;
    box-shadow: 0 0 18px 4px inset #141414;
    pointer-events: none;
}
    */
#wobild img{
    object-fit: contain;
    z-index: 0;
}

#wobuttonundadresse{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width:40vw;
    min-width: 300px;
    gap:4vw;
    row-gap:2vh;
}

#womapsbutton{
    padding: 2vh;
    padding-top: 1.2vh;
    padding-bottom: 1.2vh;
    border-radius: 1.2vh;
    background-color: #eee;
    color: #d04628;
    font-size: 2.4vh;
    font-weight: 600;
    box-shadow: 0 0 10px #646464;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

#woadresse{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1vh;
    font-size: 2vh;
    color:#bbb;
    line-height: 1.5;
    letter-spacing: 0.8px;
    user-select: text;  
}

#kontakt{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width:90%;
    padding-left: 5%;
    padding-right: 5%;
    gap:2vw;
    row-gap:2vh;
    margin-top: 8vh;
    background-color: #2a2b32;
    box-shadow: 0 18px 20px -10px inset #141414, 0 -18px 20px -10px inset #141414;
    padding-top: 4vh;
    padding-bottom: 4vh;
}

#jetztanfragen{
    width:90%;
    font-size: calc(1.6vw + 3.2vh);
    font-weight: 500;
    letter-spacing: 1px;
    color:#eee;
    margin: calc(1vw + 1vh);
}

#kontakttext{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1vh;
    font-size: 2vh;
    color:#bbb;
    line-height: 1.4;
    letter-spacing: 0.2px;
    word-break: break-word;
    overflow-wrap: break-word;
    word-wrap: break-all;
    white-space: pre-wrap;
    user-select: text;
}

#kontaktformular{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width:90%;
    max-width: 1200px;
    padding-left: 5%;
    padding-right: 5%;
    gap:2vw;
    row-gap:3vh;
}

.inputbox{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:0.5vh;
    width:100%;
    max-width: 500px;
}
.inputboxtext{
    max-width: 1000px;
}

.inputbox label{
    padding-left: 20%;
    font-size: 1.2vh;
    font-weight: 400;
    color:#bbb;
    width:100%;
}

.inputbox input, .inputboxtext textarea{
    font-family: sans-serif;
    width:80%;
    border-radius: 5px;
    outline: none;
    border: 1px solid #424242;
    padding: calc(4px + 0.4vh);
    padding-left: 3%;
    background-color: #e4e4e4;
    color:#000;
    letter-spacing: 0.8px;
    font-size: calc(10px + 0.1vw + 0.6vh);
    box-shadow: 0 0 2px inset #141414, 0 0 8px #424242;
}

.inputboxtext textarea{
    resize: vertical;
    padding-left: 2%;
    width: 81%;
}



#specboxen{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 2vh;
    width:95%;
    margin-top: calc(6vw + 8vh);
    margin-bottom: 6vw;
    max-width:2000px;
}
.specsbox{
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    width:30vw;
    min-width: 300px;
    min-height: 25vh;
    overflow-y: hidden;
    overflow-x: hidden;
    margin-bottom: 5vh;
}

.specsueberschrift{
    display: flex;
    justify-content: start;
    align-items: start;
    width:100%;
    height: 60%;
    font-size: calc(10px + 2vh);
    font-weight: 500;
    letter-spacing: 1px;
    color:#eee;
}

.specstext{
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height: 40%;
    font-size: calc(8px + 0.8vh + 0.2vw);
    font-weight: 460;
    letter-spacing: 1px;
    line-height: 1.5;
    color:#bbb;
    margin-top: 2vh;
}


#aufeinenblick{
    margin-top: 5vh;
    margin-bottom: 2vh;
    margin-left: 15%;
    margin-right: 15%;
    padding: 1vh;
    border-radius: 1vh;
    background-color: #d04628;
    font-size: 2vh;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.4;
}

#ihrevorteile{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width:90%;
    height: 60%;
    font-size: 4vh;
    font-weight: 420;
    letter-spacing: 1px;
    line-height: 1.4;
    color:#eee;
}



#kontaktsendenbutton{
    padding: 2vh;
    padding-top: 1.2vh;
    padding-bottom: 1.2vh;
    margin-top: 2vh;
    border-radius: 1.2vh;
    background-color: #eee;
    color: #d04628;
    font-size: 2.4vh;
    font-weight: 600;
    box-shadow: 0 0 10px #646464;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px #646464;
    transition: 100ms all ease;
}
#kontaktsendenbutton:hover{
    box-shadow: 0 0 20px #525256;
    color:#fff;
    background-color: #d04628;
}


#mainfooter{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap:4vw;
    width: 80%;
    margin-top: 2vh;
    padding: 3vh;
    padding-left: 10%;
    padding-right: 10%;
    background-color: #2a2b30;
}

#nochfragen{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    font-size: 2.5vh;
    font-weight: 500;
    color:#bbb;
    letter-spacing: 0.4px;
}

#mainfooterkontaktbutton{
    display: flex;
    justify-content: center;
    align-items: center;
    height:3.8vh;
    padding: 2vh;
    padding-top: 0.8vh;
    padding-bottom: 1.2vh;
    border-radius: 1.2vh;
    background-color: #eee;
    color: #d04628;
    font-size: 2.4vh;
    font-weight: 600;
    box-shadow: 0 0 10px #646464;
    cursor: pointer;
    transition: 100ms all ease;
    text-decoration: none;
    outline: none;
}
#mainfooterkontaktbutton:hover{
    box-shadow: 0 0 15px #848484;
}


footer{
    background-color: #1a1b20;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width:92%;
    gap:calc(1vh + 3vw);
    row-gap: 2vh;
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 1vh;
    padding-bottom: 1vh;
    color:#fff;
    font-size: 2vh;
}
footer a{
    display: flex;
    justify-content: center;
    align-items: center;
}

footer img{
    object-fit: contain;
    max-height: 80px;
}

.footerlinkbutton{

    color:inherit;
    outline: none;
    text-decoration: none;
}

footer a:hover{
    cursor: pointer;
    color:#d84e36;
    transition: 100ms all ease;
}

#footersociallinks{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap:calc(1vh + 2vw);
}

.sociallogo{
    height:4vh;
    width:auto;
    cursor: pointer;
    pointer-events: all;
}

