/* =====================================================================
   bärehöhli.ch – Stylesheet
   Dunkler Look, Bebas Neue für Titel, Montserrat für Text.
   Markenfarben: Rot #db545a, Gelb #f1c50e.
   ===================================================================== */

/* ── Schriften (selbst gehostet) ───────────────────────────────────── */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/bebas-neue-400-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/montserrat-var-latin.woff2') format('woff2');
}

/* ── Grundlagen ────────────────────────────────────────────────────── */
:root {
  --bg:        #111111;
  --bg-2:      #1c1c1c;
  --bg-3:      #262626;
  --ink:       #f4f2ee;
  --muted:     #b9b5ad;
  --line:      rgba(255, 255, 255, .12);
  --red:       #db545a;
  --red-dark:  #c04046;
  --yellow:    #f1c50e;
  --font-head: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --radius:    14px;
  --shadow:    0 18px 45px rgba(0, 0, 0, .45);
  --header-h:  76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  /* Das schräge Laufband ragt seitlich hinaus – nie horizontal scrollen */
  overflow-x: hidden;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

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

/* display:flex/grid auf Komponenten darf das hidden-Attribut nie aushebeln */
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: .02em;
  margin: 0 0 .4em;
  text-transform: uppercase;
}
h1 { font-size: clamp(3rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }

p { margin: 0 0 1em; }

a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }

address { font-style: normal; }

.mark-red    { color: var(--red); }
.mark-yellow { color: var(--yellow); }

.container {
  width: min(100% - 2.5rem, 1180px);
  margin-inline: auto;
}
.container--narrow { width: min(100% - 2.5rem, 760px); }

.icon { width: 1.5em; height: 1.5em; fill: currentColor; vertical-align: middle; }
.icon--sm { width: 1.15em; height: 1.15em; }
.icon--xs { width: .95em; height: .95em; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: .6rem 1rem;
  background: var(--yellow);
  color: #111;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

.eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 .8rem;
}

.text-link {
  font-weight: 600;
  color: var(--yellow);
  border-bottom: 1px solid transparent;
}
.text-link:hover { text-decoration: none; border-bottom-color: currentColor; }

/* ── Knöpfe ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .85rem 1.7rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); }

.btn--yellow { background: var(--yellow); color: #111; }

.btn--ghost {
  border-color: rgba(255, 255, 255, .65);
  color: #fff;
  background: rgba(0, 0, 0, .25);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }

.btn--block { width: 100%; justify-content: center; }

/* ── Infoband ganz oben ────────────────────────────────────────────── */
.topbar {
  position: relative;
  z-index: 60;
  font-size: .9rem;
  font-weight: 600;
}
.topbar--yellow { background: var(--yellow); color: #111; }
.topbar--red    { background: var(--red); color: #fff; }
.topbar--dark   { background: #0b0b0b; color: var(--ink); border-bottom: 1px solid var(--line); }
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem 1.2rem;
  align-items: center;
  justify-content: center;
  padding: .5rem 0;
  text-align: center;
}
.topbar__link { color: inherit; font-weight: 800; white-space: nowrap; }

/* ── Kopfbereich ───────────────────────────────────────────────────── */
.site-top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
}
.site-header { padding: .8rem 0; }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand img {
  width: auto;
  height: 52px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .5));
}

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__link {
  font-family: var(--font-head);
  font-size: 1.25rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
  padding: .2rem 0;
  border-bottom: 3px solid transparent;
}
.nav__link:hover { text-decoration: none; color: var(--yellow); }
.nav__link.is-current { border-bottom-color: var(--red); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social {
  display: flex;
  gap: .6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social a {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  transition: background .15s ease, color .15s ease;
}
.social a:hover { background: var(--yellow); color: #111; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.8rem;
  height: 2.8rem;
  padding: .6rem;
  background: rgba(0, 0, 0, .35);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle__bar {
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header-h) + 2rem) 2rem 2.5rem;
  background: rgba(12, 12, 12, .97);
}
.mobile-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .4rem;
}
.mobile-nav__link {
  display: block;
  padding: .45rem 0;
  font-family: var(--font-head);
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
}
.mobile-nav__link.is-current { color: var(--red); }
.mobile-nav__foot {
  display: grid;
  gap: 1rem;
  justify-items: start;
}
.mobile-nav__phone { color: #fff; font-weight: 600; }

/* ── Hero & Statement-Sektionen ────────────────────────────────────── */
.hero,
.statement {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero--full  { min-height: 100svh; }
.hero--page  { min-height: 62svh; padding-top: var(--header-h); }
.statement   { min-height: 88svh; }

.hero__media,
.statement__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img,
.statement__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim,
.statement__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, .55) 0%, rgba(10, 10, 10, .05) 35%, rgba(10, 10, 10, .78) 100%);
}
.statement__scrim--strong { background: rgba(10, 10, 10, .72); }

