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

@font-face {
    font-family: 'Lunchtype';
    src: url('Font/Lunchtype25-Medium-Condensed.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    letter-spacing: -0.05em;
  }
  
  @keyframes shake {
    0%   { transform: translateX(0); }
    20%  { transform: translateX(-40px); }
    40%  { transform: translateX(40px); }
    60%  { transform: translateX(-30px); }
    80%  { transform: translateX(30px); }
    100% { transform: translateX(0); }
  }
  


  body {
    height: 100%;
    width: 100%;
    margin: 0;
    justify-content: center;

    font-family: 'Lunchtype';
    background: #efefef;
    overflow: auto; /* or 'auto' */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar{
    display:none;              /* Chrome/Safari/Opera */
  }
  main{
    height:100vh;
    padding-bottom: 300px;
    overflow-y:scroll;               /* weiter scrollbar */
    scroll-snap-type:y mandatory;    /* dein Snap‑Feature */
  
    /* ⚙︎ Scrollbar ausblenden – Cross‑Browser */
    -ms-overflow-style:none;   /* IE / Edge Legacy */
    scrollbar-width:none;      /* Firefox */
  }
  main::-webkit-scrollbar{
    display:none;              /* Chrome/Safari/Opera */
  }

  
  
  header {
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 10px 0px;
    margin-bottom: -30px;
    background: #efefef;
    font-size: 5rem;
    letter-spacing: -0.04em;
    color: red;
  }

  .menu {
    display: flex;
    gap: 40px;
  }
  
  .grid {
    overflow: scroll;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    height: auto;
  }
  
  .item {
    position: relative;
    width: 100%;
    padding-top: 66.666%;   /*  3 : 2  */
    background: red;
  }
  
  .item:hover {
    animation: shake 0.005s linear infinite;
  }


  .item img {               /* zentriert im Kasten */
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
  }
  
  .caption {
    margin-top: 10px;
    font-size: 1.5rem;
    text-align: left;
    color: red;
    line-height: 1.5rem;
  }

  .title {
    padding-top: 10vh;
    padding-left: 5px;
    font-size: 5rem;
    text-transform: uppercase;
    margin-bottom: -1vh;
    letter-spacing: -0.03em;
    line-height: 4.5rem;

  }

  .title span {
    font-size: 0.4em; 
    text-transform: none;
  }

  .text {
    display: flex;
    max-width: 90%;
    height: calc(100vh - 10px);
    padding: 20px;
    padding-top: 20px;
    color: red;
    font-size: 2rem;
    line-height: 2rem;
    letter-spacing: -0.01em;
  }

  .text2 {
    display: flex;
    max-width: 90%;
    padding: 20px;
    padding-top: 50px;
    color: red;
    font-size: 2rem;
    line-height: 2rem;
    letter-spacing: -0.01em;
  }

  .text3 {
    display: flex;
    max-width: 90%;
    padding: 20px;
    padding-top: 10px;
    color: red;
    font-size: 2rem;
    line-height: 2rem;
    letter-spacing: -0.01em;
  
  }

  .impressum-container {
    display: flex;
    justify-content: space-between; /* pushes items to edges */
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
  }
  
  .impressum {
    display: flex;
    max-width: 90%;
    padding: 20px;
    color: red;
    font-size: 2rem;
    line-height: 2rem;
    letter-spacing: -0.01em;
  }

  .caption_newsletter {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #efefef;
  }

  .caption_newsletter2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: right;
    color: #efefef;
  }


  .indicates-required {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #efefef;
  }
  
  
  .caption span {
    display: block;
    font-size: 1.5rem;
    color: red;
  }

  .meta {
    font-size: 1.5rem;
    margin-top: -0.3rem;
    color: red;
    padding-left: 20px;
  }
  
  a:not(.button),
  a:not(.button):visited,
  a:not(.button):hover,
  .item-link,
  .item-link * {
    color: red;
    text-decoration: none;
    font-style: normal;
    cursor: pointer;
  }
.credit {
  text-decoration: underline;
}

.slideshow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  scroll-snap-align: start;
  background-color: red;
}

.slideshow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide img {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40.7%);
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
}

.parent {
  display: flex;
  justify-content: left;
  scroll-snap-align: start;
  color: red !important;

}

