@import url("reset.css");

/*-----------FONTS-----------*/

/* roboto-300 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v19-latin-300.eot');
    /* IE9 Compat Modes */
    src: local('Roboto Light'), local('Roboto-Light'),
        url('../fonts/roboto-v19-latin-300.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/roboto-v19-latin-300.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/roboto-v19-latin-300.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/roboto-v19-latin-300.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/roboto-v19-latin-300.svg#Roboto') format('svg');
    /* Legacy iOS */
}

/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v19-latin-regular.eot');
    /* IE9 Compat Modes */
    src: local('Roboto'), local('Roboto-Regular'),
        url('../fonts/roboto-v19-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/roboto-v19-latin-regular.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/roboto-v19-latin-regular.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/roboto-v19-latin-regular.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/roboto-v19-latin-regular.svg#Roboto') format('svg');
    /* Legacy iOS */
}

/* roboto-500 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v19-latin-500.eot');
    /* IE9 Compat Modes */
    src: local('Roboto Medium'), local('Roboto-Medium'),
        url('../fonts/roboto-v19-latin-500.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/roboto-v19-latin-500.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/roboto-v19-latin-500.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/roboto-v19-latin-500.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/roboto-v19-latin-500.svg#Roboto') format('svg');
    /* Legacy iOS */
}


* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}



/*-----------FONTGESTALTUNG-----------*/

body {
    font-family: 'Roboto';
    overflow-x: hidden;
    line-height: 1.3;
}

p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #4D763E;
}

a {
    color: #4D763E;
    text-decoration: none;
    cursor: pointer;
}

h1 {
    font-size: 60px;
    margin-bottom: 10px;
    color: #fff
}

h1 b {
    font-size: 30px;

}

h2 {
    font-size: 35px;
    margin-bottom: 30px;

    color: #4D763E;
}

#service h2, #koerperschmuck h2, #autoschmuck h2 {
    color: #fff;
}

h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #4D763E;
}

h4 {
    font-size: 18px;
    font-weight: 500;
    color: #4D763E;
}


strong {
    font-weight: 500;
    font-size: 16px;
    font-weight: 600;
}

.line {
    background-color: #000;
    width: 50px;
    height: 3px;
    margin-bottom: 25px;
}

.list li{
  
    margin-bottom: 10px;
}





/*-----------NAVI-----------*/



nav {
    position: fixed;
    background: #fff;
    width: 100%;
    z-index: 101;
    top: 0;
    text-align: right;
    padding: 70px 5%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1.6px 3.6px 0 rgb(0 0 0 / 13%), 0 0.3px 0.9px 0 rgb(0 0 0 / 11%);

}


.logo {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    top: 11px;
    width: 150px;
    height: auto;
}


nav ul {
    width: 50%;
}

nav ul:first-of-type {
    text-align: left;
}

nav ul li {
    display: inline-block;
    margin: 0 2%;

}

nav ul li a {
    text-decoration: none;
    font-size: 20px;
    color: #4D763E;
    font-weight: 600;
}

nav ul li strong {
    color: #4D763E;
    font-weight: 600;
}

nav ul li a:hover {
    border-bottom: 1px solid #4D763E;
}

.navi {
    display: none;
}

.burger-nav {
    position: fixed;
    right: 0;
    top: -11px;
    color: #fff;
    z-index: 9999;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    font-size: 40px;
    cursor: pointer;
    transition: all .4s ease-in-out;
    background-color: #4D763E;
    padding: 16px 21px 21px 19px;
}

.burger-nav b {
    transition: all .4s ease-in-out;
    float: left;
    margin-left: 0;
    font-family: 'Roboto';
    font-style: normal;
}

.burger-nav-anim {
    top: -5px;
    color: #fff;
}