.hero__inner,
.statement__inner {
  position: relative;
  padding: 7rem 0 4.5rem;
}

.hero__title,
.statement__title {
  font-size: clamp(3.2rem, 10vw, 7rem);
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .55);
  margin-bottom: .25em;
}

.hero__text,
.statement__text {
  max-width: 34rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .7);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.4rem;
}

/* Runder Sticker («party wo du willsch!») */
.badge-circle {
  position: absolute;
  right: 4vw;
  top: -1rem;
  display: grid;
  place-items: center;
  width: clamp(120px, 16vw, 170px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
  box-shadow: var(--shadow);
}

.statement--schwarzbaer .statement__inner,
.statement--info .statement__inner { padding-top: 9rem; }

/* Info-Spalten («wo und wann») */
.info-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}
.info-cols__title {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--yellow);
}

/* ── Inhaltssektionen ──────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section--tight { padding: 3rem 0; }
.section--dark { background: var(--bg); }
.section--charcoal { background: var(--bg-2); }
.section--legal { padding-top: calc(var(--header-h) + 4rem); }
.section--legal h1 { font-size: clamp(2.6rem, 6vw, 4rem); }
.section--legal h2 { font-size: 1.6rem; margin-top: 2rem; }
.section--legal a { color: var(--yellow); }

.grid { display: grid; gap: 2rem; }
@media (min-width: 760px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.info-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.info-card__icon {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  background: rgba(241, 197, 14, .14);
  color: var(--yellow);
}

.frame-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  display: grid;
  gap: .8rem;
}
.steps li::marker { color: var(--red); font-weight: 800; }

.hours {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .3rem;
  max-width: 20rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: .3rem;
}
.hours li span:last-child { font-weight: 700; white-space: nowrap; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.6rem;
}
.contact-item__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(219, 84, 90, .18);
  color: var(--red);
}
.contact-item h3 { margin-bottom: .15em; font-size: 1.3rem; }
.contact-item p { margin-bottom: .3em; }

/* ── Getränkekarte ─────────────────────────────────────────────────── */
.menu-grid {
  columns: 2 24rem;
  column-gap: 2rem;
}
.menu-card {
  break-inside: avoid;
  margin-bottom: 2rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem 1.4rem;
  box-shadow: var(--shadow);
}
.menu-card--accent {
  background: linear-gradient(140deg, rgba(219, 84, 90, .25), rgba(241, 197, 14, .12)), var(--bg-3);
}
.menu-card__title {
  font-size: 1.9rem;
  color: var(--yellow);
  border-bottom: 2px solid var(--red);
  padding-bottom: .3rem;
  margin-bottom: .9rem;
}
.menu-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .55rem;
}
.menu-card__note { color: var(--muted); font-size: .85rem; margin: 1rem 0 0; }
.menu-card__text { margin-bottom: 0; }

.menu-item {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  font-size: .95rem;
}
.menu-item__name { font-weight: 600; }
.menu-item__info {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: .8rem;
}
.menu-item__dots {
  flex: 1;
  min-width: 1.2rem;
  border-bottom: 2px dotted rgba(255, 255, 255, .25);
  transform: translateY(-.25em);
}
.menu-item__price { font-weight: 800; white-space: nowrap; color: var(--yellow); }

/* ── Events ────────────────────────────────────────────────────────── */
.event-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.5rem;
}
.event {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.event__date,
.event-teaser__date {
  flex: none;
  display: grid;
  place-items: center;
  width: 4.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.event__day,
.event-teaser__day { font-family: var(--font-head); font-size: 1.7rem; }
.event__month,
.event-teaser__month { font-size: .75rem; font-weight: 700; letter-spacing: .08em; }
.event__meta { color: var(--muted); font-size: .85rem; font-weight: 600; margin-bottom: .2em; }
.event__title { margin-bottom: .2em; }
.event__text { margin-bottom: .4em; }

.event-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow);
}
.event-teaser__body { flex: 1 1 16rem; }
.event-teaser__title { margin-bottom: .1em; }
.event-teaser__meta { color: var(--muted); margin: 0; font-weight: 600; }

