/*Allgemeine-Styles-Start -----------------------------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
}

h2 {
    text-align: center;
    padding: 2rem 0;
    text-decoration: underline;
    font-size: 2em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.wrapper {
    width: 75%;
    margin: auto;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*Allgemeine-Styles-End -----------------------------------------------------------------------*/

/* Button-Start -------------------------------------------------------------------------------*/

.button {
    display: inline-block;
    padding: 1rem;
    background-color: #F19D8A;
    text-decoration: none;
    color: black;
    box-shadow: 1px 1px 5px 0 black;
    border: 2px solid black;
    border-radius: 1rem;
    transition: 0.2s ease-in-out;
    width: 200px;
    text-align: center;
    cursor: pointer;
}

.button:hover {
    color: white;
    border: 2px solid white;
    box-shadow: 1px 1px 5px 0 white;
}

/* Button-End -------------------------------------------------------------------------------*/

/* Navigation-Start ---------------------------------------------------------*/

#topnav {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    height: 100px;
    background-color: #FEE899;
}

#topnav ul {
    display: none;
    gap: 10px;
    list-style: none;
    font-size: 1.5rem;
}

#topnav a {
    color: black;
    text-decoration: none;
}

#topnav a:hover {
    text-decoration: underline;
}


#topnav img {
    height: 100px;
    width: 100px;
}

#topnav .logo {
    transition: 0.2s;
}

#topnav .logo:hover {
    transform: scale(1.05);
}

/* Burger-Icon-Start ----------------------------------------------------------------*/

label {
    display: flex;
    flex-direction: column;
    width: 70px;
    cursor: pointer;
}

label span {
    background: #F19D8A;
    border-radius: 10px;
    height: 7px;
    margin: 7px 0;
    transition: .3s cubic-bezier(0.68, -0.6, 0.32, 1.6);

}


span:nth-of-type(1) {
    width: 50%;

}

span:nth-of-type(2) {
    width: 100%;
}


span:nth-of-type(3) {
    width: 75%;

}


input[type="checkbox"] {
    display: none;
}


input[type="checkbox"]:checked~span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(8px, 0px)
}


input[type="checkbox"]:checked~span:nth-of-type(2) {

    transform-origin: top;
    transform: rotatez(-45deg)
}


input[type="checkbox"]:checked~span:nth-of-type(3) {

    transform-origin: bottom;
    width: 50%;
    transform: translate(30px, -11px) rotatez(45deg);

}

/* Burger-Icon-End ----------------------------------------------------------------*/

#mobile-nav {
    position: fixed;
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    top: 75px;
    right: 0;
    transition: 1s;
    opacity: 0%;
    z-index: -110;
    text-align: center;
    background: #FEE899;
    width: 100%;
    font-weight: 500;
    padding-bottom: 10px;
}


#mobile-nav.active {
    top: 100px;
    opacity: 100%;
    z-index: 1;
}

/* Navigation-End -------------------------------------------------------------*/

/* Hero-Section-Start ----------------------------------------------------------*/

#hero {
    background: linear-gradient(180deg, #fee899, #62C6B9);
    text-align: center;
    padding: 0 0 2rem 0;
}

#hero h1 {
    font-size: 2.5rem;
    padding-top: 5rem;
}

#hero p {
    font-size: 1.5rem;
    font-weight: 500;
    padding-top: 5rem;
}

#hero a {
    display: block;
    width: 250px;
    text-align: center;
    margin: 5rem auto 0;
}

/* Hero-Section-End ---------------------------------------------------------------------------*/

/* About-Section-Start ------------------------------------------------------------------------*/

#about {
    background-color: #62C6B9;
    padding: 2rem 0;
}

.box-about {
    max-width: 600px;
    min-height: 150px;
    border-radius: 1rem 0 1rem 0;
    padding: 1rem;
    background-color: transparent;
    box-shadow: 2px 2px 4px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

article h3 {
    padding-bottom: 1rem;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
}

.flex-article {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.position {
    display: flex;
    justify-content: center;
}

/* About-Section_End ----------------------------------------------------------------------------------*/

/* Leistungen-Section-Start ----------------------------------------------------------------------------------*/

#leistungen {
    border-top: 2px solid #F19D8A;
    padding-bottom: 1rem;
}

#leistungen h2 {
    font-size: 2em;
    text-align: center;
    padding: 2% 0;
}

.leistung {
    max-width: 300px;
}

.leistung h3 {
    color: #162A96;
    padding: 2% 0;
}

.container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 2em;
    padding: 2% 0;
}

.icon {
    display: flex;
    color: #F19D8A;
    font-size: 3em;
    justify-content: center;
    padding-bottom: 0.5em;
}

/* Leistungen-Section-End ---------------------------------------------------------------------------------*/

/* Preise-Section-Start -----------------------------------------------------------------------------------------*/

#preise {
    margin-bottom: -10%;
}

#preise h2 {
    font-size: 2em;
    padding: 2% 0 5%;
    text-align: center;
}

