/* ========================================================
   POP'S DESIGN SYSTEM
   Farben aus Logo (Pop's Strandbar): Sunset Orange, Tropical
   Teal, Black, Sand. Retro-Tropical Look.
   ======================================================== */

:root {
  --pop-orange: #F97316;
  --pop-orange-dark: #C25A0F;
  --pop-orange-glow: #FFA94D;
  --pop-teal: #2DB5A8;
  --pop-teal-dark: #1F8A80;
  --pop-yellow: #FFC85A;
  --pop-coral: #E85A4F;
  --pop-black: #0F0F12;
  --pop-charcoal: #1F1F24;
  --pop-sand: #FFF8EE;
  --pop-cream: #FBF1DE;
  --pop-text: #1B1B1F;
  --pop-text-soft: #5A5A62;
  --pop-border: rgba(15, 15, 18, 0.12);
  --pop-success: #2A9D5F;
  --pop-danger: #D9342B;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 22px 48px rgba(0, 0, 0, 0.18);

  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--pop-text);
  background: var(--pop-sand);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--pop-orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: "Bowlby One", "Fugaz One", "Impact", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 .4em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

p { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--pop-text-soft); }

/* ----- Layout helpers ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(56px, 10vw, 96px) 0; }
.section--dark { background: var(--pop-black); color: var(--pop-sand); }
.section--dark p { color: rgba(255, 248, 238, 0.78); }
.section--dark h2, .section--dark h3 { color: var(--pop-sand); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--pop-orange);
  color: white;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
}
.btn-primary:hover { background: var(--pop-orange-dark); }
.btn-secondary {
  background: var(--pop-teal);
  color: white;
}
.btn-secondary:hover { background: var(--pop-teal-dark); }
.btn-ghost {
  background: transparent;
  color: var(--pop-sand);
  border-color: rgba(255, 248, 238, 0.4);
}
.btn-ghost:hover { background: rgba(255, 248, 238, 0.08); }
.btn-light {
  background: white;
  color: var(--pop-text);
  border-color: var(--pop-border);
}
.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 1.1rem; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 15, 18, 0.92);
  backdrop-filter: blur(10px);
  color: var(--pop-sand);
  border-bottom: 1px solid rgba(255, 248, 238, 0.08);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: "Bowlby One", system-ui, sans-serif;
  font-size: 1.4rem;
  color: var(--pop-sand);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.brand:hover { text-decoration: none; color: var(--pop-orange-glow); }
.brand img { width: 42px; height: 42px; }
.nav { display: flex; gap: 6px; align-items: center; }
.nav a {
  color: var(--pop-sand);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover {
  background: rgba(255, 248, 238, 0.10);
  text-decoration: none;
  color: var(--pop-orange-glow);
}
.nav a.active { background: var(--pop-orange); color: white; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--pop-sand);
  padding: 8px;
  font-size: 1.6rem;
}

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--pop-black);
    padding: 12px var(--gutter);
    border-top: 1px solid rgba(255, 248, 238, 0.08);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 14px; border-radius: 12px; }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  background: radial-gradient(ellipse at top, #2a1305 0%, var(--pop-black) 65%);
  color: var(--pop-sand);
  padding: clamp(60px, 12vw, 130px) 0 clamp(60px, 12vw, 110px);
  overflow: hidden;
  text-align: center;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  pointer-events: none;
}
.hero::before { background: var(--pop-orange); top: -160px; left: -120px; }
.hero::after  { background: var(--pop-teal);   bottom: -180px; right: -120px; }
.hero__inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.hero__logo {
  width: clamp(180px, 32vw, 280px);
  margin: 0 auto 28px;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.45));
}
.hero__title { color: var(--pop-sand); margin-bottom: .25em; }
.hero__tagline {
  display: inline-block;
  font-family: "Bowlby One", system-ui, sans-serif;
  letter-spacing: 0.32em;
  font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  color: var(--pop-orange-glow);
  border-top: 2px solid var(--pop-orange);
  border-bottom: 2px solid var(--pop-orange);
  padding: 8px 18px;
  margin: 18px 0 28px;
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255, 248, 238, 0.82);
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ----- Card ----- */
.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pop-border);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { color: var(--pop-orange-dark); }
.card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
  background: var(--pop-cream);
  color: var(--pop-orange);
}
.card__cta {
  margin-top: auto;
  padding-top: 20px;
  font-weight: 700;
  color: var(--pop-orange-dark);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ----- Forms ----- */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--pop-border);
  background: white;
  font: inherit;
  color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--pop-orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}
textarea { min-height: 110px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field--row { grid-template-columns: 1fr; } }
.field-help { font-size: 0.85rem; color: var(--pop-text-soft); margin-top: 6px; }

/* ----- Status pill ----- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}
.status-pill::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px currentColor;
  opacity: 0.9;
  animation: pulse 1.6s ease-in-out infinite;
}
.status-pill--open { background: rgba(42, 157, 95, 0.12); color: var(--pop-success); }
.status-pill--closed { background: rgba(217, 52, 43, 0.12); color: var(--pop-danger); }
.status-pill--closed::before { animation: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; opacity: 0.6; }
  50% { box-shadow: 0 0 0 6px rgba(42, 157, 95, 0); opacity: 1; }
}

/* ----- Footer ----- */
.site-footer {
  background: var(--pop-black);
  color: var(--pop-sand);
  padding: 64px 0 32px;
}
.site-footer a { color: var(--pop-orange-glow); }
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.site-footer h4 {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pop-orange-glow);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer__bottom {
  border-top: 1px solid rgba(255, 248, 238, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 248, 238, 0.65);
}

/* ----- Tables ----- */
.simple-table { width: 100%; border-collapse: collapse; }
.simple-table th, .simple-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--pop-border);
}

/* ----- Notice / Alerts ----- */
.notice {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--pop-cream);
  border-left: 4px solid var(--pop-orange);
  margin-bottom: 20px;
  color: var(--pop-text);
}
.notice strong { color: var(--pop-text); }
.notice--warning { background: #FFF3D6; border-color: var(--pop-yellow); color: #5A3D00; }
.notice--warning strong { color: #5A3D00; }
.notice--danger { background: #FCE7E5; border-color: var(--pop-danger); color: #6B1410; }
.notice--danger strong { color: #6B1410; }
.notice--success { background: #E6F4ED; border-color: var(--pop-success); color: #1F4D2F; }
.notice--success strong { color: #1F4D2F; }

/* ----- Utility ----- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.flex-wrap { flex-wrap: wrap; }
.muted { color: var(--pop-text-soft); }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--pop-cream);
  color: var(--pop-orange-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge--teal { background: #D9F2EE; color: var(--pop-teal-dark); }
.badge--coral { background: #FCE5E2; color: var(--pop-coral); }

/* ----- FAQ Akkordeon ----- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--pop-border);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .15s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--pop-text);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  transition: background .12s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--pop-cream); }
.faq-item summary::after {
  content: "+";
  font-family: 'Bowlby One', system-ui;
  font-size: 1.4rem;
  color: var(--pop-orange);
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--pop-cream);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .2s, background .15s;
}
.faq-item[open] summary::after { content: "−"; background: var(--pop-orange); color: white; transform: rotate(180deg); }
.faq-item .faq-answer {
  padding: 0 22px 20px;
  color: var(--pop-text-soft);
  line-height: 1.6;
}