.burger-nav-anim b:first-of-type {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.burger-nav-anim b:nth-of-type(2) {
    opacity: 0;
}

.burger-nav-anim b:last-of-type {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-left: -80%;
}

.full-screen-nav {
    position: fixed;
    z-index: 9998;
    width: 100%;
    height: 100vh;
    background: #4d763ed8;
    display: table;
    visibility: hidden;
    transition: all .4s ease-in-out;
    opacity: 0;
}

.full-screen-nav ul {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.full-screen-nav ul li a {
    padding: 20px;
    display: block;
    font-size: 30px;
    color: #fff;
    transition: all .4s ease-in-out;
    text-decoration: none;
}

.fadeIn {
    opacity: 1 !important;
    visibility: visible !important;
}

.fadeUp {
    opacity: 1 !important;
    margin-top: 0 !important;
}


/*-----------ASIDE-----------*/


.direktnav {
    position: fixed;
    right: 0;
    top: 300px;
    z-index: 999;
}

.direktnav li {
    list-style: none;
    background-color: #4D763E;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 40px 0 0 40px;
}

.direktnav li img {
    width: 30px;
}


.direktnav li:hover {
    background-color: #8CA383;
}



/*-----------SUBNAV-----------*/

.subnav {
    position: fixed;
    bottom: 0;
    color: #fff;
    z-index: 999;
    transition: 0.5s;
    width: 100%;
    text-align: right;
}

.subnav a {
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
    background-color: #4D763E;
    /* margin-left: 20px; */
    line-height: 23px;
}

.subnav a:nth-of-type(2) {
    margin-right: 5%;
}

.subnav a:hover {
    color: #dfdfdf;
}


/*-----------HEADER-----------*/

#dsa-check-all.dsa-cookie-button{
    background-color: #4D763E!important;
}

.dsa-cookie-notice-form input[type="checkbox"]:checked + label::before, .dsa-cookie-notice-form input[type="checkbox"]:disabled + label::before {
    box-shadow: inset 0 0 0 3px #fff;
    background-color: #4D763E!important;
}

header {
    background: url("../images/header-hintegrund.webp") no-repeat;
    height: 95vh;
    width: 95%;
    left: 2.5vw;
    top: 190px;
    border-radius: 30px;
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    position: relative;
}


html {
    overflow: hidden;
}


#stoerer {
    position: absolute;
    left: 5%;
    top: 45vh;
    padding: 30px 50px;
}

#stoerer p {
    font-size: 40px;
    color: #fff;

}

/*-----------AUFBAU-----------*/

html {
    scroll-behavior: smooth;
}


.content {
    display: flex;
    width: 100%;
    padding: 120px 5%;

}

.col {
    width: 48%;
}



.btn {
    background-color: #000;
    color: #fff;
    padding: 5px 30px;
    transition: 0.5s;
}

.btn:hover {
    background-color: #6d6d6d
}

::-moz-selection {
    background: #fff600;
    color: #000;
}

::selection {
    background: #fff600;
    color: #000;
}

.polaroids {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    display: block;
}

/*-----------Service-----------*/

#service {
    background-color: #8CA383;
    position: relative;
}



#service .content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}




.blumen-oben {
    position: absolute;
    top: -120px;
    left: -10vh;
}

.blumen-unten {
    position: absolute;
    top: 0;
    width: 110%;
    left: -5%;
}

/*-----------Service Popups-----------*/

body {    
    background-size: cover;
    height: 100vh;
}


.button {
    font-size: 1em;
    padding: 20px;
    color: #fff;
    background: #4D763E;
    border-radius: 20px/50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
    border-radius: 30px;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.button:hover {
    background: #fff;
    color: #4D763E;
    transition: 0.5s;
}







.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 800ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    margin: 70px auto;
    padding: 40px;
    background: #8CA383;
    border-radius: 30px;
    width: 100%;
    max-width: 600px;
    line-height: 1.6;
    position: relative;
    transition: all 5s ease-in-out;
    color: #fff;

}

.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #4D763E;
}

.popup .close:hover {
    color: #fff;
}

.popup .popup-text {
    /* max-height: 30%; */
    overflow: auto;
    z-index: 999999999;
}

.popup h3{
    color: white;
}





/*-----------Brautsträuße-----------*/





#brautstraeusse .content {
    padding: 180px 5%;
    flex-wrap: wrap;
    justify-content: center;

}

#brautstraeusse {
    background: url("../images/brautstrauss-hintegrund.webp") no-repeat center center / cover;
    left: 2.5vw;
    top: 0;
    position: relative;
    width: 95%;


}

#brautstraeusse .col {
    width: 100%;
}


#brautstraeusse .col:first-of-type {
    max-width: 800px;
    text-align: center;
}

.galerie {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.galeriebild img {
    width: 250px;
    height: 350px;
    object-fit: cover;

    background-color: #CCD9C7;
    text-align: center;
    /* padding: 25px 25px 100px 25px; */
    outline: #CCD9C7 solid 20px;
    padding: 0 0 100px 0;
    margin: 20px;
    border-radius: 2px;

}

.slick-initialized .slick-slide {
    display: flex;
    justify-content: center;
}


.slick-dots li button:before {
    font-size: 40px;
    color: #4D763E;
}

.slick-dots li.slick-active button:before {
    color: #4D763E;
}

/* .galeriebild {
    background-color:#CCD9C7 ;
    text-align: center;
    padding: 25px 25px 100px 25px;
    margin: 15px;
    width: 300px !important;
} */


/*-----------Körperschmuck-----------*/

#koerperschmuck {
    background-color: #8CA383;
    position: relative;

}

#koerperschmuck .blumen-oben {
    position: absolute;
    top: -120px;
    left: -10vh;
}

#koerperschmuck .blumen-unten {
    position: absolute;
    bottom: -120px;
    left: -10vh;
}



