@keyframes flicker {
  0%,100%{opacity:1} 4%{opacity:.84} 6%{opacity:1}
  42%{opacity:1} 44%{opacity:.88} 46%{opacity:1}
}
@keyframes stickerIn {
  0%{opacity:0;transform:rotate(var(--r,-2deg)) scale(.3)}
  60%{opacity:1;transform:rotate(var(--r,-2deg)) scale(1.06)}
  100%{opacity:1;transform:rotate(var(--r,-2deg)) scale(1)}
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

*{margin:0;padding:0;box-sizing:border-box}
[hidden]{display:none !important}

:root {
  --pink: #da0073;
  --mag: #ff2d92;
  --dpurp: #2a0845;
  --mpurp: #4a1068;
  --dk: #0a0514;
  --dkr: #06030e;
  --cream: #f5f0e8;
  --f-display: 'Finger Paint', cursive;
  --f-body: 'Saira Condensed', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dkr);
  color: var(--cream);
  font-family: var(--f-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: .3;
  mix-blend-mode: overlay;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(6,3,14,.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--pink);
}
.nav-logo-link { display: flex; align-items: center; }
.nav-logo {
  height: 36px; width: auto;
  filter: brightness(10);
  animation: flicker 5s infinite;
}
.nav-back {
  font-family: var(--f-body); font-weight: 700;
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.5); text-decoration: none;
  transition: color .2s;
  display: flex; align-items: center; gap: 8px;
}
.nav-back:hover { color: var(--mag); }
.nav-back::before { content: '←'; font-size: 16px; }

/* HERO */
.hero {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 24px 80px;
  background: linear-gradient(165deg, var(--dk) 0%, var(--dpurp) 40%, var(--dkr) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .25;
  mix-blend-mode: lighten;
  pointer-events: none;
}
.hero-ov {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(6,3,14,.3), rgba(6,3,14,.7));
  pointer-events: none;
}
.hero-in {
  position: relative; z-index: 2;
  text-align: center; max-width: 860px;
}
.sticker {
  display: inline-block;
  background: var(--pink); color: #fff;
  font-family: var(--f-body); font-weight: 800;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  padding: 8px 22px;
  transform: rotate(var(--r, -2deg));
  box-shadow: 3px 3px 0 rgba(0,0,0,.5);
  animation: stickerIn .5s cubic-bezier(.23,1,.32,1) both;
  margin-bottom: 28px;
}
.hero-in h1 {
  font-family: var(--f-display);
  font-size: clamp(36px, 9vw, 90px);
  line-height: 1.0;
  color: var(--cream);
  text-shadow: 3px 3px 0 rgba(0,0,0,.5);
  margin-bottom: 20px;
  animation: fadeUp .7s .1s both;
}
.hero-in h1 em {
  font-style: normal;
  color: var(--mag);
  text-shadow: 0 0 30px rgba(218,0,115,.3), 3px 3px 0 rgba(0,0,0,.4);
}
.hero-in p {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 640px;
  margin: 0 auto 36px;
  font-weight: 400;
  animation: fadeUp .7s .2s both;
}
.hero-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .7s .3s both;
}

.btn {
  font-family: var(--f-display);
  font-size: 16px;
  text-decoration: none;
  padding: 16px 36px;
  border: 3px solid;
  position: relative;
  transition: transform .25s cubic-bezier(.23,1,.32,1), box-shadow .25s;
  cursor: pointer;
  display: inline-block;
}
.btn--fill {
  background: var(--pink); color: #fff; border-color: var(--pink);
  box-shadow: 4px 4px 0 rgba(0,0,0,.45), 0 0 20px rgba(218,0,115,.2);
}
.btn--fill:hover {
  transform: scale(1.05);
  box-shadow: 5px 5px 0 rgba(0,0,0,.4), 0 0 30px rgba(218,0,115,.35);
}
.btn--ghost {
  background: transparent; color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.18);
  box-shadow: 4px 4px 0 rgba(0,0,0,.2);
}
.btn--ghost:hover {
  transform: scale(1.05);
  border-color: var(--mag); color: #fff;
}

/* SECTION SHARED */
.section { padding: 100px 28px; }
.section-in { max-width: 1000px; margin: 0 auto; }
.section-label {
  font-family: var(--f-body); font-weight: 800;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--mag); margin-bottom: 14px;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 6vw, 56px);
  line-height: 1.05;
  color: var(--cream);
  text-shadow: 2px 2px 0 rgba(0,0,0,.35);
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--mag);
}
.section-desc {
  font-size: 16px; line-height: 1.8;
  color: rgba(255,255,255,.45);
  max-width: 640px;
  margin-bottom: 56px;
}

/* EVENT TYPES */
.events { background: var(--dk); }
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.event-card {
  background: rgba(42,8,69,.35);
  border: 2px solid rgba(218,0,115,.1);
  padding: 36px 28px;
  transition: border-color .3s, background .3s, transform .3s;
}
.event-card:hover {
  border-color: var(--mag);
  background: rgba(42,8,69,.55);
  transform: translateY(-2px);
}
.event-icon { font-size: 36px; margin-bottom: 16px; }
.event-card h2 {
  font-family: var(--f-display);
  font-size: 24px; color: var(--mag);
  margin-bottom: 10px;
}
.event-card p {
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,.5);
}
.event-card ul {
  margin-top: 14px; padding-left: 0; list-style: none;
}
.event-card ul li {
  font-size: 14px; color: rgba(255,255,255,.4);
  padding: 4px 0;
  display: flex; align-items: baseline; gap: 8px;
}
.event-card ul li::before { content: '→'; color: var(--mag); flex-shrink: 0; }

