html, body {
  height: 100%;
  position: relative;
}


/* Kompakte Markenbotschaft auf der Startseite */
.homepage-claim {
  position: relative;
  z-index: 5;
  width: min(92vw, 720px);
  margin: 8px auto 0;
  padding: 12px 18px 13px;
  text-align: center;
  color: #fff;
  background: rgba(15, 31, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  backdrop-filter: blur(7px);
}

.homepage-claim h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.homepage-claim p {
  margin: 5px 0 0;
  color: #f2d784;
  font-size: clamp(0.9rem, 1.8vw, 1.16rem);
  font-weight: 700;
  line-height: 1.25;
}

/* CTA Buttons */
.center-button {
  position: relative;
  z-index: 5;
  width: min(92vw, 620px);
  margin: 14px auto 110px;
}

.center-button button {
  width: 100%;
  font-size: clamp(0.82rem, 2.8vw, 1.2rem);
  padding: clamp(9px, 2.68vw, 13px) clamp(13px, 4.02vw, 27px);
  background-color: var(--brand-green);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.center-button button + button {
  margin-top: 12px;
}

.center-button button:hover {
  background-color: #45a049;
}

.center-button .shop-entry-button {
  background: linear-gradient(135deg, #d9a72e, #bc8515);
  color: #1f2a21;
  border: 2px solid rgba(255, 255, 255, 0.78);
}

.center-button .shop-entry-button:hover {
  background: linear-gradient(135deg, #e5b845, #c99626);
}

/* Video Modal Styling */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: 95%;
  max-width: 1000px;
  background: #000;
  border-radius: 15px;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Format */
  height: 0;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.close-button {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 45px;
  cursor: pointer;
  line-height: 1;
}

.close-button:hover {
  color: var(--brand-green);
}

@media (max-width: 600px) {
  .center-button {
    margin-top: 22px;
  }
}

/* SEO intro text on homepage */
.intro-text {
  position: relative;
  z-index: 5;
  width: min(92vw, 920px);
  margin: calc(68vh) auto 120px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.86);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.intro-text h2 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
}

.intro-text p {
  margin: 0 0 12px;
  line-height: 1.65;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-text a {
  color: var(--brand-green);
  font-weight: bold;
}

@media (max-width: 900px) {
  .intro-text {
    width: auto;
    margin: calc(72vh) 12px 120px;
    padding: 18px;
  }
}

/* Auswahlfenster für Kurz- und Langversion */
.modal-content-choice {
  max-width: 520px;
  background: rgba(255,255,255,0.96);
  color: var(--text);
  border-radius: 18px;
  padding: 26px 22px 22px;
}

.choice-box {
  text-align: center;
}

.choice-box h2 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.choice-box p {
  margin: 0 0 20px;
  line-height: 1.55;
}

.choice-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.choice-buttons button {
  width: 100%;
  font-size: clamp(0.95rem, 2.7vw, 1.1rem);
  padding: 13px 18px;
  background-color: var(--brand-green);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.choice-buttons button:hover {
  background-color: #45a049;
}

@media (max-width: 600px) {
  .modal-content-choice {
    width: calc(100% - 24px);
    padding: 22px 16px 18px;
  }
}

@media (max-width: 600px) {
  .homepage-claim {
    width: min(92vw, 520px);
    margin-top: 6px;
    padding: 10px 13px 11px;
  }
}

/* Kompaktere Abstände auf der Startseite, damit Logo, Botschaft und Menüs
   auf üblichen Desktop-Auflösungen ohne Scrollen sichtbar bleiben. */
@media (min-width: 901px) {
  .logo {
    padding-top: calc(var(--header-h) + 6px);
  }

  .logo img {
    max-width: 270px;
    width: min(72%, 285px);
  }

  .homepage-claim {
    margin-top: 3px;
    padding-top: 10px;
    padding-bottom: 11px;
  }

  .center-button {
    margin-top: 9px;
    margin-bottom: 76px;
  }

  .center-button button {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .center-button button + button {
    margin-top: 9px;
  }
}

@media (min-width: 901px) and (max-height: 850px) {
  .logo {
    padding-top: calc(var(--header-h) + 2px);
  }

  .logo img {
    max-width: 225px;
    width: min(66%, 240px);
  }

  .homepage-claim {
    width: min(88vw, 680px);
    margin-top: 1px;
    padding: 8px 16px 9px;
  }

  .homepage-claim h1 {
    font-size: clamp(1.3rem, 2.45vw, 1.9rem);
  }

  .homepage-claim p {
    margin-top: 3px;
    font-size: clamp(.84rem, 1.45vw, 1.02rem);
  }

  .center-button {
    margin-top: 7px;
    margin-bottom: 68px;
  }

  .center-button button {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .center-button button + button {
    margin-top: 7px;
  }
}
