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

:root { --pink: #E60C80; --black: #111111; --bg-light: #FFF8F9; }

body { font-family: 'Inter', sans-serif; font-weight: 300; color: var(--black); background: #fff; line-height: 1.8; padding-top: 36px; }

/* ─── DEMO BAR ─── */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 36px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.demo-badge {
  background: #E60C80;
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 7px 1px;
  border-radius: 3px;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .demo-bar { font-size: 10px; gap: 7px; }
  .demo-bar .demo-text { display: none; }
  .demo-bar::after { content: 'Demo-Website · Alle Angaben sind fiktiv.'; color: rgba(255,255,255,0.65); font-size: 10px; }
}

header {
  background: var(--bg-light);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0e0e4;
}
.logo {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 36px;
  color: var(--pink);
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
}
header nav a {
  font-family: 'Amatic SC', cursive;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  margin-left: 32px;
}
header nav a:hover { color: var(--pink); }

main {
  max-width: 760px;
  margin: 80px auto;
  padding: 0 40px;
}
h1 {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 56px;
  color: var(--black);
  letter-spacing: 2px;
  margin-bottom: 40px;
}
h2 {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 32px;
  color: var(--pink);
  letter-spacing: 1px;
  margin: 36px 0 10px;
}
p { margin-bottom: 12px; font-size: 15px; }
ul { margin: 8px 0 12px 24px; font-size: 15px; }
li { margin-bottom: 6px; }
a { color: var(--pink); }

footer {
  background: var(--bg-light);
  text-align: center;
  padding: 30px;
  font-size: 13px;
  color: #6b6b6b;
  margin-top: 80px;
  border-top: 1px solid #f0e0e4;
}
footer a { color: var(--pink); text-decoration: none; margin: 0 4px; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 28px;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--black);
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-light);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Amatic SC', cursive;
  font-size: 40px;
  color: var(--black);
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--pink); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--black);
}

@media (max-width: 768px) {
  header { padding: 20px 24px; }
  header nav { display: none; }
  .hamburger { display: flex; }
}
