@import url("reset.css");
@import url("font.css");
@import url("accordion.css");

:root {
    --text: #fff;
    --primary: #BF5C9E;
    --primary-transparent: rgba(191, 92, 158, 0.9);
    --black-transparent: rgba(0, 0, 0, 0.2);
    --pink-transparent: rgba(126, 9, 101, 0.2);
    --blue-transparent: rgba(12, 96, 145, 0.2);
    --secondary: #4D99AA;
    --contrast: #386d79;
    --border-radius: 10px;
    --background: rgb(243, 243, 243);
    --highlight: #ffda79;
    --frame-pink: 4px solid #E2B8D5;
    --shadow-pink: drop-shadow(0 0 0.75rem #BF5C9E);
    --text-shadow-pink: 3px 3px 10px #ce85b5;
    --frame-blue: 4px solid #B2DFEB;
    --shadow-blue: drop-shadow(0 0 0.75rem #106797);
    --text-shadow-blue: 3px 3px 10px #4a87a8;
}

* {
    box-sizing: border-box;
}

body {
    width: 100%;
    overflow-x: hidden;
    font: 400 16px/160% 'Roboto', sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: rgb(23, 34, 41);
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    width: 100%;
    max-width: 1920px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 250%;
    line-height: 110%;
    text-shadow: var(--text-shadow-pink);
    font-weight: 400;
}

h2 {
    font-size: 200%;
    line-height: 110%;
    text-shadow: var(--text-shadow-blue);
    margin-bottom: 30px;
}

h3 {
    font-size: 180%;
    line-height: 110%;
    font-weight: 400;
}

h4 {
    font-size: 160%;
    line-height: 110%;
}

h5 {
    font-size: 140%;
    line-height: 110%;
}

h6 {
    font-size: 120%;
    line-height: 110%;
}

p {
    margin-bottom: 16px;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    opacity: 0.5;
}

.dsa-secure-plugin a:hover {
    opacity: 1;
}

nav {
    z-index: 999;
    position: fixed;
    top: 20px;
    background-color: var(--black-transparent);
    backdrop-filter: blur(5px);
    width: 100%;
    max-width: calc(2000px - 10%);
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-radius: var(--border-radius);
}

nav .logo {
    max-width: 300px;
    display: block;
}

nav .span {
    position: fixed;
    flex-direction: column;
    justify-content: space-between;
    display: none;
    height: 35px;
    width: 45px;
}

nav .span div {
    width: 100%;
    border-bottom: 5px solid var(--primary);
}

.button {
    background-color: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    margin-top: 15px;
    text-decoration: none;
}

.button.secondary {
    background-color: var(--secondary);
}

.desktop-nav {
    width: 100%;
    text-align: right;
}

.desktop-nav a {
    padding-left: 20px;
    font-weight: 700;
    color: #fff;
    text-shadow: var(--text-shadow-pink);
}

.overlay {
    min-height: 100vh;
    width: 0;
    position: fixed;
    display: flex;
    align-items: center;
    z-index: 9999;
    left: 0;
    top: -20px;
    background-color: var(--primary);
    background-color: var(--primary-transparent);
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    padding: 12px;
    text-decoration: none;
    font-size: 180%;
    color: #fff;
    display: block;
}

.overlay .closebtn {
    position: absolute;
    font-size: 60px;
}

.overlay .closebtn,
nav .span {
    top: 20px;
    right: 5%;
}

.overlay a.closebtn {
    font-weight: 300;
}

.sidenav{
    position: fixed;
    display: flex;
    flex-direction: column;
    right: 1%;
    z-index: 99999;
    top: 20%;
}

.sidenav a {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.sidenav a img {
    width: 40px;
}

.sidenav .blue-shiny-box {
    padding: 10px;
}

.dse {
    font-size: 80%;
    text-align: center;
    position: fixed;
    bottom: 0;
    right: 5%;
    background-color: var(--contrast);
    color: #fff;
    width: 290px;
    padding: 5px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.dse a {
    color: #fff;
}

.small-dialog {
    background: #000;
    padding: 20px 30px;
    text-align: left;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    position: relative;
    border-radius: var(--border-radius);    
}

.mfp-close-btn-in .mfp-close{
    color: #fff;
    opacity: 1;
}

.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

.responsive-slides {
    padding: 0;
}

.responsive-slides img {
    width: 100%;
    border-radius: var(--border-radius);
}

.responsive-slides a {
    padding: 0 5px;
}

.responsive-slides .slick-prev {
    left: 0;
    z-index: 999;
    height: 94px;
    width: 45px;
}

.responsive-slides .slick-prev::before,
.responsive-slides .slick-next::before {
    opacity: 1;
    color: var(--text);
}

.responsive-slides .slick-prev::before {
    content: '';
    background: url('../images/theme/slick-prev.png')no-repeat center /contain;
    display: block;
    height: 94px;
    width: 45px;
}

.responsive-slides .slick-next::before {
    content: '';
    background: url('../images/theme/slick-next.png')no-repeat center /contain;
    display: block;
    height: 94px;
    width: 45px;
}

.responsive-slides .slick-next {
    right: 0;
    height: 94px;
    width: 45px;
}

article {
    width: 100%;
}

.container {
    padding: 150px 5%;
}

header {
    width: 100%;
    max-width: 1920px;
    background: url('../images/theme/bg-black.svg')no-repeat center / cover;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.wave {
    position: relative;
    width: 100%;
    aspect-ratio: 1935/183;
    background-color: #021118;
}

.wave img {
    position: absolute;
    top: -50px;
    width: 100%;
}

.wave.wave-rev img {
    top: auto;
    bottom: -50px;
}

.intro {
    width: 100%;
    max-width: 770px;
    position: absolute;
    right: 5%;
    bottom: 10%;
    z-index: 1;
    padding: 20px;
    background-color: var(--pink-transparent);
    border-radius: var(--border-radius);
    border: var(--frame-pink);
    filter: var(--shadow-pink);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.lokie-kluth-header {
    display: block;
    width: 100%;
    max-width: 700px
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.col-30 {
    width: 30%;
}

.col-70 {
    width: 70%;
}

.col-50 {
    width: 50%;
}

.col-l {
    padding-right: 1%;
}

.col-r {
    padding-left: 1%;
}

.blue-shiny-box {
    border-radius: var(--border-radius);
    padding: 20px;
    border: var(--frame-blue);
    filter: var(--shadow-blue);
    background-color: var(--blue-transparent);
    backdrop-filter: blur(5px);
}

.pink-shiny-box {
    border-radius: var(--border-radius);
    padding: 20px;
    border: var(--frame-pink);
    filter: var(--shadow-pink);
    background-color: var(--pink-transparent);
    backdrop-filter: blur(5px);
}

.flex h2 {
    width: 100%;
}

.section-1 {
    background-color: #021118;
}

.section-1 .col-r img {
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 450px;
}

.section-2 {
    background: url('../images/theme/bg-white.svg') no-repeat center/ cover;
}

.section-2 h2 {
    color: #000;
}

.section-2 h3 {
    position: absolute;
}

.section-2 .col-l h3 {
    bottom: 5%;
    right: 5%;
    text-align: right;
}

.section-2 .col-r h3 {
    top: 5%;
    left: 5%;
    text-align: right;
}

.section-2 .col-50 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-2 .blue-shiny-box,
.section-2 .pink-shiny-box {
    padding: 0;
    aspect-ratio: 1/1;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.section-2 a {
    color: #fff;
}

.section-2 h3 {
    text-shadow: var(--text-shadow-blue);
}

.wave.wave-mod {
    background-color: #CDCDCD;
}

.section-3 {
    background-color: #CDCDCD;
}

.section-3 h2 {
    color: #000;
}

.section-3 img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
}

.responsive-slides {
    width: 100%;
}

.section-4{
    background: url('../images/theme/bg-blue.svg') no-repeat center/ cover;
}

.section-4 img {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
}

.wave.wave-mod.bg-darkblue{
    background-color: #021118
}

.section-5 {
    background-color: #021118
}

.section-5 img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
}

footer img {
    width: 100%;
    max-width: 300px;
}

footer .col-r {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

footer.pink-shiny-box{
    border: none;
    backdrop-filter: none;
    width: 100%;
    max-width: 1920px;
    padding: 50px 5%;
}

p a, ul li a {
    color: rgb(231, 183, 233);
    font-weight: 700;
}

ul {
    margin-bottom: 20px;
}

ul ~ h2 {
    margin-top: 20px;
}

b {
    font-weight: 700;
}

.kontaktformular {
    width: 100%;
    height: 950px;
}

#impressum .flex h1{
    width: 100%;
    margin-bottom: 20px;
}

#impressum .container {
    padding-top: 150px;
}

.blue-shiny-box ~ .pink-shiny-box{
    margin-top: 10px;
}

.blue-shiny-box ~ .pink-shiny-box p{
    margin-bottom: 0;
    font-weight: 700;
}

@media screen and (max-width: 1024px) {
    nav .span {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .intro {
        position: static;
        padding: 50px 5%;
    }

    h1 {
        font-size: 200%;
    }

    h2 {
        font-size: 150%;
    }

    .col-30,
    .col-70,
    .col-50 {
        width: 100%;
    }

    .section-1 h2 {
        order: 1
    }

    .section-1 .col-r {
        order: 2;
        margin-bottom: 20px;
    }

    .section-1 .col-l {
        order: 3;
    }

    .wave img,
    .wave.wave-rev img {
        top: auto;
        bottom: auto;
    }

    footer.flex {
        flex-direction: column-reverse;
        text-align: center;
    }

    .sidenav a img {
        width: 30px;
    }
}

@media screen and (max-width: 750px) {
    .logo {
        width: 200px;
    }

    .responsive-slides .slick-next::before,
    .responsive-slides .slick-prev::before {
        height: 44px;
        width: 35px;
    }

    .sidenav{
        top: 10%;
    }

    .sidenav a img {
        width: 20px;
    }

    .section-2 h3 {
        font-size: 150%;
    }
}

@media screen and (max-width: 450px) {
    h1 {
        font-size: 150%;
    }

    .container,
    .intro {
        padding: 20px 5%;
    }
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px
    }

    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}