.blumen-oben {
    position: absolute;
    top: -120px;
    left: -10vh;
}

.blumen-unten {
    position: absolute;
    top: 0;
    width: 110%;
    left: -5%;
}



#koerperschmuck p {
    color: #fff;
}


#koerperschmuck .content {
    align-items: center;
    justify-content: space-between;
}


#koerperschmuck .button {
    max-width: 250px;
    margin-top: 30px;
}

/*-----------Tischdeko-----------*/



#tischdeko .content {
    padding: 180px 5%;
    flex-wrap: wrap;
    justify-content: center;

}

#tischdeko .col {
    width: 100%;
}


#tischdeko .col:first-of-type {
    max-width: 800px;
    text-align: center;
}


#tischdeko {
    background: url("../images/tischdeko-hintergrund.webp") no-repeat;
    width: 95%;
    left: 2.5vw;
    top: 0vh;
    bottom: 0vh;
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    position: relative;
}

#tischdeko .button {
    max-width: 250px;
    margin: 0 auto;
}

#tischdeko p {
    margin-bottom: 30px;
}

#popup8 .popup-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;

}

#popup8 .popup {
    max-width: 1000px;
}


#popup8 .popup-text p {
    width: 60%;
    color: #fff;
    text-align: left;
}


#popup8 .popup-text img {
    width: 40%;
}




/*-----------Auto-&Kirchenschmuck-----------*/
#autoschmuck {
    background-color: #8CA383;
    position: relative;
}

#autoschmuck .blumen-oben {
    position: absolute;
    top: -120px;
    left: -10vh;
}

#autoschmuck .blumen-unten {
    position: absolute;
    bottom: -120px;
    left: -10vh;
}

#autoschmuck p {
    color: #fff;
}

#autoschmuck .content {
    align-items: center;
    justify-content: space-between;
}

#autoschmuck .button {
    max-width: 250px;
    margin-top: 30px;
}

/*-----------Beratungstermin-----------*/


#beratungstermin {
    background: url("../images/beratungstermin-hintergrund.webp") no-repeat;
    width: 95%;
    left: 2.5vw;
    top: 0vh;
    bottom: 0vh;
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    position: relative;
    border-radius: 30px;

}


#beratungstermin .col {
    width: 100%;
}


#beratungstermin .col:first-of-type {
    max-width: 800px;
    text-align: center;
}

#beratungstermin .content {
    justify-content: center;
    padding: 180px 5% 120px 5%;
}




#kontakt b {
    font-weight: 500;
    color: #8CA383;
}

#kontakt p {
    font-size: 20px;
    line-height: ;
}

/*-----------FOOTER-----------*/

footer {
    padding: 0px 0;
    background-color: #fff
}

footer p,
footer h2,
footer h3,
footer a {
    color: #4D763E;
}

footer a {
    text-decoration: underline;
}


/*-----------RESPONSIVE-----------*/

@media screen and (max-width: 1366px) {

    header,
    .puffer1,
    .puffer2 {
        background-attachment: scroll;
    }
}

@media screen and (max-width: 1160px) { 

    nav {
        background: none;
        box-shadow: 0 0 0;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        padding: 0;
    }

    nav ul {
        display: none;
    }

    header{
        height: 900px;
    }

    #stoerer{
        top: 335px;
    }

    .navi {
        display: block;
    }
}

@media screen and (max-width: 900px) {

    #service .content, #koerperschmuck .content, #autoschmuck .content,   #kontakt .content{
        flex-wrap: wrap;
    }

    #service .content .col, #koerperschmuck .content .col, #autoschmuck .content .col,   #kontakt .content .col{
        width: 100%;
        margin-bottom: 30px;
    }

    #service .content .col:first-of-type {
        text-align: center;
       
    }

    #koerperschmuck .content {
        flex-direction: column-reverse;
        text-align: center;
    }

    #koerperschmuck .button, #autoschmuck .button{
        margin: 0 auto;
    }

    #autoschmuck .content{
        text-align: center;
    }

    #popup8 .popup-text{
        flex-wrap: wrap;
    }

    #popup8 .popup-text p{
        width: 100%;
    }

  
}


@media screen and (max-width: 700px) {
    main {
        text-align: center;
    }
}

@media screen and (max-width: 500px) {
    aside img {
        width: 40px;

    }

    #stoerer {
        left: 0;        
    }

    h1{
        font-size: 40px;
    }

    #stoerer p{
        font-size: 30px;
    }

    header, #brautstraeusse, #tischdeko, #beratungstermin {
        width: 100%;
        left: 0;
    }


    .mail {
        top: 250px
    }

    .phone {
        top: 320px
    }

    .button{
        padding: 7px;
        font-size: 17px;
    }

    .popup{
        padding: 15px;
    }

    #maps{
        margin-bottom: 30px;
    }

}