@font-face
{
    src: url("../fonts/Quicksand-VariableFont_wght.ttf");
    font-family: "Quicksand-VariableFont_wght";
}
@font-face
{
    src: url("../fonts/BebasNeue-Regular.ttf");
    font-family: "BebasNeue-Regular";
}
@font-face
{
    src: url("../fonts/Lobster-Regular.ttf");
    font-family: "Lobster-Regular";
}
:root
{
    --black: #111;
    --white: #fafafa;
    --white2: #fff;
    --font1: "Quicksand-VariableFont_wght";
    --font2: "BebasNeue-Regular";
    --font3: "Lobster-Regular";
}
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Quicksand-VariableFont_wght";
}
body
{
    background: var(--white);
    overflow-x: hidden;
}


/* Header Section */
#header
{
    margin-bottom: -5px;
    position: relative;
}
/* Header Bild */
img
{
    width: 100%;
    height: 50.5vw;
    margin-bottom: 0px;
}
/* Header Liste und Logo */
header
{
    position: fixed;
    width: 100%;
    /* height: 70px; */
    background: #dadada38;
    top: 0;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100000;
}
/* Header Logo */
header .logo
{
    font-size: 2em;
    margin-left: 30px;
    padding: 40px;
    transition: 0.3s ease-out;
}
header .logo a
{
    text-decoration: none;
    color: #256ad1;
    font-family: var(--font3);
    word-spacing: 5px;
    position: relative;
}
header .logo a img
{
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    position: absolute;
    margin-left: 10px;
}
header .logo a .animation
{
    animation: anchor 2s linear forwards;
}
@keyframes anchor
{
    0%,100%
    {
        transform: rotateZ(0deg);
    }
    10%
    {
        transform: rotateZ(55deg);
    }
    15%
    {
        transform: rotateZ(60deg);
    }
    35%
    {
        transform: rotateZ(-55deg);
    }
    40%
    {
        transform: rotateZ(-60deg);
    }
    55%
    {
        transform: rotateZ(25deg);
    }
    70%
    {
        transform: rotateZ(-25deg);
    }
    80%
    {
        transform: rotateZ(10deg);
    }
    90%
    {
        transform: rotateZ(-10deg);
    }
}
/* Header Liste */
header .list
{
    margin-right: 20px;
    transition: 0.3s ease-out;
}
header .list ul
{
    list-style: none;
    display: flex;
    margin-right: 30px;
}
header .list ul li
{
    font-size: 1.7em;
    padding: 10px 10px;
    /* background: red; */
    position: relative;
}
header .list ul li a
{
    text-decoration: none;
    color: var(--black);
}
header .list ul li button
{
    border: none;
    font-size: 1em;
    background: transparent;
    cursor: pointer;
}
header .list ul span
{
    font-size: 1.7em;
    display: flex;
    align-items: center;
}
/* Header Liste bilder dropdown */
header .list ul li span
{
    font-size: 0.7em;
    margin-left: 5px;
}
header .list ul .dropdownmenu
{
    position: absolute;
    margin-top: 10px;
    background: transparent;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
header .list ul .dropdownmenu ul
{
    background: #fff;
    display: block;
    border-radius: 14px;
    height: 0px;
    overflow: hidden;
    transition: 0.3s ease-out;
    box-shadow: 0 5px 10px rgba(0,0,0,0.4);
    font-size: 0.8em;
}
header .list ul .dropdown:hover .dropdownmenu ul
{
    height: 200px;
}
header .list ul .dropdownmenu ul:hover
{
    height: 200px;
}

/* Handymenu */
header .handymenu
{
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
    margin-right: 30px;
    max-height: 20px;
}
header .handymenu .menu
{
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s;
    transition-delay: 0.3s;
    overflow: hidden;
    box-shadow: 0 5px 5px rgba(0,0,0,0.4);
    list-style: none;
}
/* header .handymenu .menu */
header .handymenu .menu li
{
    font-size: 2.2em;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 4px 8px;
    border-radius: 20px;
    cursor: pointer;
    transform: scale(0);
    transition: 0.3s;
    transition-delay: 0s;
}
header .handymenu .menu li:hover
{
    background: #4788eb;
    transition-delay: 0s;
}
header .handymenu .menu a
{
    margin-top: 160px;
    color: black;
    text-decoration: none;
    transition: 0.7s;
}
header .handymenu .menu button
{
    font-size: 1em;
    border: none;
    background: transparent;
}
header .handymenu .menu_slide li
{
    transition-delay: 0.3s;
    transform: scale(1);
}
header .handymenu .menu_slide a
{
    margin-top: 0;
}

header .handymenu .button
{
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    transition: 0.5s;
    transition-delay: 0.5s;
    flex-direction: column;
}
header .handymenu .button span
{
    width: 70%;
    height: 8%;
    border-radius: 20px;
    background: #222;
    transition: 0.5s;
}
header .handymenu .button span:nth-child(2),
header .handymenu .button span:nth-child(3)
{
    margin-top: 8px;
}
header .handymenu .menu_slide
{
    height: 600px;
    width: 220px;
    border-radius: 50px;
    transform: translateY(350px);
    transition: 0.5s;
    overflow: visible;
}
header .handymenu .button_slide
{
    background: #4788eb;
    transition: 0.5s;
    width: 60px;
    height: 60px;
}
header .handymenu .button_slide span:nth-child(1)
{
    transform: rotateZ(135deg);
    position: absolute;
    transition: 0.5s;
}
header .handymenu .button_slide span:nth-child(2)
{
    transform: rotateZ(-135deg);
    position: absolute;
    top: 20px;
    transition: 0.5s;
}
header .handymenu .button_slide span:nth-child(3)
{
    transform: rotateZ(405deg);
    position: absolute;
    top: 20px;
    transition: 0.5s;
}


@media(max-width: 1450px)
{
    header .list
    {
        display: none;
    }
    header .handymenu
    {
        display: flex;
    }
}
/* Header Liste bilder dropdown Handymenu*/
header .handymenu .handy_dropdown span
{
    font-size: 1.2em;
}
header .handymenu .handy_dropdownmenu
{
    position: absolute;
    top: 140px;
    left: -220px;
    z-index: -1;
}
header .handymenu .handy_dropdownmenu ul
{
    background: wheat;
    height: 0px;
    border-radius: 14px;
    transition: 0.3s ease-out;
    overflow: hidden;
}
header .handymenu .handy_dropdownmenu ul li
{
    list-style: none;
    font-size: 2em;
    padding: 0 10px 0 10px;
}
header .handymenu .handy_dropdownmenu ul li a
{
    color: black;
    text-decoration: none;
}
.active_dropdown
{
    height: 180px!important;
}
/* Header Liste beim hover strich drunter */
header .list ul li::before
{
    position: absolute;
    content: '';
    width: 0%;
    height: 2px;
    background: var(--white2);
    bottom: 5px;
    transition: 0.3s ease-out;
}
header .list ul li:hover::before
{
    width: 85%;
}
/* Header Verändert sich */
.change
{
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
}
.change .logo
{
    padding: 20px 0px;
}
.change .list
{
    margin-right: 0;
}


/* Alles Zentrieren */
.container
{
    display: flex;
    justify-content: center;
}


/* Home */
#home
{
    padding: 100px;
    padding-bottom: 0;
    width: 950px;
    position: absolute;
    top: 25%;
    left: calc(50% - 475px);
}
.container_home
{
    margin-top: 0px;
}
.container_home .content
{
    display: block;
    text-align: center;
}
.container_home .content h2
{
    font-size: 4em;
    text-transform: uppercase;
    font-family: var(--font2);
    letter-spacing: 15px;
    color: #183153;
}
.container_home .content p
{
    margin-top: 10px;
    font-size: 1.5em;
    color: #c7efff;
}


/* Bilder */
#images
{
    padding-bottom: 0;
}
.container_images
{
    margin-top: 30px;
}
.container_images .content
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.container_images .content h2
{
    font-size: 2.5em;
    text-align: center;
    font-family: var(--font2);
    letter-spacing: 3px;
    margin-top: 40px;
}
.container_images .content .text
{
    width: 800px;
    margin-top: 10px;
    text-align: center;
    font-size: 1.4em;
}
.container_images .content .box
{
    background-color: transparent;
    width: 100%;
    text-align: center;
    position: relative;
    padding: 20px;
    margin-top: 20px;
}
.container_images .content .box .images img
{
    width: 400px;
    height: 250px;
    transition: 0.5s;
    cursor: pointer;
}

.box .background
{
    position: absolute;
    left: calc(50% - 130px / 2);
    top: calc(50% - 75px / 2);
}
.box .background .backimg
{
    position: relative;
    width: 130px;
    height: 75px;
    background: transparent;
    z-index: 10;
    display: none;
}
.box .background .backimg img
{
    position: absolute;
    height: 75px;
    width: 130px;
    object-fit: cover;
    transition: 0s;
    /* display: none; */
}
.box .background .backimg p
{
    font-size: 0.2em;
    color: white;
    position: absolute;
    top: 0;
    right: 2px;
    cursor: pointer;
    text-shadow: 0 0 2px black;
    z-index: 2;
}
.darker img
{
    filter: brightness(0.3);
    pointer-events: none;
}
.box .background .img_onclick img
{
    display: block;
}
.box .background .img_onclick
{
    display: block;
    animation: transition 0.6s linear forwards;
}
@keyframes transition
{
    0%
    {
        transform: scale(1);
    }
    50%
    {
        transform: scale(10.8);
    }
    100%
    {
        transform: scale(10.18);
    }
}
@media(max-width: 1870px)
{
    
    @keyframes transition
    {
        0%
        {
            transform: scale(1);
        }
        50%
        {
            transform: scale(9.9);
        }
        100%
        {
            transform: scale(9.3);
        }
    }
}
@media(max-width: 1470px)
{
    .container_images .content .box .images img
    {
        width: 300px;
        height: 200px;
    }
    @keyframes transition
    {
        0%
        {
            transform: scale(1);
        }
        50%
        {
            transform: scale(7.7);
        }
        100%
        {
            transform: scale(7);
        }
    }
}
@media(max-width: 1170px)
{
    .container_images .content .box .images img
    {
        width: 240px;
        height: 140px;
    }
    @keyframes transition
    {
        0%
        {
            transform: scale(1);
        }
        50%
        {
            transform: scale(6);
        }
        100%
        {
            transform: scale(5.6);
        }
    }
}
.background .backimg .arrows
{
    position: absolute;
    top: 0;
    left: 0px;
    font-size: 10px;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}
.background .backimg .arrows span
{
    margin: 0 1px 0 1px;
    cursor: pointer;
    color: #f5deb3;
}



/* Preis */
#price
{
    padding: 0px;
    padding-bottom: 0;
}
.container_price
{
    margin-top: 30px;
}
.container_price .content
{
    display: block;
}
.container_price .content h2
{
    font-size: 3em;
    font-family: var(--font2);
    letter-spacing: 3px;
    text-align: center;
}
.container_price .content .main_content
{
    font-size: 2em;
    margin-top: 20px;
}


/* Kalender */
#calendar
{
    padding: 15px;
    padding-bottom: 0;
}
.container_calendar
{
    margin-top: 30px;
}
.container_calendar .content
{
    display: block;
}
.container_calendar .content h2
{
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 10px;
}
.container_calendar .content .main_content
{
    position: relative;
}
.container_calendar .content .main_content h2
{
    font-size: 1.6em;
    position: absolute;
    width: 100%;
    z-index: 10;
}
.container_calendar .content .main_content .calendar
{
    clip-path: inset(0 0 3.5% 0);
    border-radius: 7px;
    margin-top: 8px;
    height: 700px;
    width: 900px;
}


/* Anfahrt */
#journey
{
    padding-bottom: 0;
}
.container_journey
{
    margin-top: 30px;
}
.container_journey .content
{
    display: block;
}
.container_journey .content h2
{
    font-size: 2.5em;
    text-align: center;
}
.container_journey .content iframe
{
    width: 1000px;
    height: 800px;
}


/* Kontakt */
#contact
{
    padding: 20px;
}
.container_contact
{
    margin-top: 30px;
}
.container_contact .content
{
    display: block;
}
.container_contact .content h2
{
    font-size: 2.5em;
    text-align: center;
}
.container_contact .content .main_content
{
    display: flex;
    margin-top: 10px;
}
.container_contact .content .main_content .card
{
    width: 430px;
    height: 480px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border: 1px solid #00000021;
    transition: 0.3s;
    left: calc(50% - (430px / 2));
}
.card:hover
{
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    transform: translateY(-30px);
}
.card img
{
    width: 190px;
    height: 190px;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - (190px / 2));
    top: 40px;
    border: 1px solid green;
    box-shadow: 0 5px 10px rgba(0,0,0,0.4);
}
.card .infos
{
    margin-top: 200px;
}
.card p
{
    font-size: 1.5em;
}
.card a
{
    color: brown;
    font-weight: bold;
    margin-top: 20px;
}
.card1
{
    margin-right: 60px;
}
.card2
{
    margin-left: 60px;
}