/* HOW IT WORKS */
.how { background: var(--dkr); border-top: 1px solid rgba(218,0,115,.08); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: steps;
}
.step { position: relative; }
.step-num {
  font-family: var(--f-display);
  font-size: 64px;
  color: rgba(218,0,115,.1);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--f-display);
  font-size: 22px; color: var(--mag);
  margin-bottom: 8px;
}
.step p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.4); }

/* REGION */
.region { background: var(--dk); border-top: 1px solid rgba(218,0,115,.08); }
.region-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.rtag {
  font-family: var(--f-body); font-weight: 700;
  font-size: 13px; letter-spacing: .08em;
  padding: 10px 18px;
  border: 2px solid rgba(218,0,115,.2);
  color: rgba(255,255,255,.6);
  background: rgba(218,0,115,.04);
  transition: border-color .2s, color .2s;
}
.rtag:hover { border-color: var(--mag); color: var(--mag); }

/* CONTACT FORM */
.contact { background: var(--dkr); border-top: 1px solid rgba(218,0,115,.08); }
.contact-wrap { max-width: 700px; margin: 0 auto; text-align: center; }
.contact-intro {
  font-size: 16px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 36px;
}

/* Feedback messages */
.form-msg {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px; border: 2px solid;
  margin-bottom: 28px; text-align: left;
  font-size: 15px; line-height: 1.6;
}
.form-msg--ok  { border-color: #22c55e; color: #86efac; background: rgba(34,197,94,.07); }
.form-msg--err { border-color: var(--pink); color: #fca5a5; background: rgba(218,0,115,.08); }
.form-msg-icon { font-size: 20px; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.form-msg strong { display: block; margin-bottom: 2px; }

/* Form layout */
#catering-form { text-align: left; }
.form-row { display: grid; gap: 16px; margin-bottom: 0; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

label {
  font-family: var(--f-body); font-weight: 700;
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.req { color: var(--mag); }

input, select, textarea {
  background: rgba(255,255,255,.04);
  border: 2px solid rgba(255,255,255,.1);
  color: var(--cream);
  font-family: var(--f-body); font-size: 16px; font-weight: 400;
  padding: 13px 16px; width: 100%;
  transition: border-color .2s, background .2s;
  appearance: none; -webkit-appearance: none;
  border-radius: 0; outline: none;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.22); }
input:focus, select:focus, textarea:focus {
  border-color: var(--mag); background: rgba(255,255,255,.07);
}
input.invalid, select.invalid, textarea.invalid { border-color: var(--pink); }
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(.5) sepia(1) saturate(5) hue-rotate(280deg); cursor: pointer;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ff2d92' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 42px; cursor: pointer;
}
select option { background: #1a0a3e; color: var(--cream); }
textarea { resize: vertical; min-height: 120px; line-height: 1.5; }

.form-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-top: 28px;
}
.form-hint { font-size: 12px; color: rgba(255,255,255,.25); }
#submit-btn { position: relative; min-width: 200px; }
#submit-btn[disabled] { opacity: .6; cursor: not-allowed; pointer-events: none; }
.btn-spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 3px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite; vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.contact-alt {
  margin-top: 32px; font-size: 14px; color: rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.contact-alt-link { color: var(--mag); text-decoration: none; transition: color .2s; }
.contact-alt-link:hover { color: #fff; }
.contact-alt-sep { color: rgba(255,255,255,.15); }

/* SEO TEXT */
.seo-text { background: var(--dkr); border-top: 1px solid rgba(218,0,115,.05); padding: 60px 28px; }
.seo-text-in { max-width: 860px; margin: 0 auto; }
.seo-text h2 {
  font-family: var(--f-display);
  font-size: 22px; color: var(--mag);
  margin-bottom: 12px; margin-top: 32px;
}
.seo-text h2:first-child { margin-top: 0; }
.seo-text p {
  font-size: 14px; line-height: 1.85;
  color: rgba(255,255,255,.28);
}
.seo-text a { color: var(--mag); text-decoration: none; }

/* FOOTER */
footer {
  background: var(--dkr); border-top: 3px solid var(--pink);
  text-align: center; padding: 40px 28px;
}
.f-logo { height: 48px; margin: 0 auto 10px; filter: brightness(10); animation: flicker 6s infinite; }
.f-copy { font-size: 12px; color: rgba(255,255,255,.2); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.f-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.f-links a { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.22); text-decoration: none; transition: color .2s; }
.f-links a:hover { color: var(--mag); }

/* BREADCRUMB */
.breadcrumb {
  max-width: 1000px; margin: 0 auto;
  padding: 80px 28px 0;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}
.breadcrumb a { color: rgba(255,255,255,.3); text-decoration: none; }
.breadcrumb a:hover { color: var(--mag); }
.breadcrumb span { margin: 0 8px; }

@media (max-width: 900px) {
  .event-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .contact-options { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav { padding: 14px 16px; }
  .nav-logo { height: 28px; }
  .hero { padding: 100px 16px 60px; }
  .section { padding: 70px 16px; }
  .seo-text { padding: 50px 16px; }
  .breadcrumb { padding: 80px 16px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ═══ UTILITY-KLASSEN (ersetzen Inline-Styles) ═══ */
.breadcrumb--top { background: var(--dkr); padding-top: 80px; }
.sticker--r15 { --r: -1.5deg; }
.section-title--center { text-align: center; }
.hp-field { display: none; }