.caption, .caption * {
  color: red !important;
}
    .caption-container {
      margin-top: -1vh;
      padding: 1vh;
      position: left;
      align-items: left;
      width: fit-content;
      text-align: left;
      font-size: 2rem;
      color: rgb(255, 0, 0);
      letter-spacing: -0.03em;

    }

    #mc_embed_signup {
      width: 100vw;
      background: red;
      padding-bottom: 100px;
      box-sizing: border-box;
      padding-top: 10px;
      color: #efefef;
    }
    
    #mc_embed_signup_scroll {
      max-width: 800px;
    }

    .mc-field-group label {
      font-size: 2.2rem;
      display: block;
      color: #efefef;
    }
    

    .mc-field-group input {
      height: 50x;
      width: 100%;
      padding: 12px;
      font-size: 2rem !important;
      color: red;
      font-family: 'Lunchtype';
      src: url('Font/Lunchtype25-Medium-Condensed.woff2') format('woff2');  
      border: none;
      background: #efefef;
      box-sizing: border-box;
      border-radius: 0px !important;
    }
    
    .clear.foot {
      align-items: left;        /* vertical center alignment */
      border-radius: 0px;

    }

    .buy-section {
      display: flex;
      justify-content: flex-start; /* oder center */
      padding: 20px;
    }

    
    .button {
      display: inline-block;
      background-color: red;
      color:#efefef;
      padding: 12px 24px 9px !important;
      font-size: 1.5rem;
      border: none;
      cursor: pointer;
      font-family: 'Lunchtype', sans-serif !important;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      text-align: center;      /* Sicherstellen, dass Text korrekt erscheint */
    }

    .button2 {
      color: red;
      margin: 0px !important;
      padding: 15px 10px 12px;
      font-size: 2rem;
      font-family: 'Lunchtype', sans-serif;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      border-radius: 0px !important;
    }

    .affenbox {
      display: flex;
      justify-content: right;
      padding-top: 10px;
      
    }
    .affenbox svg {
      fill: #ff0000;
    }
    
    
    .refferal_badge {
      color: #ff0000;      
      width: 220px; /* match your inline style or adjust */
      height: 40px;
      /* remove float:right; */
    }

 
    
    @media (max-width: 1200px) {

      header {
        font-size: 5rem;
      }
    
      .menu.active {
        display: flex;
        text-align: center;
        line-height: 4rem;
        font-size: 6rem;
      }
    
      .burger {
        display: block;
        font-size: 3rem;
        color: red;
        cursor: pointer;
        z-index: 10000; /* ensure it sits above the menu */
      }

      .grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        height: auto;
      }

      .meta {
        font-size: 3rem;
        margin-top: -0.3rem;
        color: red;
        padding-left: 20px;
      }

      .caption {
        font-size: 3rem;
        line-height: 3rem;
        text-align: left;
      }

      .button,
      .button:hover {
        background-color: red;
        color:#efefef;
        padding: 23px 24px 9px;
        font-size: 4rem;
        text-decoration: none;
        cursor: pointer; 
        border: none;
        cursor: pointer;
        font-family: 'Lunchtype', sans-serif !important;
        text-transform: uppercase;
        display: inline-block;   /* Wichtig */
        text-align: center;      /* Sicherstellen, dass Text korrekt erscheint */
      }



      .title {
        font-size: 5rem;
        line-height: 4.5rem;
        padding-bottom: 10px;
      }

      .text {
        font-size: 3rem;
        line-height: 3rem;
        overflow: scroll;
      }


      .text2 {
      font-size: 3rem;
      line-height: 3rem;
    }

    .text3 {
      font-size: 3rem;
      line-height: 3rem;
    }

    .mc-field-group label {
      font-size: 3.2rem;
      display: block;
      color: #efefef;
    }
    

    .mc-field-group input {
      height: 100x;
      width: 100%;
      padding: 12px;
      font-size: 3rem !important;
      color: red;
      font-family: 'Lunchtype';
      src: url('Font/Lunchtype25-Medium-Condensed.woff2') format('woff2');  
      border: none;
      background: #efefef;
      box-sizing: border-box;
      border-radius: 0px !important;
    }




    
  }