/* Grundlayout */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');

body {
  font-family: serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  text-align: center;
  background: radial-gradient(circle at center, #ffffff,rgb(150, 220, 248));
}


.logo-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: none;   /* kein eigener Hintergrund */
  height: 0;  /* Wrapper nimmt keinen Platz ein */
        
}

.page-title {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 1001;      /* über Inhalt */
}

.kleingedruckt-title {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  padding: 15px;
  margin-bottom: 5px;
}


.bald-banner {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;               /* Logo mittig */
  display: block;
  transform: rotate(-5deg);
}

.underlogo-wrapper {
  position: sticky;
  top: 100;
  z-index: 1000;
  background: none;   /* kein eigener Hintergrund */
  height: auto;          /* Wrapper nimmt keinen Platz ein */
} 

.underpage-title {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;               /* Logo mittig */
  display: block;
  height: auto;
}

.genießen-logo {
  max-width: 40px;
  width: 100%;
  margin: 0 auto;               /* Logo mittig */
  height: auto;
  margin-left: 10px;
  transform: translateY(5px)
}

h1 {
  margin-top: 10px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom:10px;
  margin-inline: 5px;
}

h2 {
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom:20px;
  margin-inline: 5px;
}

.subtitle {
  font-size: large;
  font-family: 'Montserrat', sans-serif;
  margin-top: 10px;
  margin-inline: 5px;
  margin-bottom:10px;
}

.comingsoon {
  font-size: small;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  margin-top: 10px;
  margin-inline: 5px;
  margin-bottom:10px;
}


.kleingedruckt {
  font-size: small;
  margin: 2px 5px; 
  font-family: 'Montserrat', sans-serif;
  margin-inline: 5px;
  line-height: 1.2;
  z-index: 2000;
}

.kleingedruckt-block {
  background-color: transparent; /* gewünschte Farbe */
  width: 100vw;   /* volle Viewport-Breite */
  margin: 0;      /* keine Abstände */
  padding: 0;     /* optional, falls du wirklich keinen Abstand willst */
}

.kleingedruckt-block p {
  margin: 0; /* verhindert zusätzlichen Abstand zwischen den Absätzen */
}


.accordion-item {
  background-color: rgba(150, 220, 248, 0.1); /* sehr dezenter hellgrauer Hintergrund */
  cursor: pointer;                        /* zeigt, dass es klickbar ist */
  padding: 5px;
  transition: background-color 0.2s ease;

  border-top: 1px solid rgba(0,0,0,0.1);   /* feine Linie oben */
}

.accordion-item:hover {
  background-color: rgba(150, 220, 248, 0.2); /* leicht dunkler beim Hover */
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease;
  margin-inline: 5px;
}

.accordion-item.active .accordion-content {
  max-height: 1000px; /* Text wird sichtbar */
}



.accordion-icon {
  display: inline-block;
  transition: transform 0.1s ease;
  font-size: 0.8em; /* optional: kleiner als Überschrift */
  margin-top: 0.2em; /* Abstand zwischen Text und Pfeil */
  transform: translateY(-1px);
}

/* Pfeil drehen, wenn geöffnet */
.accordion-item.active .accordion-icon {
  transform: rotate(180deg) translateY(2px);

}


.divider {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #c5c5c5, #000);
  border: none;
  margin: 0px auto;
  border-radius: 2px;
}

/* Grid Layout */
.grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  gap: 10px;
}

.item {
  flex: 1;
 /* border: 1px solid #ccc;*/
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
animation: pulse 3s infinite ease-in-out;
}

.item img {
  display: block;          /* removes inline spacing */
  width: 100%;             /* fill container width */
  aspect-ratio: 3 / 4;     /* pick any ratio you want, e.g. 3:4 like magazines */
  object-fit: fill;       /* crop to fit ratio, never stretch */
  border-radius: 10px;
}



.info-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-weight: bold;
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.info-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

/*https://onlinejpgtools.com/find-dominant-jpg-colors*/
.info-text1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  display: none;
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 92, 77, 0.9);
  color: rgb(27, 23, 24);
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);

  width: 80%; /* 90% der Item-Breite */
  margin-left: auto;
  margin-right: auto; /* zentriert unterhalb des Buttons */
}
.info-text2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  display: none;
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(248, 240, 231, 0.9);
  color: rgb(112, 50, 67);
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);

  width: 80%; /* 90% der Item-Breite */
  margin-left: auto;
  margin-right: auto; /* zentriert unterhalb des Buttons */
}
.info-text3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  display: none;
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(249, 245, 247, 0.9);
  color: rgb(198, 74, 127);
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);

  width: 80%; /* 90% der Item-Breite */
  margin-left: auto;
  margin-right: auto; /* zentriert unterhalb des Buttons */
}