.empty-state {
  text-align: center;
  max-width: 34rem;
  margin-inline: auto;
  padding: 3rem 1rem;
}
.empty-state__icon {
  width: 3.5rem;
  height: 3.5rem;
  fill: var(--red);
  margin: 0 auto 1rem;
}

/* ── Zweigeteilter Abschluss-Balken ────────────────────────────────── */
.split-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.split-cta p { margin: 0; color: var(--muted); }
.split-cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ── Formular ──────────────────────────────────────────────────────── */
.form { display: grid; gap: 1.1rem; }
.form__row {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 640px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}
.field { display: grid; gap: .35rem; }
.field label { font-size: .85rem; font-weight: 700; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 1px;
  border-color: transparent;
}
.field--check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .7rem;
  font-size: .85rem;
}
.field--check input { width: 1.1rem; height: 1.1rem; margin-top: .2rem; }
.field--honey {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field__hint { font-size: .8rem; color: var(--muted); }
.req { color: var(--red); }

.form__status {
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
}
.form__status--ok    { background: rgba(90, 170, 90, .18); border: 1px solid rgba(90, 170, 90, .5); }
.form__status--error { background: rgba(219, 84, 90, .18); border: 1px solid rgba(219, 84, 90, .55); }

/* ── Fussbereich (bewusst schlank: eine Zeile + Copyright) ─────────── */
.site-footer {
  background: #0b0b0b;
  border-top: 1px solid var(--line);
}
.site-footer__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2.5rem;
  padding-block: 2.2rem;
}
.site-footer__brand img { width: auto; height: 46px; }
.site-footer__info {
  flex: 1 1 20rem;
  display: grid;
  gap: .2rem;
  font-size: .95rem;
}
.site-footer__info p { margin: 0; }
.site-footer__info a { color: var(--ink); }
.site-footer__info a:hover { color: var(--yellow); }
.site-footer__hours {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  color: var(--muted);
  font-size: .85rem;
}
.site-footer__note { color: var(--muted); font-size: .85rem; margin-top: .8rem; }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  padding-block: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom a { color: inherit; }

/* ── Hinweis-Popup ─────────────────────────────────────────────────── */
.notice-modal { position: fixed; inset: 0; z-index: 120; }
.notice-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
}
.notice-modal__panel {
  position: relative;
  width: min(92vw, 480px);
  margin: 12vh auto 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 2rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.notice-modal--yellow .notice-modal__panel { border-top: 6px solid var(--yellow); }
.notice-modal--red    .notice-modal__panel { border-top: 6px solid var(--red); }
.notice-modal__ornament { width: 3rem; height: 3rem; fill: var(--yellow); margin: 0 auto .8rem; }
.notice-modal__close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
}
.notice-modal__meta { color: var(--muted); font-size: .85rem; }
.notice-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-top: 1.2rem;
}

/* ── Nach-oben-Knopf ───────────────────────────────────────────────── */
.to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.to-top .icon { transform: rotate(-90deg); }
.to-top:hover { background: var(--red-dark); }

/* ── Einblend-Animation ────────────────────────────────────────────── */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
  .status-chip--open .status-chip__dot { animation: none; }
}

/* ── Höhli-Vibe: Laufband, Sticker, Tatze, Korn ────────────────────── */

