/* ============================================================
   Moshpit Entertainment – Website V0.6
   Design-Festlegungen gemäß ME_04 Website-Konzept Version 1.2
   ============================================================ */

/* ---------- Fonts (lokal gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Token ---------- */
:root {
  --bg: #FFFFFF;
  --bg-tint: #F7F7F7;
  --ink: #1A1A1A;
  --ink-soft: #595959;
  --accent: #8B1A1A;
  --accent-hover: #6E1414;
  --dark: #111111;
  --line: #E4E4E4;
  --radius: 10px;
  --shadow-sticker: 4px 4px 0 rgba(26, 26, 26, 0.12);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --maxw: 1120px;
}

/* ---------- Basis ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
a:hover { color: var(--accent-hover); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.08;
  margin: 0 0 0.5em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.15rem;
  padding: 0.7em 1.6em;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); color: #fff; transform: translate(-1px, -1px); box-shadow: var(--shadow-sticker); }
.btn--secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--secondary:hover { color: var(--accent); border-color: var(--accent); transform: translate(-1px, -1px); box-shadow: var(--shadow-sticker); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1.25rem;
}
.nav__logo { width: 190px; }
.nav__menu {
  list-style: none; display: flex; gap: 1.6rem; margin: 0; padding: 0;
  align-items: center;
}
.nav__menu a {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 1.05rem;
  color: var(--ink); text-decoration: none;
}
.nav__menu a:hover { color: var(--accent); }
.nav__menu a.nav__cta {
  color: var(--accent); border: 2px solid var(--accent);
  padding: 0.25em 0.9em; border-radius: 6px;
}
.nav__menu a.nav__cta:hover { background: var(--accent); color: #fff; }
.nav__toggle { display: none; background: none; border: 0; padding: 0.5rem; cursor: pointer; }
.nav__toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { overflow: hidden; }
.hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  grid-template-areas:
    "logo  moshi"
    "text  moshi";
  column-gap: 0; row-gap: 0;
  align-items: center;
  padding: 3.5rem 1.25rem 2.5rem;
}
.hero__logo {
  grid-area: logo;
  width: min(540px, 100%);
  position: relative; z-index: 2; /* Logo liegt immer über Moshi */
  align-self: end;
}
.hero__text { grid-area: text; position: relative; z-index: 2; }
.hero__claim {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--accent);
  font-size: 1.25rem; margin: 1.6rem 0;
}
.hero__headline { font-size: clamp(2.2rem, 4.5vw, 3.4rem); max-width: 13em; }
.hero__subline { font-size: 1.1rem; color: var(--ink-soft); max-width: 30em; margin: 0 0 1.6rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1rem; }
.hero__artistlink {
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.hero__artistlink:hover { color: var(--accent); border-color: var(--accent); }
/* Moshi als Teil der Markenkomposition: oben bündig mit dem Logo,
   unten bündig mit der Headline (Höhe wird per Media Query mitskaliert). */
.hero__moshi { grid-area: moshi; display: flex; justify-content: flex-start; align-self: start; position: relative; z-index: 1; }
.hero__moshi img {
  height: 490px;
  width: auto;
  margin-top: 5px;
  margin-left: -0.75rem;
  transform: rotate(1.5deg);
  transform-origin: top center;
}
@media (min-width: 901px) and (max-width: 1180px) {
  .hero__moshi img { height: 41.5vw; }
}

/* ---------- Sektionen ---------- */
.section { padding: 4.5rem 0; }
.section--tint { background: var(--bg-tint); }
.section__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.section__inner--narrow { max-width: 780px; }
.section__title { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
.section__title::after {
  content: ""; display: block; width: 64px; height: 5px;
  background: var(--accent); margin-top: 0.35em; border-radius: 3px;
  transform: rotate(-1deg);
}
.section__lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 44em; margin: 0 0 2.2rem; }

/* Intro-Zeile: Fließtext links, Stempel-Badge rechts (mobil: Stempel darunter) */
.intro__row {
  display: flex; align-items: center; gap: 2rem;
  margin-bottom: 2.4rem;
}
.intro__row .section__lead { flex: 1 1 auto; min-width: 0; margin-bottom: 0; }

.trust-stamp {
  flex: 0 0 auto;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.05em;
  padding: 0.6em 0.95em 0.7em;
  border: 4px solid var(--accent); border-radius: 14px;
  color: var(--accent);
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.35rem; line-height: 1.1; letter-spacing: 0.005em; text-align: center;
  transform: rotate(-3deg);
  position: relative;
  filter: url(#stampDistress);
}
/* zweite, leicht versetzte Rahmenlinie für den "gestempelten" Look */
.trust-stamp::before {
  content: ""; position: absolute; inset: 4px;
  border: 1.5px solid var(--accent); border-radius: 9px; opacity: 0.6;
}
.trust-stamp span { padding: 0 0.1em; white-space: nowrap; }

.section__note { color: var(--ink-soft); font-size: 0.98rem; max-width: 44em; }
.section__cta { margin-top: 2rem; text-align: center; }
.section__cta--left { text-align: left; }

/* ---------- Nutzen-Kacheln ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.benefit {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sticker);
}
.benefit h3 { font-size: 1.35rem; color: var(--accent); }
.benefit p { margin: 0; color: var(--ink-soft); }

/* ---------- Künstlerkarten ---------- */
.artists { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.artist {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: visible; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sticker);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.artist:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(139, 26, 26, 0.14); }
.artist__media {
  position: relative; border-radius: var(--radius) var(--radius) 0 0;
  aspect-ratio: 3 / 2; overflow: hidden; background: #191919;
}
.artist__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.artist__fototag {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.78rem;
  color: #fff; background: rgba(26, 26, 26, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.15em 0.7em; border-radius: 999px;
  transform: rotate(-2deg);
  backdrop-filter: blur(2px);
}
.artist__badge {
  position: absolute; right: 0.7rem; bottom: 0.7rem; z-index: 2;
  width: 84px; height: 84px; border-radius: 50%;
  background: #fff; border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transform: rotate(6deg);
  overflow: hidden;
}
.artist__badge img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.artist__body { padding: 1.8rem 1.5rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.artist__name { font-size: 1.85rem; margin-bottom: 0.15em; }
.artist__draft {
  margin: 0; padding: 0.7rem 1.5rem 1rem;
  font-size: 0.76rem; color: var(--ink-soft); opacity: 0.85;
  border-top: 1px dashed var(--line);
}
.artist__claim { font-weight: 700; font-size: 0.98rem; margin: 0 0 0.7rem; color: var(--accent); }
.artist__desc { color: var(--ink-soft); font-size: 0.96rem; margin: 0 0 1rem; }
.artist__more[open] summary { margin-bottom: 0.5rem; }
.artist__more summary {
  cursor: pointer; font-weight: 500; font-size: 0.92rem; color: var(--ink);
  list-style: none;
}
.artist__more summary::-webkit-details-marker { display: none; }
.artist__more summary::after { content: " +"; color: var(--accent); font-weight: 700; }
.artist__more[open] summary::after { content: " –"; }
.artist__more p { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 1rem; }
.artist__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0 0 1.2rem; padding: 0; list-style: none; }
.artist__tags li {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em;
  background: var(--bg-tint); border: 1px solid var(--line);
  padding: 0.18em 0.7em; border-radius: 999px; color: var(--ink-soft);
  transform: rotate(-0.6deg);
}
.artist__tags li:nth-child(2n) { transform: rotate(0.8deg); }
.artist__actions { margin-top: auto; }
.artist__actions .btn { font-size: 1rem; width: 100%; text-align: center; }

/* ---------- Booking-Schritte ---------- */
.steps {
  list-style: none; margin: 0 0 1.6rem; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  counter-reset: step;
}
.step {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; position: relative; box-shadow: var(--shadow-sticker);
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  margin-bottom: 0.8rem; transform: rotate(-4deg);
}
.step h3 { font-size: 1.3rem; }
.step p { margin: 0; color: var(--ink-soft); }

/* ---------- Über uns ---------- */
.about { display: grid; grid-template-columns: minmax(0, 1fr) 180px; gap: 2rem; align-items: center; }
.about__moshi img { width: 150px; transform: rotate(-4deg); }
.about__moshi-text { color: var(--ink-soft); font-style: italic; }

/* ---------- Merch-Teaser ---------- */
.merch { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 2.5rem; align-items: center; }
.merch__copy .section__lead { margin-bottom: 1rem; }
.merch__copy .section__note { margin-bottom: 1.4rem; }
.merch__moshi { display: flex; justify-content: center; }
.merch__moshi img { width: min(230px, 100%); transform: rotate(-2deg); }

.merch__products {
  margin-top: 3rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.merch__product {
  margin: 0; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sticker);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.merch__product:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(139, 26, 26, 0.14); }
.merch__product img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.merch__product figcaption {
  padding: 0.9rem 1rem 1.1rem;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 1rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
}
.merch__product figcaption .badge-soon { font-size: 0.66rem; white-space: nowrap; }

/* ---------- Partner (ruhiger Abschluss vor dem Footer) ---------- */
.partner { padding: 3rem 0 3.5rem; }
.partner__title {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 1.05rem; color: var(--ink-soft);
  text-align: center; margin: 0 0 2rem;
}
.partner__logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 2.6rem 3.2rem;
}
.partner__logo { display: flex; align-items: center; justify-content: center; height: 64px; }
.partner__logo img {
  max-height: 100%; max-width: 180px; width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.partner__logo img:hover { filter: grayscale(0%); opacity: 1; }

/* ---------- Formular ---------- */
.form { margin-top: 1rem; }
.form__hp { position: absolute; left: -9999px; top: -9999px; }
.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-weight: 500; font-size: 0.92rem; margin-bottom: 0.3rem; }
.form__field input,
.form__field select,
.form__field textarea {
  font: inherit; color: var(--ink);
  padding: 0.6em 0.8em;
  border: 1.5px solid var(--line); border-radius: 6px; background: #fff;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.12); }
.form__optional {
  border: 1px dashed var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.2rem 0.4rem; margin: 0 0 1.2rem;
}
.form__optional legend {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 0.95rem; color: var(--ink-soft); padding: 0 0.4em;
}
.form__field--check { flex-direction: row; align-items: flex-start; gap: 0.6rem; }
.form__field--check input { margin-top: 0.3em; }
.form__field--check label { font-weight: 400; font-size: 0.88rem; color: var(--ink-soft); }
.form__hint { font-size: 0.82rem; color: var(--ink-soft); margin: 0 0 1.4rem; }
.form__submit { font-size: 1.15rem; }
.form__status { font-weight: 500; margin-top: 1rem; }
.form__status--ok { color: #1a6b2f; }
.form__status--err { color: var(--accent); }
.contact-alt { margin-top: 2rem; font-size: 0.95rem; color: var(--ink-soft); }

/* "Noch nicht live"-Kennzeichnung für Platzhalter (E-Mail, Impressum, Datenschutz) */
.badge-soon {
  display: inline-block; vertical-align: middle;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  color: var(--accent); background: #FDF3F3;
  border: 1px dashed var(--accent); border-radius: 999px;
  padding: 0.1em 0.7em; margin-left: 0.4em;
  transform: rotate(-1deg);
}
.badge-soon--dark {
  color: #f3c6c6; background: rgba(139, 26, 26, 0.25);
  border-color: rgba(243, 198, 198, 0.5);
}

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #fff; padding: 3rem 0 1.5rem; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; align-items: start;
}
.footer__logo { width: 200px; }
.footer__claim {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.75); font-size: 0.95rem;
}
.footer__nav, .footer__legal { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav a, .footer__legal a {
  color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 0.95rem;
}
.footer__nav a:hover, .footer__legal a:hover { color: #fff; text-decoration: underline; }
.footer__meta {
  max-width: var(--maxw); margin: 2.5rem auto 0; padding: 1.2rem 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55); font-size: 0.85rem;
}

/* ---------- Rechtsseiten (impressum.html / datenschutz.html) ---------- */
.legal-page { max-width: 780px; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
.legal-page h1 { font-size: 2.2rem; }
.legal-page .todo {
  background: #FDF3F3; border: 1px dashed var(--accent); border-radius: var(--radius);
  padding: 1rem 1.2rem; color: var(--accent); font-weight: 500; font-size: 0.95rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .benefits, .artists, .steps { grid-template-columns: 1fr; }
  .intro__row { flex-direction: column; align-items: flex-start; gap: 1.6rem; }
  .trust-stamp { align-self: center; }
  /* Konzept ME_04, Kap. 6: Mobil zuerst das Logo, dann Moshi, dann Claim + Buttons */
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "moshi"
      "text";
    text-align: left;
  }
  .hero__logo { width: min(440px, 100%); align-self: start; }
  .hero__moshi { justify-content: center; margin: 0.5rem 0 -0.5rem; }
  .hero__moshi img { width: min(230px, 55vw); height: auto; margin-left: 0; }
  .about { grid-template-columns: 1fr; }
  .about__moshi { display: flex; justify-content: flex-start; }
  .merch { grid-template-columns: 1fr; }
  .merch__moshi { order: -1; }
  .merch__moshi img { width: min(180px, 60vw); }
  .merch__products { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    display: none; padding: 0.5rem 0;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu li { padding: 0; }
  .nav__menu a { display: block; padding: 0.8rem 1.5rem; }
  .nav__menu a.nav__cta { margin: 0.5rem 1.5rem; text-align: center; }
  .form__row { grid-template-columns: 1fr; }
}
