/* =========================
   HERO BEREICH
========================= */
.fotobox-hero {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 100px auto; 
  padding: 64px 24px 0 24px;
}

.hero-text {
  flex: 1; 
}

.intro-text {
  font-family: "DroidSans", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 24px;
}

.hero-checkliste {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.hero-checkliste li {
  font-family: "DroidSans", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #333;
  font-weight: bold;
}

/* =========================
   RECHTE SPALTE (Bilder + Anforderungen)
========================= */
.hero-visuals {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* =========================
   FOTO-TISCH EFFEKT
========================= */
.photo-stack {
  position: relative;
  width: 100%; /* FIX: Verhindert, dass die Bilder am PC und Handy zu Strichen werden */
  min-height: 480px; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.foto-tisch {
  position: absolute;
  width: 100%; 
  max-width: 300px; 
  border: 12px solid white;
  border-bottom-width: 36px; /* Polaroid-Look */
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, box-shadow 0.3s ease;
}

.foto-tisch:hover {
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

.pos-1 { transform: rotate(-6deg) translate(-15px, -10px); z-index: 3; }
.pos-2 { transform: rotate(8deg) translate(20px, 15px); z-index: 2; }
.pos-3 { transform: rotate(-2deg) translate(5px, 30px); z-index: 1; }

/* =========================
   TECHNISCHE ANFORDERUNGEN
========================= */
.technical-requirements {
  margin-top: 24px;
  margin-bottom: 24px; /* Abstand zum Button unten */
  background: rgba(255, 255, 255, 0.8);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px dashed chocolate;
  width: 100%;
  max-width: 400px;
}

.technical-requirements p {
  margin: 0 0 8px 0;
  font-family: "DroidSans", sans-serif;
  color: chocolate;
  text-align: left; /* HIER GEÄNDERT: Linksbündig passend zur Liste */
}

.technical-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.technical-requirements li {
  font-family: "DroidSans", sans-serif;
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 6px;
  font-weight: normal;
}

/* =========================
   SECTION TITEL
========================= */
.section-titel {
  text-align: center;
  font-family: 'ArchivoBlack-Regular', sans-serif;
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 48px;
}

/* =========================
   PREISE & PAKETE
========================= */
.preise-section {
  padding: 60px 24px 100px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.preise-grid {
  display: flex; /* Nutzt Flexbox statt Grid, um die einzelne Karte zu zentrieren */
  justify-content: center; 
  gap: 40px;
  flex-wrap: wrap;
}

.preis-card {
  background: white;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px; 
}

.preis-card h3 {
  font-size: 1.8rem;
  margin: 0 0 8px 0;
}

/* =========================
   PREIS-DESIGN (Deal)
========================= */
.preis-container {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.old-price {
  font-family: "ArchivoBlack-Regular", sans-serif;
  font-size: 1.5rem;
  color: #999;
  text-decoration: line-through;
  text-decoration-color: #ff3333;
  text-decoration-thickness: 3px;
}

.new-price {
  font-family: "ArchivoBlack-Regular", sans-serif;
  font-size: 3rem; 
  color: chocolate;
}

.deal-badge {
  display: inline-block;
  background: #ff3333;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: "ArchivoBlack-Regular", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  align-self: flex-start;
  animation: pulseDeal 2s infinite; 
}

@keyframes pulseDeal {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Listen in der Preiskarte */
.preis-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1; 
}

.preis-card ul li {
  font-family: "DroidSans", sans-serif; 
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #444;
}

.preis-card ul li:last-child {
  border-bottom: none;
}

.outline{border: 1px solid chocolate}

/* =========================
   MOBILE ANSICHT
========================= */
/* =========================
   MOBILE ANSICHT
========================= */
@media (max-width: 768px) {
  .fotobox-hero {
    flex-direction: column; 
    padding-top: 100px; 
    text-align: center;
  }
  
  .hero-checkliste li {
    text-align: left; 
    display: inline-block; 
  }

  .photo-stack {
    width: 100%; 
    min-height: 380px;
    margin-top: 48px; 
  }
  
  .foto-tisch {
    width: 240px; 
  }

  /* NEU EINGEFÜGT */
  .technical-requirements {
    margin-left: auto;
    margin-right: auto;
  }

  .technical-requirements p {
    text-align: center; 
  }

  .technical-requirements ul {
    display: inline-block; 
    text-align: left; 
  }
}