:root {
  --brand: #e85d75;
  --brand-dark: #c94560;
  --accent: #ffd166;
  --ink: #2b2d42;
  --ink-soft: #5c5f77;
  --bg: #fffaf5;
  --bg-alt: #fff1e6;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(43, 45, 66, 0.10);
  --font: "Poppins", system-ui, sans-serif;
  --font-hand: "Caveat", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

img { max-width: 100%; display: block; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 45, 66, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--ink);
}
.logo span { color: var(--brand); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s, color 0.2s;
  font-family: var(--font);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(232, 93, 117, 0.35);
}
.btn-primary:hover { background: var(--brand-dark); }

.btn-ghost {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}
.btn-ghost:hover { background: var(--brand); color: var(--white); }

.btn-small { padding: 0.5rem 1.2rem !important; background: var(--brand); color: var(--white) !important; border-radius: 999px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 209, 102, 0.35), transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(232, 93, 117, 0.12), transparent 40%),
    var(--bg);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: normal;
  font-family: var(--font-hand);
  font-size: 1.15em;
  color: var(--brand);
}

.hero-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.8rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }

.hero-badges {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Hero visual: illustrated booth */
.hero-visual { position: relative; display: flex; justify-content: center; }

.booth {
  width: 220px;
  height: 320px;
  background: linear-gradient(160deg, #3a3d5c, #2b2d42);
  border-radius: 20px;
  position: relative;
  box-shadow: var(--shadow);
}
.booth-screen {
  position: absolute;
  top: 36px; left: 50%;
  transform: translateX(-50%);
  width: 150px; height: 95px;
  background: linear-gradient(140deg, #ffd166, #e85d75);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 1.05rem;
}
.booth-lens {
  position: absolute;
  top: 155px; left: 50%;
  transform: translateX(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #9aa0d8, #40456e 60%, #23253c);
  border: 5px solid #565a80;
}
.booth-flash {
  position: absolute;
  top: 165px; right: 26px;
  width: 26px; height: 26px;
  border-radius: 6px;
  background: #fff7d6;
  box-shadow: 0 0 18px 4px rgba(255, 247, 214, 0.8);
  animation: flash 4s infinite;
}
@keyframes flash {
  0%, 92%, 100% { opacity: 0.35; box-shadow: none; }
  95% { opacity: 1; box-shadow: 0 0 26px 10px rgba(255, 247, 214, 0.9); }
}
.booth-btn {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brand);
  border: 6px solid #ffffff22;
  box-shadow: 0 4px 14px rgba(232, 93, 117, 0.5);
  cursor: pointer;
  animation: btnpulse 2.6s ease-in-out infinite;
}
@keyframes btnpulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.08); }
}

.photo-strip {
  position: absolute;
  top: -30px;
  right: 2%;
  width: 118px;
  background: #fdfdfb;
  padding: 9px 9px 2px;
  box-shadow: 0 14px 34px rgba(43, 45, 66, 0.25);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: rotate(7deg);
  z-index: 2;
}
.photo-strip svg { display: block; width: 100%; height: auto; }
.strip-caption {
  font-family: var(--font-hand);
  text-align: center;
  font-size: 1.1rem;
  color: #3a3c55;
  padding: 1px 0 4px;
}

/* Kamerablitz-Overlay (Klick auf den Auslöser) */
.flash-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.flash-overlay.on { animation: screenflash 0.45s ease-out; }
@keyframes screenflash {
  0% { opacity: 0; }
  12% { opacity: 0.95; }
  100% { opacity: 0; }
}

/* ---------- USPs ---------- */
.usps { padding: 4rem 0; background: var(--white); }

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.usp { text-align: center; padding: 1rem; }
.usp-icon { font-size: 2.4rem; margin-bottom: 0.6rem; }
.usp h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.usp p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Sections ---------- */
.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 0.6rem;
}
.section-title.left { text-align: left; }

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 40rem;
  margin: 0 auto 3rem;
}