@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: transparent;
  }
  50% {
    transform: scale(1.02);
    box-shadow: transparent;
  }
}

/* Responsive für Smartphones */
@media (max-width: 768px) {
  .grid {
    flex-direction: column; /* Artikel untereinander */
    padding: 10px;
  }

  .item {
    margin-bottom: 15px; /* Abstand zwischen Artikeln */
  }
}

.qr-container {
  position: relative;          /* damit Kinder absolut positioniert werden können */
  display: inline-block;       /* Größe an QR-Code anpassen */
  animation: pulse 3s infinite ease-in-out; /* gleiche Animation wie bei .item */
}

/* QR-Codes responsive */
.qr {
  position: relative;          /* QR-Code oben */
  z-index: 2;                  /* QR-Code über dem Hintergrundbild */
  width: 250px;                /* Größe nach Bedarf */
  height: auto;
  border-radius: 10px;
}

.artikel-bg {
  position: absolute;
  top: 50px;                  /* nach oben verschieben */
  left: 200px;                 /* nach links verschieben */
  width: 120px;                /* kleiner als QR-Code */
  height: auto;
  z-index: 1;                  /* hinter QR-Code */
  transform: rotate(15deg);   /* leicht schräg */
  /*opacity: 0.6;                /* optional, damit es nicht zu dominant ist */
  border-radius: 10px;         /* optional, falls abgerundete Ecken */
}

/* Optional: Textabstand */
body p {
  margin: 10px 0 20px 0;
}

/* Schon bestehender responsive Block sorgt dafür, dass alles auf kleinen Screens gut aussieht */

a {
  text-decoration: none; /* entfernt Unterstreichung */
  color: inherit;        /* übernimmt normale Textfarbe */
}

a .artikel-titel {
  font-size: 20px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: rgb(0, 0, 0);          /* überschreibt inherit */
}

.orderedarticle {
  margin-top: 20px;
  border-radius: 10px;
  animation: pulse 3s infinite ease-in-out;
}





body {
  margin: 0;
  padding: 0;
}
.panel {
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  background: lightblue;
  border-bottom: 1px solid #ccc; 
}
.panel1 { background: radial-gradient(circle at center, #ffffff,rgb(150, 220, 248));}
.panel2 { background: radial-gradient(circle at center, #ffffff,rgb(102, 255, 204)); }
.panel3 { background: radial-gradient(circle at center, #ffffff,rgb(139, 252, 255)); }
.panel4 { background: radial-gradient(circle at center, #ffffff,rgb(150, 220, 248));   
  position: relative; z-index: 10; 
  border-top-left-radius: 100% 50px;
  border-top-right-radius: 100% 50px;
padding-top: 70px;}



.scroll-indicator {
  position: absolute;
  bottom: 15%;         /* unten am Bildschirm */
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none; /* klickbar? nein */
}

.scroll-indicator span {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #333;  /* dezente Farbe */
  border-radius: 50%;
  animation: bounce 1.5s infinite 0.05s; /* kleine Verzögerung notwendig um Ruckeln auf Smartphone zu vermeiden */
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(20px);
  }
  60% {
    transform: translateY(5px);
  }
}


.touch-hint {
  display: flex;                /* immer sichtbar */
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  font-size: 0.75em;
  font-family: 'Montserrat', sans-serif;
  color: rgba(0,0,0,0.6);
  user-select: none;
  pointer-events: none;         /* blockiert keine Klicks */
  animation: floatHint 2.2s ease-in-out infinite;
}

/* Pulsierender Kreis */
.ripple {
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  background-color: #000;
  border-radius: 50%;
  animation: rippleScale 1.2s infinite ease-in-out;
}

@keyframes floatHint {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

@keyframes rippleScale {
  0%   { transform: scale(0.6); opacity: 0.9; }
  50%  { transform: scale(1.15); opacity: 0.45; }
  100% { transform: scale(0.6); opacity: 0.9; }
}