.offer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 300px;
    border-radius: 1em;
    overflow: hidden;
    box-shadow: 2px 2px 4px 5px rgba(0, 0, 0, 0.2);
    background-color: white;
}

.offer-flex {
    display: flex;
    gap: 2em;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.offer div {
    display: flex;
    flex-direction: column;
}

.offer-head {
    text-align: center;
    padding: 5% 2% 10%;
    background-color: #f19d8a;
}

.offer-head h3 {
    font-size: 1.5em;
}

.offer ul {
    padding: 0 5% 0;
    padding: 0 1em 1em;
    list-style-type: none;
    text-align: center;
}

.offer ul li {
    padding: 5% 0;
    font-weight: bold;
    border-bottom: 1px solid #F19D8A;
    width: 200px;
    margin: 0 auto;
}

.offer ul li:last-child {
    border-bottom: none;
}

.offer-button {
    margin: 0 auto 5%;
}

.preis {
    text-align: center;
    font-size: 3em;
    font-weight: 500;
    padding: 5% 0;
}

#preise_extras {
    background-color: #62C6B9;
    padding: 12% 0 0;
    border-top: 2px solid #F19D8A;
}

#preise_extras h2 {
    padding-bottom: 1em;
    text-align: center;
}

.flexbox article {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 400px;
    padding: 1rem;
    box-shadow: inset 0px 0px 4px 5px rgba(241, 157, 138, 0.5);
    border-radius: 1em;
    background-color: white;
}

.flexbox article p {
    margin-top: 1em;
    padding: 0 0 5%;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.3em;
}

.flexbox article p:first-child {
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: underline;
}

.flexbox {
    display: flex;
    justify-content: center;
    gap: 3em;
    padding-bottom: 2%;
    flex-wrap: wrap;
}

/* Preise-Section-End ------------------------------------------------------------------------------*/

/* Kontakt-Section-Start ---------------------------------------------------------------------------------*/

#kontakt {
    background: linear-gradient(#62C6B9, #fee899);
}

#kontakt h2 {
    text-align: center;
}

/* Kontaktfomular --------------------------------------------------------------------------------------*/

.booking-form {
    text-align: left;
}

.booking-form .form-group {
    margin-bottom: 15px;
}

.booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 300px;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.center {
    text-align: center;
}

/* Kontaktformular ----------------------------------------------------------------------------------*/

figure {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-evenly;
}

figure p {
    margin: 1em 0;
}

figure p:first-child {
    font-weight: bold;
}

figure a {
    text-decoration: none;
    color: black;
}

.image {
    margin-top: 5%;
    height: 200px;
    width: 200px;
    border-radius: 9999em;
    border: 2px solid #F19D8A;
}

.kontakt-icon {
    color: #162A96;
    font-size: 1.5em;
}

/* Kontakt-Section-End ---------------------------------------------------------------------------------*/

/* Footer-Start ----------------------------------------------------------------------------------------------*/

footer {
    background: #FEE899;
    text-align: center;
    padding: 2% 0;
}

footer a {
    text-decoration: none;
    color: black;
}

footer a:hover {
    text-decoration: underline;
}

.icon-footer {
    color: #F19D8A;
}

/* Footer-End -----------------------------------------------------------------------------------------------*/


/* Impressum-Start -------------------------------------------------------------------------------------------*/

#impressum {
    background: linear-gradient(#62C6B9, #fee899);
    min-height: 87vh;
    padding: 5% 0;
}

#impressum h2 {
    font-size: 1em;
    text-align: left;
    text-decoration: none;
}

#impressum p {
    line-height: 2em;
}

/* Impressum-End ---------------------------------------------------------------------------------------------*/

/* Datenschutz-Start -----------------------------------------------------------------------------------------*/

#datenschutz {
    background: linear-gradient(#62C6B9, #fee899);
    min-height: 87vh;
    padding: 5% 0;
}

#datenschutz h2 {
    text-align: left;
    text-decoration: none;
}

#datenschutz p {
    line-height: 1.5em;
}

h3 {
    padding: 2% 0 1%;
}

h4 {
    padding: 2% 0;
}

#datenschutz li {
    padding: 1% 0;
}


/* Datenschutz-End -------------------------------------------------------------------------------------------*/

/* Media-Queries-Start --------------------------------------------------------------------------------------*/
/* Desktop ---------------------------------------------------------------------------------------------------*/

@media (min-width: 1025px) {
    #topnav ul {
        display: flex;
    }

    #mobile {
        display: none;
    }

    /* Kontakt-Section-Start ---------------------------------------------------------------------------------*/

    /* Kontaktfomular --------------------------------------------------------------------------------------*/

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        width: 500px;
    }


    /* Footer-Start ----------------------------------------------------------------------------------------------*/

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

    /* Footer-End -----------------------------------------------------------------------------------------------*/
}

@media (min-width: 1440px) {
    .desktop {
        width: 60%;
    }


}

@media (min-width: 1800px) {
    .desktop {
        width: 50%;
    }
}

@media (min-width: 2200px) {
    .desktop {
        width: 40%;
    }
}