/* Woodhood Street-Festival 2026 — Plakat-Style */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a44;
  background: #f6e7c1;
}

.sky {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, #ffd166 0 60px, transparent 61px),
    radial-gradient(circle at 85% 12%, #ef476f 0 70px, transparent 71px),
    radial-gradient(circle at 50% 5%,  #06d6a0 0 40px, transparent 41px),
    repeating-linear-gradient(135deg,
      #ffb703 0 22px, #fb8500 22px 44px, #e63946 44px 66px,
      #ef476f 66px 88px, #8338ec 88px 110px, #3a86ff 110px 132px,
      #06d6a0 132px 154px, #ffd166 154px 176px);
  background-attachment: fixed;
  padding: 24px 16px 48px;
}

/* ---------- Hero ---------- */

.hero {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
  padding: 28px 24px 32px;
  background: #fffaf0;
  border: 6px solid #1f2a44;
  border-radius: 22px;
  box-shadow: 0 14px 0 rgba(31, 42, 68, .35), 0 30px 80px rgba(0,0,0,.25);
  position: relative;
}

.title {
  font-size: clamp(48px, 9vw, 110px);
  font-weight: 900;
  margin: 0;
  line-height: .9;
  color: #1f2a44;
  text-shadow:
    3px 3px 0 #ffd166,
    6px 6px 0 #ef476f;
  letter-spacing: -2px;
}

.subtitle {
  font-size: clamp(22px, 3.4vw, 40px);
  font-weight: 800;
  margin: 6px 0 4px;
  color: #fb5607;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location {
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  margin: 0 0 16px;
  color: #1f2a44;
}

.datebox {
  display: inline-block;
  margin: 6px auto 14px;
  padding: 16px 28px;
  background: #1f2a44;
  color: #fffaf0;
  border-radius: 18px;
  border: 6px solid #ffd166;
  box-shadow: 0 8px 0 rgba(0,0,0,.2);
}

.date {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 900;
  line-height: 1;
}

.date .year { color: #ffd166; }

.time {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  background: #ef476f;
  color: #fffaf0;
  font-weight: 800;
  font-size: clamp(16px, 2.2vw, 22px);
  border-radius: 999px;
  letter-spacing: 1px;
}

.intro {
  max-width: 640px;
  margin: 8px auto 0;
  font-size: 15px;
  line-height: 1.5;
}

/* ---------- Grid ---------- */

.grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 820px) {
  .grid { grid-template-columns: 1fr; }
}

.card {
  background: #fffaf0;
  border: 5px solid #1f2a44;
  border-radius: 18px;
  padding: 22px 22px 26px;
  box-shadow: 0 10px 0 rgba(31, 42, 68, .3);
}

.card h3 {
  margin: 0 0 18px;
  font-size: 26px;
  color: #1f2a44;
  border-bottom: 4px dashed #fb5607;
  padding-bottom: 8px;
}

.card h4 {
  margin: 22px 0 10px;
  font-size: 17px;
  color: #fb5607;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ---------- Form ---------- */

.field {
  display: block;
  margin-bottom: 16px;
}

.field > span,
.field legend {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
  color: #1f2a44;
}

.hint {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 12px;
}

input[type="text"],
input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 3px solid #1f2a44;
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  color: #1f2a44;
}

input[type="text"]:focus,
input[type="number"]:focus {
  outline: none;
  border-color: #fb5607;
  box-shadow: 0 0 0 3px rgba(251, 86, 7, .25);
}

fieldset.field {
  border: 3px solid #1f2a44;
  border-radius: 12px;
  padding: 12px 14px 6px;
  background: #fff7e6;
}

fieldset.field legend {
  padding: 0 8px;
  background: #ffd166;
  border-radius: 6px;
  border: 2px solid #1f2a44;
  font-size: 14px;
}

.radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-weight: 600;
}

.radio input { width: 18px; height: 18px; accent-color: #fb5607; }

.inline-num {
  width: 70px !important;
  display: inline-block;
  padding: 4px 8px !important;
  margin: 0 6px;
  text-align: center;
}

.meat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed #d8c7a3;
}

.meat-row:last-child { border-bottom: none; }

.meat-row label {
  font-weight: 700;
  flex: 1;
  color: #1f2a44;
}

.meat-row .price {
  display: inline-block;
  margin-left: 6px;
  font-weight: 600;
  color: #fb5607;
  font-size: 13px;
}

.meat-row input[type="number"] {
  width: 80px;
  text-align: center;
}

.submit {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #ef476f;
  color: #fffaf0;
  border: 4px solid #1f2a44;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 0 #1f2a44;
  transition: transform .05s ease, box-shadow .05s ease;
}

.submit:hover { background: #fb5607; }
.submit:active { transform: translateY(4px); box-shadow: 0 2px 0 #1f2a44; }

.form-message {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  min-height: 1em;
}

.form-message.ok    { background: #d1fadf; color: #065f46; border: 2px solid #06d6a0; }
.form-message.error { background: #fde2e2; color: #7a1f1f; border: 2px solid #ef476f; }

/* ---------- Status ---------- */

.status-sub {
  margin: 0 0 14px;
  font-size: 14px;
  color: #6b7280;
}

.counts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 6px;
}

.count-box {
  background: #ffd166;
  border: 3px solid #1f2a44;
  border-radius: 12px;
  padding: 12px 6px;
  text-align: center;
}

.count-box.absage { background: #fde2e2; }

.count-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: #1f2a44;
}

.count-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 700;
  margin-top: 4px;
}

.meat-summary {
  list-style: none;
  padding: 0;
  margin: 0;
}

.meat-summary li {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border: 2px solid #1f2a44;
  border-radius: 10px;
  margin-bottom: 8px;
  background: #fff7e6;
  font-weight: 700;
}

.meat-summary li strong {
  font-size: 22px;
  color: #fb5607;
}

.mitbringsel-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mitbringsel-list li {
  background: #06d6a0;
  color: #06321f;
  padding: 8px 14px;
  border: 2px solid #1f2a44;
  border-radius: 999px;
  margin: 0 6px 8px 0;
  display: inline-block;
  font-weight: 700;
}

.mitbringsel-list li.empty {
  background: #eee;
  color: #6b7280;
  font-style: italic;
  font-weight: 500;
}

.change-btn {
  display: block;
  text-align: center;
  margin-top: 22px;
  padding: 12px 14px;
  background: #3a86ff;
  color: #fffaf0;
  border: 4px solid #1f2a44;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .8px;
  text-decoration: none;
  box-shadow: 0 6px 0 #1f2a44;
  transition: transform .05s ease, box-shadow .05s ease, background .15s ease;
}

.change-btn:hover { background: #1f2a44; }
.change-btn:active { transform: translateY(4px); box-shadow: 0 2px 0 #1f2a44; }

.change-hint {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  font-style: italic;
}

/* ---------- Footer ---------- */

.kleingedrucktes {
  max-width: 980px;
  margin: 28px auto 0;
  background: #fffaf0;
  border: 4px dashed #1f2a44;
  border-radius: 16px;
  padding: 18px 22px 22px;
  font-size: 13px;
  line-height: 1.55;
}

.kleingedrucktes h4 {
  margin: 0 0 8px;
  text-align: center;
  color: #ef476f;
  font-size: 18px;
  letter-spacing: 1px;
}

.contact {
  margin: 12px 0 8px;
  text-align: center;
  font-size: 14px;
}

.badges {
  text-align: center;
  margin: 12px 0 0;
}

.hero-badges {
  margin: 4px 0 14px;
}

.badge {
  display: inline-block;
  margin: 4px 6px;
  padding: 6px 12px;
  background: #ffd166;
  border: 2px solid #1f2a44;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}
