:root {
  --bg-overlay: rgba(18, 64, 42, 0.96);
  --accent-red: #c62828;
}

/* Base */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Weihnachts Button */
.xmas-button {
  margin: 60px auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #b71c1c, #d32f2f);
  color: #ffffff;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.xmas-button span {
  font-size: 1.4rem;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  z-index: 1000;
  display: none;
}

.overlay.active {
  display: block;
}

/* Close Button */
.close-btn {
  position: fixed;
  top: 20px;
  right: 24px;
  font-size: 36px;
  color: #ffffff;
  cursor: pointer;
  z-index: 1100;
}

/* Girlande Top */
.garland {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 378px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 1050;

  background-repeat: repeat-x;
  background-position: center top -50px;
  background-size: auto 378px;
}

.garland.hidden {
  opacity: 0;
}

/* Scroll Container */
.menu-container {
  height: 100vh;
  overflow-y: auto;
  padding: 140px 20px 100px;
  box-sizing: border-box;
}

/* Menü Bilder */
.menu-image {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 40px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  .menu-container {
    padding: 110px 12px 80px;
  }

  .garland {
    height: 90px;
    background-size: auto 90px;
  }
}
