:root {
  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
  --bp-xxl: 1400px;

  --color-bg: #fff7ef;
  --color-text: #1b1b1b;
  --color-accent: #ff6b3d;

  --container-pad: 20px;
  --container-max: 1200px;
  --section-pad: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Verdana", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  overflow-y: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  text-indent: -9999px;
}

.impressum-trigger {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 6px 14px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.85rem;
  cursor: pointer;
}

.impressum-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.impressum-modal.is-open {
  display: flex;
}

.impressum-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.impressum-content {
  position: relative;
  z-index: 1;
  max-width: min(520px, 90vw);
  padding: 24px 28px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.impressum-content h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.impressum-content p {
  margin: 0;
  line-height: 1.5;
}

.impressum-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
}

.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-fixed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(100% - (var(--container-pad) * 2), var(--container-max));
  margin-inline: auto;
}

.section {
  padding: 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.hero-products {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-bottom: auto;
}

.hero-products img {
  display: block;
  height: auto;
}

.hero-mango {
  width: 320px;
  position: relative;
  z-index: 1;
  margin-right: -60px;
  margin-bottom: 40px;
  left: 50px;
}

.hero-spicy {
  width: 230px;
  transform: rotate(-3deg);
  position: relative;
  left: 115px;
  top: 150px;
  z-index: 2;
}

.hero-teriyaki {
  width: 320px;
  position: relative;
  right: 90px;
  z-index: 1;
  margin-right: -40px;
  margin-bottom: 40px;
  margin-top:20px;
}

.hero-umami {
  width: 230px;
  transform: rotate(3deg);
  position: relative;
  top: 170px;
  right: 20px;
  z-index: 2;
}

.hero-products-left .hero-spicy {
  margin-left: 0;
}

.hero-products-right .hero-umami {
  margin-left: 0;
}

.hero-dip {
  position: absolute;
  right: 90px;
  bottom: -120px;
  width: 170px;
  height: auto;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  padding-bottom: 100px;
}

.hero-stack img {
  display: block;
  height: auto;
}

.hero-logo {
  width: 300px;
  max-width: 80vw;
}

.hero-claim {
  width: 420px;
  max-width: 90vw;
}

.hero-text {
  width: 360px;
  max-width: 90vw;
  padding-top: 40px;
}

@media (max-width: 575.98px) {
  .hero {
    align-items: center;
  }

  .hero-layout {
    gap: 8px;
  }

  .hero-products-left,
  .hero-products-right {
    margin-top: 8px;
  }

  .hero-mango,
  .hero-teriyaki {
    width: 150px;
    margin-bottom: 16px;
    top: 20px;
    margin-right: 0;
    margin-left: 0;
  }

  .hero-spicy,
  .hero-umami {
    width: 110px;
    top: 350px;
    right: 0;
  }

  .hero-spicy {
    left: 175px;
  }

  .hero-umami {
    right: 20px;
  }

  .hero-teriyaki {
    right:160px
  }



  img.hero-dip {
    display: none;
  }

  .hero-logo {
    width: 160px;
  }

  .hero-claim {
    width: 260px;
  }

  .hero-text {
    width: 220px;
  }
}

@media (max-width: 767.98px) {
  .hero-dip {
    display: none;
  }
}

.site-header,
.site-footer {
  padding: 24px 0;
}

.site-title {
  margin: 0;
  font-size: 1.75rem;
}

/* Breakpoints angelehnt an Bootstrap */
@media (min-width: 576px) {
  :root {
    --container-pad: 24px;
  }
}

@media (min-width: 768px) {
  :root {
    --section-pad: 96px;
  }
}

@media (min-width: 992px) {
  :root {
    --container-max: 1320px;
  }
}

@media (min-width: 1200px) {
  :root {
    --section-pad: 112px;
  }
}

@media (min-width: 1400px) {
  :root {
    --container-max: 1440px;
  }
}