/* ---------- Pricing ---------- */
.pricing { padding: 5rem 0; background: var(--bg-alt); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.8rem;
  align-items: stretch;
  margin-top: 2.5rem;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border: 3px solid var(--brand);
  transform: scale(1.03);
}

.ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 1.2rem;
}
.price span { font-size: 0.95rem; color: var(--ink-soft); font-weight: 500; }

.price-card ul {
  list-style: none;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}
.price-card li { padding: 0.35rem 0; font-size: 0.93rem; }
.price-card li.dim { color: #b0b3c6; }

.pricing-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-top: 2.2rem;
}

/* ---------- Steps ---------- */
.steps { padding: 5rem 0; background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step { text-align: center; }

.step-num {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(232, 93, 117, 0.35);
}

.step h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Filmstreifen-Trenner ---------- */
.filmstrip {
  height: 44px;
  background: #15162a;
  position: relative;
}
.filmstrip::before,
.filmstrip::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 10px;
  background-image: repeating-linear-gradient(90deg, #fffaf5 0 16px, transparent 16px 38px);
}
.filmstrip::before { top: 8px; }
.filmstrip::after { bottom: 8px; }

/* ---------- Galerie (Dunkelkammer) ---------- */
.gallery { padding: 5rem 0; background: #20223a; }

.gallery .section-title { color: #ffffff; }
.gallery .section-sub { color: #b9bcd8; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.4rem;
  margin-top: 1rem;
}

.polaroid {
  margin: 0;
  background: #fdfdfb;
  padding: 12px 12px 6px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
  transform: rotate(var(--tilt, -2deg));
  transition: transform 0.25s ease;
  position: relative;
}
.polaroid:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 2;
}
.polaroid::before {
  content: "";
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 92px; height: 26px;
  background: rgba(255, 236, 170, 0.8);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.polaroid svg { display: block; width: 100%; height: auto; }
.polaroid figcaption {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  text-align: center;
  color: #3a3c55;
  padding: 0.55rem 0 0.35rem;
}

.gallery-grid .polaroid:nth-child(odd) { --tilt: -2.4deg; }
.gallery-grid .polaroid:nth-child(even) { --tilt: 2deg; }
.gallery-grid .polaroid:nth-child(3n) { --tilt: -1.2deg; }

/* ---------- Area ---------- */
.area { padding: 5rem 0; background: var(--bg-alt); }

.area-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.area-text p { color: var(--ink-soft); margin-bottom: 1.4rem; }

.city-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.city-list li {
  background: var(--white);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(43, 45, 66, 0.08);
}

.area-note { font-size: 0.8rem !important; margin-top: 1rem; }

.area-map { display: flex; justify-content: center; }

.map-circle {
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 3px dashed var(--brand);
  position: relative;
  background: radial-gradient(circle, rgba(232, 93, 117, 0.08), transparent 70%);
}

.map-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}

.map-dot {
  position: absolute;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(43, 45, 66, 0.12);
  text-align: center;
  line-height: 1.25;
}
.map-dot::before {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  top: -10px; left: 50%;
  transform: translateX(-50%);
}
.d1 { top: 8%; right: 12%; }
.d2 { bottom: 14%; left: 4%; }
.d3 { bottom: 6%; right: 20%; }
.d4 { top: 16%; left: 6%; }
.d5 { top: 55%; right: -4%; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 5rem 0; background: var(--white); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.testimonial-grid blockquote {
  background: #fdfdfb;
  padding: 1.8rem 1.6rem 1.4rem;
  box-shadow: 0 10px 26px rgba(43, 45, 66, 0.16);
  position: relative;
}
.testimonial-grid blockquote::before {
  content: "";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 84px; height: 24px;
  background: rgba(255, 236, 170, 0.8);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.testimonial-grid blockquote:nth-child(1) { transform: rotate(-1.3deg); }
.testimonial-grid blockquote:nth-child(2) { transform: rotate(1.2deg); }
.testimonial-grid blockquote:nth-child(3) { transform: rotate(-0.8deg); }

.testimonial-grid p {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.testimonial-grid footer {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq { padding: 5rem 0; background: var(--bg-alt); }

.faq-container { max-width: 760px; }

.faq details {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 0.9rem;
  box-shadow: 0 4px 14px rgba(43, 45, 66, 0.07);
  overflow: hidden;
}
.faq details:first-of-type { margin-top: 2.5rem; }

.faq summary {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--brand);
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq details p {
  padding: 0 1.4rem 1.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------- Contact ---------- */
.contact { padding: 5rem 0; background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-text p { color: var(--ink-soft); margin-bottom: 1.6rem; }

.contact-details { list-style: none; }
.contact-details li { padding: 0.4rem 0; font-weight: 500; }
.contact-details a { color: var(--brand); text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

.contact-form {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #e2ddd6;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(232, 93, 117, 0.15);
}

.form-field input.invalid,
.form-field textarea.invalid {
  border-color: #d64545;
}

/* ---------- Verfügbarkeitskalender ---------- */
.availability {
  margin-top: 0.7rem;
  background: var(--white);
  border: 1.5px solid #e2ddd6;
  border-radius: 10px;
  padding: 0.7rem 0.8rem 0.8rem;
}

.availability-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.cal-month {
  font-size: 0.85rem;
  font-weight: 600;
}

.cal-nav {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid #e2ddd6;
  background: var(--white);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.cal-nav:hover:not(:disabled) { background: var(--bg-alt); border-color: var(--brand); }
.cal-nav:disabled { opacity: 0.35; cursor: not-allowed; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.7rem;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: default;
  font-family: var(--font);
}

.cal-day.cal-empty { visibility: hidden; }

.cal-day.cal-free {
  background: #e3f5e8;
  color: #1f7a3d;
  cursor: pointer;
}
.cal-day.cal-free:hover { background: #c8ecd2; }

.cal-day.cal-booked {
  background: #fde3cf;
  color: #b35c17;
  cursor: not-allowed;
}

.cal-day.cal-past {
  color: #c7c5bd;
  cursor: not-allowed;
}

.cal-day.cal-selected {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

.availability-legend {
  display: flex;
  gap: 1rem;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.availability-legend span { display: flex; align-items: center; gap: 5px; }

.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.dot-free { background: #4caf6e; }
.dot-booked { background: #ef8a3d; }

.form-status {
  margin-top: 0.9rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #2e9e5b;
  min-height: 1.3em;
}
.form-status.error { color: #d64545; }

.form-hint {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 0.8rem;
}

/* ---------- Rechtsseiten (Impressum/Datenschutz) ---------- */
.legal {
  padding: 3.5rem 0 4rem;
  background: var(--white);
}
.legal-container { max-width: 760px; }
.legal h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.8rem;
}
.legal h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.6rem;
}
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 0.7rem; }
.legal ul { padding-left: 1.2rem; margin-bottom: 0.7rem; }
.legal a { color: var(--brand); }
.legal .back-link {
  display: inline-block;
  margin-top: 2.5rem;
  font-weight: 600;
  text-decoration: none;
}
.legal strong { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #c9cbe0;
  padding: 1.6rem 0;
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.4rem;
}
.footer-links a { color: #c9cbe0; text-decoration: none; }
.footer-links a:hover { color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .hero-visual { margin-top: 1.5rem; }
  .area-inner, .contact-inner { grid-template-columns: 1fr; }
  .section-title.left { text-align: center; }
  .area-text p { text-align: center; }
  .city-list { justify-content: center; }
  .contact-text { text-align: center; }
  .price-card.featured { transform: none; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.2rem 0;
    gap: 1rem;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .photo-strip { right: 12%; }
}
