:root{
    --primary-color:#F5CC09;
    --secondary-color: #A2C181;
    --accent-color: rgba(162, 193, 129, 0.5); 
    --text-color:#000; 
    --background-color:#000;
    --h1: clamp(32px, 8vw, 48px);
    --h2: clamp(28px, 6vw, 40px);
    --h3: clamp(24px, 5vw, 36px);
    --h4: clamp(20px, 4vw, 32px);
    --h5: clamp(18px, 3vw, 24px);
    --h6: clamp(16px, 2vw, 20px);
}
html{
    scroll-padding: 100px;
    scroll-behavior: smooth;
}
body{
    margin: 0;
    overflow-x: hidden;
}

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

.button {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem; 
    font-weight: 700;
    font-size: 1rem; 
    line-height: 1.5rem;
    color: white;
    background-color: transparent; 
    transition: all 150ms ease-in-out;
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    border: none; 
    cursor: pointer; 
  }
  
  .button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

.flex{
    display: flex;
}

.flex-col-row{
    flex-direction: row;
}
.flex-col{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flex-start{
    display: flex;
    justify-content: start;
    place-items: start;
}

.flex-center{
    display: flex;
    justify-content: center;
    place-items: center; 
}

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

.w-50{
    width: 50%;
}
.w-100{
    width: 100%;
}

.z0{
    z-index: 0;
}
.z1{
    z-index: 1;
}

.pos-relative{
    position: relative;
}
.pos-absolute{
    position: absolute;
}

.nav-link{
    text-align: center;
    font-family: "Mercury Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
}

.link-underline{
    text-decoration: underline;

}

.hidden{
    display: none;
}

.block{
    display: block;
}

.content{
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    position: relative; 
}

.content-inner{
    position: absolute;
    bottom: 0;
    z-index: 21;
    padding-top: 56px;
    padding-bottom: 32px;
    padding-left: 120px;
    padding-right: 120px;
    background-image: url(../assets/Background.png);
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: cover;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.content-inner-intro{
    position: relative;
    z-index: 23;
}

.text-background{
    background-color: var(--accent-color);
}

.hl-1{
    color: black;
    text-align: center;
    font-family: "Mercury Display";
    font-size: var(--h1);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.hl-2{
    font-family: "Mercury Display";
    font-size: var(--h2);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 24px;
    text-align: center;
}

.hl-3{
    font-family: "Mercury Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 24px;
}
/* Header */
header {
    position: relative;
    display: block;
    width: 100vw;

    overflow: visible; /* Ensure no parent restricts overflow */
    background-image: url('../assets/Background.png');
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover; /* This won't affect the background-image; consider removing it */
}

/* Burger Menu */
.burgerMenue {
    display: none; /* Assuming this is for larger screens */
}

/* Header Logo */
.header-logo {
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 100%;
    padding-top: 32px;
    background-image: url('../assets/Background.png');
    z-index: 1001;
    position: relative;
}

.header-logo-mobile{
    display: none;
}
.navigationBar {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
    background-image: url('../assets/Background.png');
    position: sticky;
    top: 0; 
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease; 
}




.a-nav-dt{
    text-transform: uppercase;
}

.sidenav{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-image: url('../assets/Background.png');
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: cover;
    padding-top:64px;
    padding-bottom:64px; 

}

.sidenav-content{
    z-index: 101;

}

.sidenav-logo{
    display: flex;
    justify-content: center;    
    place-items: center;
    padding-bottom: 32px;
}

.sidenav-nav{
    display:flex; 
    flex-direction: column;
    gap: 32px;
}

.close{
    position: absolute;
    z-index: 120;
    margin-top: 0px;
    left: 24px;
}

.close-inner{
    width: 40px;
    height: auto;
}

.DT-Header-Img{
    display: block;
}

.MOB-Header-Img{
    display: none;
}

.DT-Header-Img-inner{
    width: 100vw;
    height: calc(100vh - 225px);
    object-fit: cover;
    object-position: top;
}

.MOB-Header-Img-inner{
    width: 100vw;
    height: calc(100vh - 188px);
    object-fit: cover;
    object-position: top;
}

/* Introtext */
.text-intro{
    text-align: center;
    min-height: 96px;
}

.styling-element-info{
    position: absolute;
    z-index: -1;
    bottom: 32px;
    left: 5%;
}

.content-intro{
    border-top-right-radius: 32px;
    border-top-left-radius: 32px;
}

/* Abstand von mobilem intro Text */
@media only screen and (max-width: 1140px) {
    .content-intro{
        border-top-right-radius: 32px;
        border-top-left-radius: 32px;
        margin-left:20px;
        margin-right: 20px;
    }
}

/* main */
main{
    background-image: url('../assets/Background.png');
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: cover;
}

/* Anleitung */
.content-inner-Instructions{
    padding-top: 64px;
    padding-bottom: 64px; 
}

.Instructions-grid{
    padding-top: 32px;
    padding-bottom: 32px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)); 
    gap: 24px; 
}

.Inst-col-2{
    grid-column: span 2 / span 2;
    position: relative;
    z-index: 20;
}

.Inst-background{
    display: flex;
    justify-content: center;
    place-items: center;
}

.Inst-stroke{
    position: relative;
    z-index: 25;
    display: flex;
    justify-content: center;
    place-items: center;
    align-items: center;
    height: 100%;
}

.Inst-text{
    color: #000;
    text-align: center;
    font-family: "Mercury Display";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
}

.step{
    position: absolute;
    top: 50px;
}

.step-num{
    height: 42px;
    width: 42px;
    border-radius: 10000000px;
    margin-bottom: 20px;
    background-color: #000;
    color: white;
}

.step-num-inner{
    display: flex;
    justify-content: center;
    place-items: center;
    align-items: center;
    height: 100%;
    font-size: 24px;
}

.step-text{
    max-width: 220px;
    text-align: center;
    font-family: "Mercury Display";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    
}

/* Formular */
.form-img{
    width: 100%;
    height: 100%;
    border-top-left-radius: 32px;
    border-bottom-left-radius: 32px;
    object-fit: cover;
}

.formular-sec{
    background-color:   var(--primary-color);
    height: 100%;
    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;
}

.form-inner{
    padding: 64px;
}

.form-felds{
    display: flex;
    flex-direction: column;
    gap:16px; 
    max-width: 333px;
}

.input-label{
    color: #000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.input-feld{
    height: 24px;
    width: 100%;
    border-radius: 6px; 
    border: none;
    margin-top:5px;
}

.data-checkbox-text{
    color: var(--text-color);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; 
}

.form-button{
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-transform: uppercase;
    padding-left: 24px;
    padding-right: 24px;
}

.form-button:hover{
    border: 1px solid var(--text-color);
    color: var(--primary-color);
    background-color: var(--text-color);
    text-transform: uppercase;
    padding-left: 24px;
    padding-right: 24px;
}

/* Teaser */
.content-teaser{
    padding-top: 128px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 64px;
}

.teaser-headline{
    font-family: "Mercury Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.teaser-left-inner{
    max-width: 500px;
}
@media only screen and (max-width: 771px) {
    .teaser-left-inner {
        max-width: 100%;
        }
    }
.teaser-text{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.teaser-element{
    position: absolute;
    z-index: 0; 
    top: -8%;
    left: -7%;
    width: 100%;
}

.teaser-element-inner{
    width: 100%;
    height: 100%;
}
.teaser-image{
    border-radius: 30px;
    width: 90%;
    height: 90%;
}
.teaser-image-container{
    position: relative;
    z-index: 1;
    width: 100%;
}
@media only screen and (max-width: 771px) {
    /*Header*/
    .burgerMenue{
        display: block;
        position: absolute;
        z-index: 2;
        top: 40%;
        left: 24px;
    }

    .burgerMenue-inner{
        width: 40px;
        height: auto;
    }
    .hero-image{
        width: 50%;
    }
    .header-logo-mobile{
        display: flex;
        justify-content: center;    
        place-items:center;
        align-items: center;
        height: 100%;
        margin-bottom: 0px;
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .header-logo{
        display: none;
    }
    .header-logo-inner-mobile{
        display: flex;
        justify-content: center;
        place-items: center;
        align-items: center;
        height: 100%;
    }

    .navigationBar{
        display: none;
    }

    .DT-Header-Img{
        display: none;
    }

    .MOB-Header-Img{
        display: block;
    }

    /* Introtext */

    /* Anleitung */
    .Instructions-grid{
        padding-top: 32px;
        padding-bottom: 32px;
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr)); 
        gap: 24px; 
    }

    .flex-start{
        display: flex;
        justify-content: center;
        place-items: center;
    }
    
    .flex-end{
        display: flex;
        justify-content: center;
        place-items: center;
    }

    .Inst-stroke{
        display: flex;
        justify-content: center;
        place-items: center;
        align-items: center;
        height: 100%;
        transform: rotate(90deg);
    }

    /* Form */
    .flex-col-row{
        flex-direction: column;
    }

    .w-50{
        width: 100%;
    }

    .form-img{
        width: 100%;
        height: 100%;
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
        border-bottom-left-radius: 0px;
    }

    .formular-sec{
        background-color:   var(--primary-color);
        height: 100%;
        border-bottom-right-radius: 32px;
        border-bottom-left-radius: 32px;
        border-top-right-radius: 0px;
    }
    .form-img-container{
        margin-bottom: -5px;
    }
    .form-felds{
        display: flex;
        flex-direction: column;
        gap:16px; 
        max-width: 450px;
    }
    
    .content-form{
        padding-left: 24px;
        padding-right: 24px;
    }

/* tipps */

.teaser-image-container{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.teaser-element{
    left: unset;
}
}
/* Quality  */
    .content-quality{
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .secondary-headline{
        font-family: "Mercury Display";
        font-weight: 400;
        font-size: 24px;
        line-height: 28px;
        letter-spacing: 2.4px;
    }
    .quality-text{
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 16px;
        line-height: 25px;
    }   
    .quality-vector{
        right: 0;
        top: 0;
    }
    .mobile-image{
        display: none;
    }
@media only screen and (max-width:576px){
    .desktop-image{
        display: none;
    }
    .mobile-image{
        display: block;
    }
}
/* Recipes */
    .content-recipe{
        padding-left: 64px;
        padding-right: 64px;
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .recipe-grid{
        display: grid;
        justify-content: center;
        text-align: left;
    }
    .duration-text{
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 700;
        font-size: 20px;
    }
    .recipe-green-container{
        bottom: 32px;
        left: 25%;
    }
    .recipe-green-text{
        font-weight: 400;
        font-size: 28px;
        text-align: center;
        max-width: 75%;
        bottom: 64px;
        left: 10%;
    }
    .recipe-info{
        margin-top: 32px;
    }
    .zutaten-text{
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 20px;
        font-weight: 300;
        text-transform: uppercase;
    }
    .zubereitung-text{
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 16px;
        line-height: 25px;
    }
    .zubereitung-item{
        margin-top: 5px;
    }
    .zutaten-item{
        margin-top: 3px;
    }
    .zutaten-green-yellow{
        z-index: -1;
        left: 0;
        bottom: -80px;
    }
    @media only screen and (max-width:771px){
        .recipe-green-image{
            width: 37%;
        }
        .recipe-green-container{
            bottom: -25%;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            left: 0;
        }
        .recipe-green-text{
            font-weight: 400;
            font-size: 16px;
            text-align: center;
            max-width: 25%;
           left: unset;
           bottom: unset;
            
        }
        .recipe-grid{
            display: flex;
            flex-direction: column;
        }
        .recipe-info{
            margin-top: 112px;
        }
        .zutaten-green-yellow{
            bottom:0;
        }
        .zutaten-green-yellow-image{
            width: 70%;
        }
    }

    footer{
        background-color:  var(--secondary-color);
        height:56px;
        display: flex;
        align-items: center;
        padding-left: 20%;
        padding-right: 20%;
        text-transform: uppercase;
        justify-content: center;
    }
    .links{
        display: flex;
        align-items: center;
        gap: 32px;
        white-space: nowrap;
        font-weight: 700;
        letter-spacing: 2.4px;
    }
    .links > div:last-child{
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .social{
        background-color: #F0C129;
        display: flex;
        padding-left: 10px;
        padding-right: 10px;
        gap: 12px;
        border-radius: 20px;
        padding-top: 5px;
        padding-bottom: 5px;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
        height: fit-content;
    }
    .social-icon{
        display: flex;
        align-items: center;
    }
    .vl{
        border-left: 2px solid black;
        height: 20px;
    }
    @media only screen and (max-width: 1000px) {
        .vl{
            display: none;
        }
        .links{
            flex-direction: column;
            gap: 8px;
            padding: 28px;
            text-align: center;
        }
        footer{
            height: auto;

        }
    }
    /* Slider */
    .swiper-button-next{
        color: #000 !important;
      }
      .swiper-button-prev{
        color: #000 !important;
      }
      .swiper {
        width: 100%;
        height: 100%;
      }
      .swiper-slide {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .swiper-pagination{
        padding-bottom: 30px;
        
      }
      .swiper-pagination-bullet-active{
        background: #000 !important;
      }
      @media only screen and (min-width: 1500px) {
        .swiper-button-next, .swiper-button-prev {
            top: 40% !important;
            }
    }
    @media only screen and (max-width:576px) {
        .swiper-button-next, .swiper-button-prev {
            top: 37% !important;
            }
        .content-recipe{
            padding-left: 24px;
            padding-right: 24px;
        }
    }


    /* Modal */
    /* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
  }
  
  /* Modal Wrapper */
  .modal-wrapper {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    z-index: 50;
  }
  
  /* Modal */
  .modal {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 50;
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    width: 23rem;
    background-image: url('../assets/Background.png');
    padding: 2.5rem 1.5rem 2rem;
    border-radius: 32px;

  }
  
  @media (min-width: 1000px) {
    .modal-content {
      width: 55rem;
      padding: 2.5rem 2.5rem 2rem;
    }
  }
  
  /* Modal Inner */
  .modal-inner {
    max-width: 36rem;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}
  
  /* Modal Title */
  .modal-title {
    font-size: 36px;
    margin: 0;
    padding-top: 32px;
    padding-bottom: 12px;
  }
  
  
  /* Modal Text */
  .modal-text {
    font-size: 16px;
    color: #000;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 25px;
  }
  
  /* Button Wrapper */
  .button-wrapper {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .back-button{
    padding: 8px 24px;
    background-color: transparent;
    border: #000 2px solid;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: ease 0.4s;
    color: #000;
  }
  .back-button:hover{
    background-color: #000;
    color: #F0C129;
  }
  .recipe-button{
    padding: 8px 24px;
    background-color: #A2C181;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: #A2C181 2px solid;
    color: #000;
  }
  .recipe-button:hover{
    background-color: #F0C129;
  }
  @media only screen and (max-width:1000px){
    .modal-title{
        font-size: 24px;
    }
  }
  /* Legal pages */
  .legal-container{
    padding-left: 120px;
    padding-right: 120px;
    padding-top: 64px;
    padding-bottom: 120px;
  }
  .legal-headline{
    color: #000;
    text-align: center;
    font-family: "Mercury Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    word-break: break-word;
    hyphens: auto;
  }
  .legal-content-container{
    margin-top: 70px;
  }
  .legal-sub-headline{
    color: #000;
    font-family: "Mercury Display";
    font-size: var(--Headings-Size-Display-Text, 24px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    word-break: break-word;
    hyphens: auto;
  }
  .legal-content-inner{
    color: #000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
  }
  @media only screen and (max-width:771px){
    .legal-container{
        padding: 60px;
    }
    .legal-content-container{
        margin-top: 40px;
    }
    .legal-sub-headline{
        font-size: 22px;
    }
  }
@media only screen and (max-width: 576px) {
    .content-inner{
        position: absolute;
        bottom: 0;
        z-index: 21;
        padding-top: 32px;
        padding-bottom: 32px;
        padding-left: 24px;
        padding-right: 24px;
        background-image: url(../assets/Background.png);
        background-repeat: no-repeat;
        object-fit: cover;
        background-size: cover;
    }
}