@media(max-width:830px)
{
    .cards
    {
        display: block;
    }
    .card
    {
        margin-bottom: 70px;
        margin-left: 0;
        margin-right: 0;
    }
}


/* Pfeil nach oben */
.arrow
{
    position: fixed;
    width: 50px;
    height: 70px;
    background: #999999;
    justify-content: center;
    align-items: center;
    right: 20px;
    bottom: 20px;
    border-radius: 5px;
    display: none;
    z-index: 12;
}
.arrow img
{
    width: 30px;
    height: 30px;
    transition: 0.2s;
}
.arrow:hover
{
    background: linear-gradient(to top, #777,#999);
}
.arrow:hover img
{
    transform: translateY(-10px);
}
.block
{
    display: flex;
}


/* Footer */
footer
{
    margin-top: 20px;
    z-index: 10;
    background: #001623;
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
footer .content
{
    background: transparent;
    width: 85%;
    height: 99%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .content .copy
{
    font-size: 1.2em;
    color: #00fe78;
}
footer .content .links a
{
    font-size: 1.5em;
    color: white;
    text-decoration: underline;
    cursor: pointer;
}
footer .content .links .impr
{
    margin-right: 20px;
}
footer .content .massage
{
    color: red;
    font-size: 1.3em;
    display: flex;
    font-weight: bold;
}
/* Datenschutzerklärung */
#footer .dse
{
    position: absolute;
    width: 450px;
    height: 600px;
    background: #f4c560;
    right: 0;
    margin-top: -600px;
    transition: 0.3s ease-out;
    display: none;
}
#footer .dse h2
{
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}
#footer .dse p
{
    font-size: 1.2em;
    padding: 0 10px 0 10px;
}
.dseOn
{
    display: block!important;
}