@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Barrio&family=Roboto:ital,wght@0,100;0,300;0,400;0,700;1,100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allerta+Stencil&family=Lato:wght@100;300;400;700;900&family=Swanky+and+Moo+Moo&display=swap');


:root {
    --primary-color: rgba(14, 16, 18, 0.75);
    --overlay-color: rgba(14, 16, 18, 0.938);
    --menu-speed: 1s;
    --title-font: Allerta Stencil;
    --text-font: Lato;

}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4;
    background-color: #f5f5f5;
}

.container {
    margin: auto;
    overflow:hidden;
    padding: 0 3rem;
}

.showcase {
    background-color: #f5f5f5;
    color: black;
    height: 100%;
    position: relative;
}

.showcase:before {
    content:'';
    background: whitesmoke no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.showcase .showcase-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

/*Home*/

.showcase .showcase-inner .logo {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-content: center;

}
.showcase .showcase-inner .logo > img {
    max-width: 600px;
}


.showcase .showcase-inner .banner > img {
    width: 100vw;
}


     


/*History*/

.showcase .history {
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.showcase .history .title {
    margin-bottom: 3%;
}

.showcase .history .title > h1 {
    font-family: var(--title-font);
    font-size: 36px;
    letter-spacing: 2vw;
    text-transform: uppercase;
}

.showcase .history .letterhistory {
    width: 60vw;
}

.showcase .history .letterhistory > p {
    font-family: var(--text-font);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 4px;
    line-height: 2.5rem;
}

.showcase .history .letterhistory > p > a {
    font-weight: bold;
    color: gray;
    text-decoration: none;
}

/*Lachs*/
.showcase .product {
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 15vh;
}


.showcase .product .title {
    margin-bottom: 3%;
}

.showcase  .product .title > h1 {
    font-family: var(--title-font);
    font-size: 36px;
    letter-spacing: 2vw;
    text-transform: uppercase;
}

.showcase .product .salmon {
    width: 60vw;
    align-self: auto;
}

.showcase .product .salmon > p {
    font-family: var(--text-font);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 4px;
    line-height: 2.5rem;
    width: 100%;  
}
.showcase .product .salmon > p > a {
    font-weight: bold;
    color: gray;
    text-decoration: none;
}

/*Partner*/
.showcase .partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 5%;
}

.showcase .partner .title > h1 {
    font-family: var(--title-font);
    font-size: 36px;
    letter-spacing: 2vw;
    text-transform: uppercase;
    margin-left: 10vh;
    margin-right: 10vh;
    display: flex;
    align-self: center;
    text-align: center;
    justify-content: center;
    margin-bottom: 5%;
}

.showcase .partner .logos > img {
    width: 175px;
    margin-left: 10vh;
    margin-right: 10vh;
    margin-top: 3%;
}

/*Rezepte*/
.showcase .rezepte {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.showcase .rezepte .title > h1 {
    font-family: var(--title-font);
    font-size: 36px;
    letter-spacing: 2vw;
    text-transform: uppercase;
    margin-top: 2%;
    margin-left: 10vh;
    margin-right: 10vh;
    display: flex;
    align-self: center;
    text-align: center;
    justify-content: center;
}



/*Menu*/

.menu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.menu-wrap .toggler {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    opacity: 0;
}

.menu-wrap .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 1rem;
    background: rgba(224, 224, 224, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

/*Hamburger lines*/

.menu-wrap .hamburger > div {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.menu-wrap .hamburger > div:before,
.menu-wrap .hamburger > div:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
}

.menu-wrap .hamburger > div:after {
    top: 10px;
}

/*Toggler animate*/

.menu-wrap .toggler:checked + .hamburger > div {
    transform: rotate(135deg);
    background-color: #fff;
}

/*lines to x*/

.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
    top: 0;
    transform: rotate(90deg);
    background-color: #fff;
}

/*rotate on hover when checked*/
.menu-wrap .toggler:checked:hover + .hamburger > div {
    transform: rotate(225deg);
    background-color: #fff;
}

/*show menu*/
.menu-wrap .toggler:checked ~ .menu {
 visibility: visible;
}
.menu-wrap .toggler:checked ~ .menu > div {
    transform: scale(1);
    transition-duration: var(--menu-speed);
}
.menu-wrap .toggler:checked ~ .menu > div > div {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.menu-wrap .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-wrap .menu > div {
    background: var(--overlay-color);
    border-radius: 45%;
    width: 200vw;
    height: 200vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
}

.menu-wrap .menu > div >div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vw;
    opacity: 0;
    transition:  opacity 0.4s ease;
}

.menu-wrap .menu > div >div > ul > li {
    list-style: none;
    color: white;
    font-size: 3rem;
    font-family: Swanky and Moo Moo;
    padding: 1rem;
}

.menu-wrap .menu > div >div > ul > li > a {
    color: white;
    text-decoration: none;
    transition: color 0.4s ease;

}  


/*Footer*/

footer {
    background-color: var(--overlay-color);
}
.footerContainer {
    width: 100%;
    padding: 5vh;
    margin-top: 0;
}
.socialIcons {
    display: flex;
    justify-content: center;
    margin: 2vh;
}
.socialIcons a {
    text-decoration: none;
    margin: 2vh;
    padding: 2vh;
    background-color: white;
    border-radius: 75%;
}
.socialIcons a i{
    font-size: 3em;
    color: var(--overlay-color);
    opacity: 0.9;
}
/*Hover Effect Footer Icones*/
.socialIcons a:hover{
    background-color: var(--overlay-color);
    transition: 0.5s;   
}

.socialIcons a:hover i {
    color: white;
    transition: 0.5s;
}


.footerNav{
    margin:2vh 0; 
}
.footerNav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;

}
.footerNav ul li a {
    color: white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;
}
.footerNav ul li a:hover {
    opacity: 1;
}

.footerBottom {
    background-color: var(--overlay-color);
    padding: 2vh;
    text-align: center;
    opacity: 0.7;
}

.footerBottom p {
    color: white;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}

.footerBottom p span {
    opacity: 0;
}

@media (max-width: 700px){
    .footerNav ul{
        flex-direction: column;
    }
    .footerNav ul li {
        width: 100%;
        text-align: center;
        margin: 5px;
    }
}

/*Retzepte Slider*/
.slider {
   position: relative;
   width: 70%;
   overflow: hidden;
   margin-top: 5%;
}

.images {
    display: flex;
    width: 100%;
}
.images img {
    width:100%;
    transition: all 0.5s ease-in-out;
}
.images input{
    display: none;
}
.dots{
    display: flex;
    justify-content: center;
    margin-top: 5%;
}
.dots label {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: solid #000 1.5px;
    cursor: pointer;
    transition: all 0.5s ease-in-out; 
    margin: 5px;
}
.dots label:hover {background: #000;}
#img1:checked ~ .m1 {
    margin-left: 0;
}
#img2:checked ~ .m2 {
    margin-left: -100%;
}
#img3:checked ~ .m3 {
    margin-left: -200%;
}
#img4:checked ~ .m4 {
    margin-left: -300%;
}
#img5:checked ~ .m5 {
    margin-left: -400%;
}

/*Rezept Download Button*/
.btn {
    background-color: #000;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0 5px;
    padding: 16px 32px;
    border-radius: 5000px;
    transition: all 0.3s;
    margin: 5%;
    text-decoration: none;
}
.btn:hover {
    transform: scale(1.15);
}