/* Schräges Laufband im Sticker-Stil */
.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  width: calc(100% + 4vw);
  margin: -1rem -2vw;
  transform: rotate(-1.2deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.ticker--red    { background: var(--red); color: #fff; }
.ticker--yellow { background: var(--yellow); color: #111; }
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker__group {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: .55rem .7rem;
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker--red .ticker__dot    { color: rgba(255, 255, 255, .55); }
.ticker--yellow .ticker__dot { color: rgba(0, 0, 0, .4); }
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* Sticker-Badges wie ab der Stickerwand */
.stickers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sticker {
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem 1.1rem;
  border: 3px solid #fff;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .45);
  transform: rotate(-2.2deg);
  transition: transform .15s ease;
}
.sticker:nth-child(2n) { transform: rotate(1.8deg); }
.sticker:nth-child(3n) { transform: rotate(-1deg); }
.sticker:hover { transform: rotate(0) scale(1.06); }
.sticker--yellow { background: var(--yellow); color: #111; }
.sticker--red    { background: var(--red); color: #fff; }
.sticker--white  { background: var(--ink); color: #111; }

/* Grosse Bärentatze als Wasserzeichen (wie auf der gedruckten Karte) */
.has-paw { position: relative; overflow: hidden; }
.has-paw > .container { position: relative; z-index: 1; }
.has-paw::before {
  content: '';
  position: absolute;
  right: -7rem;
  bottom: -9rem;
  width: 36rem;
  height: 36rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cpath fill='%23ffffff' fill-opacity='0.045' d='M9.2 6.1c1.2-.2 2.4.8 2.7 2.2.3 1.4-.4 2.7-1.6 2.9-1.2.2-2.4-.8-2.7-2.2-.3-1.4.4-2.7 1.6-2.9Zm9.6 0c1.2.2 1.9 1.5 1.6 2.9-.3 1.4-1.5 2.4-2.7 2.2-1.2-.2-1.9-1.5-1.6-2.9.3-1.4 1.5-2.4 2.7-2.2ZM4.9 11.8c1.1-.4 2.4.3 3 1.6.5 1.3.1 2.7-1 3.1-1.1.4-2.4-.3-3-1.6-.5-1.3-.1-2.7 1-3.1Zm18.2 0c1.1.4 1.5 1.8 1 3.1-.5 1.3-1.9 2-3 1.6-1.1-.4-1.5-1.8-1-3.1.6-1.3 1.9-2 3-1.6ZM14 12.6c2 0 4.6 2.4 5.4 4.6.6 1.7.1 3.4-1.4 3.9-1.2.4-2.1-.2-4-.2s-2.8.6-4 .2c-1.5-.5-2-2.2-1.4-3.9.8-2.2 3.4-4.6 5.4-4.6Z'/%3E%3C/svg%3E") no-repeat center / contain;
  transform: rotate(-18deg);
  pointer-events: none;
}

/* Feines Korn über den grossen Fotoflächen – Streetstyle statt Hochglanz */
.hero::after,
.statement::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Neon-Schimmer für die kleinen Überzeilen (wie das Leuchtschild an der Wand) */
.eyebrow { text-shadow: 0 0 14px rgba(241, 197, 14, .5); }

/* Der runde Sticker bekommt einen gestrichelten Rand */
.badge-circle { border: 2px dashed rgba(255, 255, 255, .65); }

/* Kiosk-Karte klebt leicht schräg wie ein Sticker */
.menu-card--accent { transform: rotate(-1deg); }

/* Live-Status: «Jetzt offen» mit pulsierendem Punkt */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: .3rem .9rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
}
.status-chip--open {
  background: rgba(94, 201, 109, .16);
  border: 1px solid rgba(94, 201, 109, .45);
  color: #7ee08a;
}
.status-chip--closed {
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  color: var(--muted);
}
.status-chip__dot {
  width: .55em;
  height: .55em;
  border-radius: 50%;
  background: currentColor;
}
.status-chip--open .status-chip__dot { animation: chip-pulse 1.8s ease-out infinite; }
@keyframes chip-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(126, 224, 138, .5); }
  70%  { box-shadow: 0 0 0 .5rem rgba(126, 224, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(126, 224, 138, 0); }
}
.hero__status { margin: 0 0 1rem; }

/* Sticker können auch Links sein */
.sticker a { color: inherit; text-decoration: none; display: block; }

/* Instagram-Sektion mit schrägen Polaroids */
.insta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 4.5rem;
}
.insta__photos {
  display: flex;
  padding: .8rem 0 0 1rem;
}
.insta__photo {
  display: block;
  width: clamp(110px, 15vw, 180px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transform: rotate(-7deg);
}
.insta__photo img { width: 100%; height: 100%; object-fit: cover; }
.insta__photo:nth-child(2) { transform: rotate(4deg) translateY(-14px); margin-left: -1.4rem; }
.insta__photo:nth-child(3) { transform: rotate(-2deg); margin-left: -1.4rem; }
.insta__text { max-width: 26rem; }

/* «heute / morgen / in X Tagen» bei Events */
.event__soon { color: var(--yellow); font-weight: 800; }

/* Tatzen-Spur (Fehlerseite) */
.paw-trail {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 1.2rem;
}
.paw-trail .icon { width: 2.3rem; height: 2.3rem; fill: var(--yellow); }
.paw-trail .icon:nth-child(2n) { transform: rotate(18deg) translateY(-10px); }
.paw-trail .icon:nth-child(2) { opacity: .75; }
.paw-trail .icon:nth-child(3) { opacity: .5; }
.paw-trail .icon:nth-child(4) { opacity: .3; }

/* ── Mobil ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .social--header { display: none; }
  .brand img { height: 42px; }
  .badge-circle { position: static; margin-bottom: 1.5rem; transform: rotate(-6deg); }
  .statement--schwarzbaer .statement__inner { display: grid; justify-items: start; }
  .event { flex-direction: column; }
}
