/* ==========================================================================
   Kildare City Pub – Mobile-First Stylesheet
   ========================================================================== */

/* 0. Custom Properties
   ========================================================================== */
:root {
  /* Colours */
  --c-bg-deep:       #091e0d;
  --c-bg-primary:    #0f3d1c;
  --c-bg-secondary:  #164a22;
  --c-bg-card:       #1c5a2b;
  --c-bg-whisky:     #131100;
  --c-bg-quiz:       #1B2010;

  --c-amber:         #C8860A;
  --c-amber-light:   #E8B84B;
  --c-amber-hover:   #D99A1A;

  --c-text-primary:  #F5E8C8;
  --c-text-muted:    #9DB89A;
  --c-text-faint:    #6A8F66;

  --c-border:        #2D4A2A;
  --c-border-accent: #C8860A;

  /* Typography */
  --font-heading:    'Cinzel', serif;
  --font-quote:      'Crimson Text', serif;
  --font-body:       'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;

  /* Layout */
  --header-h: 64px;
  --max-w:    1200px;
  --radius:   4px;

  /* Transitions */
  --t-fast:   0.18s ease;
  --t-base:   0.28s ease;
  --t-slow:   0.45s ease;
}

/* 1. Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text-primary);
  background-color: var(--c-bg-primary);
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* 2. Typography Utilities
   ========================================================================== */
.label-caps {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-amber);
  opacity: 0.5;
}

.divider__icon {
  color: var(--c-amber);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  line-height: 1;
}

/* 3. Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--c-amber);
  color: var(--c-bg-deep);
  border-color: var(--c-amber);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--c-amber-hover);
  border-color: var(--c-amber-hover);
}

.btn--outline {
  background-color: transparent;
  color: var(--c-amber);
  border-color: var(--c-amber);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--c-amber);
  color: var(--c-bg-deep);
}

.btn--sm  { font-size: 0.625rem; padding: 0.45rem 0.875rem; }
.btn--md  { font-size: 0.75rem;  padding: 0.65rem 1.25rem; }
.btn--lg  { font-size: 0.875rem; padding: 0.875rem 1.75rem; }

/* 4. Image Placeholder
   ========================================================================== */
.img-ph {
  background-color: var(--c-bg-card);
  border: 1px dashed var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.img-ph::after {
  content: 'Bild folgt';
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--c-text-faint);
  letter-spacing: 0.05em;
}

/* 5. Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--c-bg-deep);
  border-bottom: 1px solid var(--c-border-accent);
  height: var(--header-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Logo */
.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo-img {
  height: 40px;
  width: auto;
}

.site-header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-amber);
  letter-spacing: 0.25em;
}

/* Desktop Nav – hidden on mobile */
.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.site-nav__link {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: 3px;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--c-amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-base);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--c-amber);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
  transform: scaleX(1);
}

/* Actions (CTA + Hamburger) */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

/* Hamburger */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.hamburger__bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--c-text-primary);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}

.hamburger.is-active .hamburger__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-active .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active .hamburger__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--c-bg-deep);
  z-index: 99;
  overflow-y: auto;
  padding: var(--space-md) 1.5rem var(--space-xl);
  transform: translateX(100%);
  transition: transform var(--t-base);
  border-top: 1px solid var(--c-border);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-md);
  border-top: 1px solid var(--c-border);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text-primary);
  padding: 1rem 0.75rem;
  border-bottom: 1px solid var(--c-border);
  border-left: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast), background-color var(--t-fast);
  text-decoration: none;
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  color: var(--c-amber);
  border-left-color: var(--c-amber);
  background-color: rgba(200, 134, 10, 0.06);
}

.mobile-nav__icon {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background-color: var(--c-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--t-fast);
}

.mobile-nav__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-amber);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-nav__link:hover .mobile-nav__icon {
  background-color: rgba(200, 134, 10, 0.15);
}

.mobile-nav__badge {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-amber);
  border: 1px solid var(--c-amber);
  border-radius: 3px;
  padding: 2px 5px;
  opacity: 0.8;
}

.mobile-nav__divider {
  text-align: center;
  color: var(--c-amber);
  font-size: 0.75rem;
  opacity: 0.5;
  padding: 1rem 0 0.5rem;
}

.mobile-nav__info {
  text-align: center;
  color: var(--c-text-faint);
  font-size: 0.8125rem;
  line-height: 1.8;
  padding-top: var(--space-sm);
}

/* Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* 6. Hero Section
   ========================================================================== */
.hero {
  margin-top: var(--header-h);
}

/* ── Bild-Zone: Pub Sign ── */
.hero__sign {
  position: relative;
  background-image: url('../../img/hero/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  text-align: center;
  padding: clamp(2.25rem, 7vw, 4rem) 1.5rem clamp(2rem, 6vw, 3.5rem);
}

.hero__sign-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 2, 0.62);
}

.hero__sign-inner {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(8, 6, 2, 0.52);
  border: 0.5px solid rgba(200, 134, 10, 0.25);
  border-radius: 8px;
  padding: 1.25rem 1rem;
}

.hero__sign-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.hero__sign-rule {
  flex: 1;
  height: 0.5px;
  background: rgba(200, 134, 10, 0.7);
  display: block;
}

.hero__sign-location-text {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  color: rgba(200, 134, 10, 0.95);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}

.hero__sign-das {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(200, 134, 10, 0.92);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.3rem;
}

.hero__sign-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3rem, 12vw, 5rem);
  color: var(--c-text-primary);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}

.hero__sign-cityp {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1rem, 4vw, 1.5rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(200, 134, 10, 0.9);
}

.hero__sign-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 60%;
  margin: 1rem auto;
}

.hero__sign-ornament {
  color: rgba(200, 134, 10, 0.6);
  font-size: 0.65rem;
}

.hero__sign-tagline {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 0.75rem;
  color: rgba(245, 232, 200, 0.82);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.04em;
}

/* ── Slider ── */
.hero__sign-track {
  display: grid;
}
.hero__sign-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
}
.hero__sign-slide--active {
  opacity: 1;
  visibility: visible;
  animation: signFadeIn 0.45s ease forwards;
}
@keyframes signFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Shamrock-Navigation ── */
.hero__sign-nav {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  padding: 16px 0 14px;
}
.hero__sign-nav__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.3;
  transform: scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
  line-height: 0;
}
.hero__sign-nav__btn--active {
  opacity: 1;
  transform: scale(1);
}
.hero__sign-nav__btn:hover:not(.hero__sign-nav__btn--active) {
  opacity: 0.55;
}

/* ── Karten-Zone ── */
.hero__notices {
  background: var(--c-bg-primary);
  padding: 14px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.hero__notice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 0.5px solid rgba(200, 134, 10, 0.22);
  border-left: 2.5px solid rgba(200, 134, 10, 0.7);
  border-radius: 0 8px 8px 0;
  padding: 11px 13px;
  text-decoration: none;
  color: inherit;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.hero__notice:hover {
  background: rgba(200, 134, 10, 0.08);
  border-color: rgba(200, 134, 10, 0.35);
  border-left-color: var(--c-amber);
}

.hero__notice--static {
  cursor: default;
  gap: 8px;
  justify-content: center;
  border-left: 0.5px solid rgba(200, 134, 10, 0.22);
  border-radius: 8px;
  background: rgba(200, 134, 10, 0.07);
}

.hero__notice--static:hover {
  background: rgba(200, 134, 10, 0.07);
  border-color: rgba(200, 134, 10, 0.22);
  border-left-color: rgba(200, 134, 10, 0.22);
}

.hero__notice-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8860a;
  flex-shrink: 0;
}

.hero__notice-live {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8860a;
  flex-shrink: 0;
}

.hero__notice-text {
  font-size: 0.75rem;
  color: rgba(245, 232, 200, 0.75);
}

.hero__notice--sport {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 14px;
  cursor: default;
  background: rgba(200, 134, 10, 0.07);
}

.hero__notice--sport:hover {
  background: rgba(200, 134, 10, 0.07);
  border-color: rgba(200, 134, 10, 0.22);
  border-left-color: rgba(200, 134, 10, 0.22);
}

.hero__notice-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 6px;
}

.hero__notice-rule {
  flex: 1;
  height: 0.5px;
  background: rgba(200, 134, 10, 0.3);
  display: block;
}

.hero__notice-dot--live {
  background: #e63535;
  box-shadow: 0 0 5px rgba(230, 53, 53, 0.5);
}

.hero__notice-live--red {
  color: #e63535;
}

.hero__notice-headline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 700;
  color: var(--c-text-primary);
  margin: 0 0 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__notice-claim {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(200, 134, 10, 0.88);
  margin: 0;
}

.hero__notice--quiz {
  flex-direction: column;
  align-items: stretch;
  cursor: default;
}

.hero__notice--quiz:hover {
  background: rgba(200, 134, 10, 0.04);
  border-color: rgba(200, 134, 10, 0.15);
  border-left-color: rgba(200, 134, 10, 0.55);
}

.hero__notice-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__notice-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__notice-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-primary);
  letter-spacing: 0.02em;
}

.hero__notice-sub {
  font-size: 0.625rem;
  color: rgba(245, 232, 200, 0.4);
}

.hero__notice-badge {
  font-size: 0.5625rem;
  font-weight: 500;
  color: var(--c-amber);
  background: rgba(200, 134, 10, 0.12);
  border: 0.5px solid rgba(200, 134, 10, 0.2);
  border-radius: 20px;
  padding: 3px 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

.hero__notice-arrow {
  flex-shrink: 0;
  stroke: rgba(200, 134, 10, 0.4);
  transition: stroke var(--t-fast);
}

.hero__notice:hover .hero__notice-arrow {
  stroke: var(--c-amber);
}


/* ── Probefrage im Hero ── */

.hero__quiz-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 500;
  color: rgba(200, 134, 10, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero__quiz-q {
  font-size: 0.6875rem;
  color: rgba(245, 232, 200, 0.85);
  font-style: italic;
  line-height: 1.4;
  margin: 0 0 10px;
}

.hero__quiz-answers {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hero__quiz-ans {
  font-size: 0.625rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(200, 170, 100, 0.25);
  background: transparent;
  color: rgba(245, 232, 200, 0.65);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  font-family: inherit;
}

.hero__quiz-ans:hover {
  border-color: rgba(200, 170, 100, 0.5);
  color: rgba(245, 232, 200, 0.9);
}

.hero__quiz-ans--correct {
  border-color: var(--c-amber) !important;
  color: var(--c-amber) !important;
  background: rgba(200, 134, 10, 0.12) !important;
}

.hero__quiz-ans--wrong {
  border-color: rgba(180, 60, 60, 0.4) !important;
  color: rgba(200, 100, 100, 0.6) !important;
}

.hero__quiz-answers[data-answered] .hero__quiz-ans {
  cursor: default;
  pointer-events: none;
}
.hero__quiz-answers[data-answered] .hero__quiz-ans:not(.hero__quiz-ans--correct):not(.hero__quiz-ans--wrong) {
  opacity: 0.3;
}

/* ── Quiz Reveal ── */
.hero__quiz-reveal {
  overflow: hidden;
}
.hero__quiz-reveal-correct,
.hero__quiz-reveal-wrong {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 0.5px solid rgba(200, 134, 10, 0.15);
  animation: quiz-reveal-in 0.25s ease both;
}
.hero__quiz-reveal-correct[hidden],
.hero__quiz-reveal-wrong[hidden] {
  display: none;
}

@keyframes quiz-reveal-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__quiz-reveal-title {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--c-amber);
  margin: 0 0 2px;
}
.hero__quiz-reveal-sub {
  font-size: 0.6rem;
  color: rgba(245, 232, 200, 0.45);
  margin: 0 0 8px;
}
.hero__quiz-reveal-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  font-family: inherit;
  color: rgba(245, 232, 200, 0.5);
  background: transparent;
  border: 0.5px solid rgba(200, 134, 10, 0.25);
  border-radius: 6px;
  padding: 4px 9px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.hero__quiz-reveal-cta:hover {
  color: var(--c-amber);
  border-color: var(--c-amber);
}

.hero__quiz-reveal-msg {
  font-size: 0.6375rem;
  color: rgba(245, 232, 200, 0.55);
  line-height: 1.45;
  margin: 0 0 6px;
}
.hero__quiz-reveal-retry {
  font-size: 0.6rem;
  font-family: inherit;
  color: rgba(200, 134, 10, 0.65);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.15s;
}
.hero__quiz-reveal-retry:hover {
  color: var(--c-amber);
}


/* 7. Intro / About Section
   ========================================================================== */
.intro {
  background-color: var(--c-bg-secondary);
  padding: var(--space-lg) 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}

.intro__inner {
  max-width: 640px;
  margin: 0 auto;
}

.intro__quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--c-amber);
  margin-bottom: 1.25rem;
}

.intro__quote cite {
  display: block;
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--c-text-faint);
  margin-top: 0.75rem;
}

.intro__divider {
  margin: 1.25rem auto;
  max-width: 200px;
}

.intro__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--c-text-muted);
}

.intro__text em {
  color: var(--c-amber);
  font-style: italic;
}

/* 8. Gallery Strip
   ========================================================================== */
.gallery-strip {
  background-color: var(--c-bg-deep);
  padding: 1.5rem 0 1.5rem 1.25rem;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}

.gallery-strip__label {
  margin-bottom: 0.75rem;
  padding-right: 1.25rem;
}

.gallery-strip__track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding-right: 1.25rem;
  scrollbar-width: none;
}

.gallery-strip__track::-webkit-scrollbar { display: none; }
.gallery-strip__track.is-dragging { cursor: grabbing; }

.gallery-strip__item {
  flex-shrink: 0;
  width: 72vw;
  max-width: 280px;
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: border-color var(--t-fast);
}

.gallery-strip__item:hover {
  border-color: var(--c-amber);
}

.gallery-strip__item img,
.gallery-strip__item .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-strip__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1.25rem;
  margin-top: 0.75rem;
}

.gallery-strip__all {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  color: var(--c-amber);
  text-transform: uppercase;
  transition: letter-spacing var(--t-fast);
}

.gallery-strip__all:hover { letter-spacing: 0.2em; }

/* 9. Navigation Grid
   ========================================================================== */
.nav-grid {
  background-color: var(--c-bg-primary);
  padding: 1.25rem;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

/* Quiz Night – eigene Section */
.pub-quiz {
  padding: 0 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pub-quiz__cta {
  width: 100%;
  max-width: 480px;
  padding: .75rem 1.25rem;
  background: #c8860a;
  color: #0f3d1c;
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .03em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--t-fast);
}

.pub-quiz__cta:hover {
  background: #d99720;
}

/* Quiz Night – Banner Card */
.nav-card--quiz {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
  padding: 1.375rem 1.75rem;
  border-right: none;
  border-bottom: none;
  background-color: #152a15;
  cursor: pointer;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.nav-card--quiz::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 22px,
    rgba(200, 134, 10, 0.035) 22px,
    rgba(200, 134, 10, 0.035) 44px
  );
  pointer-events: none;
}

.nav-card--quiz:hover,
.nav-card--quiz:focus-visible {
  background-color: #1d3d1d;
}

.nav-card-quiz__qs {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-amber-light);
  letter-spacing: 0.2rem;
  flex-shrink: 0;
  line-height: 1;
}

.nav-card-quiz__body {
  flex: 1;
}

.nav-card-quiz__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--c-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.2rem;
}

.nav-card-quiz__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text-primary);
  margin: 0 0 0.15rem;
  line-height: 1.2;
}

.nav-card-quiz__sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--c-amber-light);
  margin: 0;
  opacity: 0.8;
}

.nav-card-quiz__arrow {
  flex-shrink: 0;
  color: var(--c-amber);
  display: flex;
  align-items: center;
}


/* 10. Specials (Bier & Whisky des Monats)
   ========================================================================== */
.specials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--c-bg-primary);
  border-bottom: 1px solid var(--c-border);
}

.special-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--c-border);
  cursor: pointer;
  overflow: hidden;
}

.special-card:last-child {
  border-right: none;
}

/* Dark-Strip Header */
.special-card__header {
  padding: 0.5rem 1rem;
  background-color: #0f1810;
  border-bottom: 1px solid var(--c-border);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-green-light, #7aaa60);
  flex-shrink: 0;
  text-align: center;
}

.special-card--whisky .special-card__header {
  color: var(--c-amber-light);
}

/* Media wrapper (image + overlay + content) */
.special-card__media {
  position: relative;
  flex: 1;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.special-card__bg {
  position: absolute;
  inset: 0;
  background-color: var(--c-bg-card);
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow);
}

.special-card:hover .special-card__bg {
  transform: scale(1.04);
}

.special-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 18, 10, 0.96) 0%,
    rgba(10, 18, 10, 0.5) 55%,
    rgba(10, 18, 10, 0.1) 100%
  );
}

.special-card--whisky .special-card__overlay {
  background: linear-gradient(
    to top,
    rgba(19, 17, 0, 0.96) 0%,
    rgba(19, 17, 0, 0.5) 55%,
    rgba(19, 17, 0, 0.1) 100%
  );
}

.special-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.25rem 1rem 1rem;
  text-align: center;
}

.special-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.special-card__sub {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin-bottom: 0.875rem;
}

.special-card__price {
  display: inline-block;
  background-color: var(--c-amber);
  color: var(--c-bg-deep);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.special-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(200, 134, 10, 0.45);
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-amber);
  background: none;
  cursor: pointer;
  transition: border-color var(--t-fast);
}

.special-card__btn:hover {
  border-color: rgba(200, 134, 10, 0.8);
}

.special-card__btn svg {
  width: 10px;
  height: 10px;
  stroke: var(--c-amber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* 11. Hours Strip
   ========================================================================== */
.hours {
  background-color: rgba(0, 0, 0, 0.22);
  padding: 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(200, 134, 10, 0.18);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hours__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border-accent);
  border-radius: 50%;
}

.hours__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-amber);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hours__main {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text-primary);
}

.hours__note {
  font-size: 0.75rem;
  color: var(--c-text-faint);
  margin-top: 0.2rem;
}

/* 12. Footer
   ========================================================================== */
.site-footer {
  background-color: var(--c-bg-deep);
  border-top: 1px solid var(--c-border-accent);
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem var(--space-sm);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
  margin-bottom: var(--space-lg);
}

.site-footer__heading {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 0.75rem;
}

.site-footer__address,
.site-footer__hours {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--c-text-muted);
}

.site-footer__contact {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--c-text-muted);
}

.site-footer__contact a:hover { color: var(--c-amber); }

.site-footer__note {
  font-size: 0.75rem;
  color: var(--c-text-faint);
  margin-top: 0.5rem;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__links a {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
}

.site-footer__links a:hover { color: var(--c-amber); }

.site-footer__col--social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.site-footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-amber);
  letter-spacing: 0.2em;
}

.site-footer__logo {
  height: 44px;
  width: auto;
}

.site-footer__social {
  display: flex;
  gap: 1rem;
}

.site-footer__social-link {
  color: var(--c-text-faint);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
}

.site-footer__social-link:hover { color: var(--c-amber); }

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--c-border);
  text-align: center;
}

.site-footer__copy {
  font-size: 0.75rem;
  color: var(--c-text-faint);
}

.site-footer__legal {
  display: flex;
  gap: 1.25rem;
}

.site-footer__legal a {
  font-size: 0.75rem;
  color: var(--c-text-faint);
  transition: color var(--t-fast);
}

.site-footer__legal a:hover { color: var(--c-amber); }

/* 13. Modals
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-base);
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  z-index: 1;
  background-color: var(--c-bg-secondary);
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform var(--t-base);
  border-top: 1px solid var(--c-border-accent);
}

.modal.is-open .modal__panel {
  transform: translateY(0);
}

.modal__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  overflow: hidden;
  background-color: var(--c-bg-card);
}

.modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal__image .img-ph {
  height: 100%;
}

.modal__body {
  padding: 1.5rem 1.25rem;
  overflow-y: auto;
  flex: 1;
}

.modal__label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 0.375rem;
}

.modal__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text-primary);
  margin-bottom: 0.25rem;
}

.modal__price {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-bottom: 1.25rem;
}

.modal__price strong {
  color: var(--c-amber);
  font-size: 1rem;
}

.modal__detail {
  margin-bottom: 0.875rem;
}

.modal__detail-label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-faint);
  margin-bottom: 0.25rem;
}

.modal__detail-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-text-muted);
}

.modal__close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(10, 18, 10, 0.7);
  border: 1px solid var(--c-border);
  color: var(--c-text-primary);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--t-fast), border-color var(--t-fast);
  z-index: 2;
}

.modal__close:hover {
  background-color: var(--c-bg-deep);
  border-color: var(--c-amber);
}

/* Drag handle for mobile sheet */
.modal__handle {
  width: 36px;
  height: 4px;
  background-color: var(--c-border);
  border-radius: 2px;
  margin: 0.75rem auto 0;
  flex-shrink: 0;
}

/* 14. Utilities
   ========================================================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Main content offset for fixed header */
main {
  padding-top: 0;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--c-amber);
  outline-offset: 3px;
}

/* 15. Tablet Breakpoint (min-width: 640px)
   ========================================================================== */
@media (min-width: 640px) {
  .gallery-strip__item {
    width: 42vw;
  }

  .special-card {
    min-height: 320px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .modal__panel {
    border-radius: 16px;
    max-height: 80vh;
    align-self: center;
    margin-bottom: 0;
  }

  .modal {
    align-items: center;
  }
}

/* 16. Desktop Breakpoint (min-width: 1024px)
   ========================================================================== */
@media (min-width: 1024px) {

  /* Show desktop nav, hide hamburger */
  .site-nav { display: block; }
  .hamburger { display: none; }

  .special-card__media {
    min-height: 320px;
  }

  /* Gallery items wider */
  .gallery-strip__item {
    width: 320px;
  }

  /* 4-column footer */
  .site-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  /* Hours strip padding */
  .hours {
    padding: 1.5rem 2rem;
  }

  /* Bigger hero title */
  .hero__title {
    font-size: 4.5rem;
  }


}

/* ==========================================================================
   Menü-Kacheln (Mittagsmenü / Special / Essen & Getränke)
   ========================================================================== */

.pdf-karten {
  background-color: var(--c-bg-primary);
  padding: 1.25rem;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.pdf-karten__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  border: 0.5px solid rgba(200, 134, 10, 0.28);
  cursor: pointer;
}

.menu-tile__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--c-bg-secondary);
  transition: transform 0.4s ease;
}

.menu-tile:hover .menu-tile__img {
  transform: scale(1.04);
}

.menu-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 10, 5, 0.88) 0%,
    rgba(6, 10, 5, 0.65) 60%,
    rgba(6, 10, 5, 0.30) 100%
  );
}

.menu-tile__top {
  position: relative;
  z-index: 1;
  padding: 16px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-tile__badge {
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 134, 10, 0.75);
}

.menu-tile__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-text-primary);
  line-height: 1.1;
}

.menu-tile__desc {
  font-size: 0.6875rem;
  color: rgba(245, 234, 216, 0.45);
  margin-top: 2px;
}

.menu-tile__cta {
  position: relative;
  z-index: 1;
  padding: 9px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid rgba(200, 134, 10, 0.2);
  background: rgba(6, 10, 5, 0.55);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-amber);
}

.menu-tile__cta svg {
  width: 14px;
  height: 14px;
  stroke: var(--c-amber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.15s;
}

.menu-tile:hover .menu-tile__cta svg {
  transform: translateX(3px);
}


/* ==========================================================================
   sport.php – Styles leben in assets/css/sport.css (dort vollständig)
   ========================================================================== */


/* ==========================================================================
   special.php – Special-Seite
   ========================================================================== */

/* Hero -------------------------------------------------------------------- */
.special-hero {
  background-color: var(--c-bg-primary);
  border-bottom: 1px solid var(--c-border);
}

.special-hero__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 6rem 1.25rem 2.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.special-hero__icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background-color: rgba(200, 134, 10, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.special-hero__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--c-amber);
}

.special-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-amber);
  margin: 0 0 0.35rem;
}

.special-hero__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-text-primary);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.special-hero__text {
  font-size: 0.9375rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Offers Grid ------------------------------------------------------------- */
.offers {
  background-color: var(--c-bg-primary);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-top: var(--header-h);
}

.offers__label {
  font-family: var(--font-heading);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 134, 10, 0.45);
  text-align: center;
  padding: 1.25rem 0 0.5rem;
}

.offers__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.offer {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-bottom: 0.5px solid rgba(200, 134, 10, 0.15);
}

.offer:last-child {
  border-bottom: none;
}

.offer__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--c-bg-secondary);
  transition: transform 0.5s ease;
}

.offer:hover .offer__bg {
  transform: scale(1.04);
}

.offer__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 61, 28, 0.97) 0%,
    rgba(15, 61, 28, 0.65) 55%,
    rgba(15, 61, 28, 0.15) 100%
  );
}

.offer--warm .offer__overlay {
  background: linear-gradient(
    to top,
    rgba(19, 10, 0, 0.97) 0%,
    rgba(19, 10, 0, 0.65) 55%,
    rgba(19, 10, 0, 0.15) 100%
  );
}

.offer__content {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.offer__when {
  font-family: var(--font-heading);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 134, 10, 0.75);
  margin: 0;
}

.offer--warm .offer__when {
  color: rgba(220, 100, 20, 0.8);
}

.offer__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-text-primary);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin: 0.1rem 0 0.1rem;
}

.offer__desc {
  font-size: 0.75rem;
  color: rgba(245, 234, 216, 0.45);
  line-height: 1.5;
  margin: 0 0 0.4rem;
}

.offer__desc strong {
  color: rgba(245, 234, 216, 0.7);
  font-weight: 600;
}

.offer__price-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.offer__price {
  background-color: var(--c-amber);
  color: var(--c-bg-deep);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.offer--warm .offer__price {
  background-color: #dc6414;
  color: #fff;
}

.offer__price-sub {
  font-size: 0.5625rem;
  color: rgba(245, 234, 216, 0.35);
  line-height: 1.4;
}

.offer__badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(200, 134, 10, 0.18);
  border: 0.5px solid rgba(200, 134, 10, 0.5);
  border-radius: 3px;
  padding: 0.25rem 0.625rem;
  font-family: var(--font-heading);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 0.375rem;
}

.offer--warm .offer__badge {
  background: rgba(220, 100, 20, 0.15);
  border-color: rgba(220, 100, 20, 0.45);
  color: #dc6414;
}

.offer__footer {
  position: relative;
  z-index: 1;
  padding: 0.625rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.45);
  border-top: 0.5px solid rgba(200, 134, 10, 0.12);
  display: flex;
  justify-content: center;
}

.offer__footer-time {
  font-family: var(--font-heading);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200, 134, 10, 0.65);
}

.offer--warm .offer__footer-time {
  color: rgba(220, 100, 20, 0.7);
}

@media (min-width: 640px) {
  .offers__grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer {
    border-bottom: none;
    border-right: 0.5px solid rgba(200, 134, 10, 0.15);
    min-height: 320px;
  }

  .offer:last-child {
    border-right: none;
  }

  .offer__title {
    font-size: 1.75rem;
  }
}


@media (min-width: 1024px) {
  .special-hero__inner {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .special-hero__title {
    font-size: 2.75rem;
  }
}


/* ==========================================================================
   veranstaltungen.php – Event Cards
   ========================================================================== */

.event-types {
  background-color: var(--c-bg-primary);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-top: var(--header-h);
}

.event-types__header {
  padding: 1.5rem 1.25rem 0.5rem;
  text-align: center;
}

.event-types__label {
  font-family: var(--font-heading);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 134, 10, 0.45);
  margin: 0 0 0.375rem;
}

.event-types__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}

.event-types__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.event-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-bottom: 0.5px solid rgba(200, 134, 10, 0.12);
}

.event-card:last-child { border-bottom: none; }

.event-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: rgb(12, 22, 10);
  transition: transform 0.5s ease;
}

.event-card:hover .event-card__bg { transform: scale(1.04); }

.event-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,61,28,0.97) 0%, rgba(15,61,28,0.65) 50%, rgba(15,61,28,0.2) 100%);
}

.event-card--warm .event-card__overlay {
  background: linear-gradient(to top, rgba(19,10,0,0.97) 0%, rgba(19,10,0,0.65) 50%, rgba(19,10,0,0.2) 100%);
}

.event-card--purple .event-card__overlay {
  background: linear-gradient(to top, rgba(6,6,18,0.97) 0%, rgba(6,6,18,0.65) 50%, rgba(6,6,18,0.2) 100%);
}

.event-card__icon-wrap {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background-color: rgba(200, 134, 10, 0.12);
  border: 0.5px solid rgba(200, 134, 10, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-card--warm .event-card__icon-wrap {
  background-color: rgba(220, 100, 20, 0.12);
  border-color: rgba(220, 100, 20, 0.25);
}

.event-card--purple .event-card__icon-wrap {
  background-color: rgba(160, 140, 240, 0.12);
  border-color: rgba(160, 140, 240, 0.25);
}

.event-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: rgba(200, 134, 10, 0.8);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-card--warm .event-card__icon svg { stroke: rgba(220, 100, 20, 0.85); }
.event-card--purple .event-card__icon svg { stroke: rgba(180, 160, 240, 0.85); }

.event-card__content {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.event-card__type {
  font-family: var(--font-heading);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 134, 10, 0.7);
  margin: 0;
}

.event-card--warm .event-card__type  { color: rgba(220, 100, 20, 0.8); }
.event-card--purple .event-card__type { color: rgba(180, 160, 240, 0.8); }

.event-card__title {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-text-primary);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin: 0.1rem 0;
}

.event-card__desc {
  font-size: 0.8125rem;
  color: rgba(245, 234, 216, 0.5);
  line-height: 1.55;
  margin: 0 0 0.5rem;
}

.event-card__btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: rgba(200, 134, 10, 0.14);
  border: 0.5px solid rgba(200, 134, 10, 0.38);
  color: var(--c-amber);
  font-family: var(--font-heading);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s;
}

.event-card__btn:hover {
  background: rgba(200, 134, 10, 0.24);
  border-color: rgba(200, 134, 10, 0.6);
}

.event-card--warm .event-card__btn {
  background: rgba(220, 100, 20, 0.14);
  border-color: rgba(220, 100, 20, 0.38);
  color: #dc6414;
}

.event-card--warm .event-card__btn:hover { background: rgba(220, 100, 20, 0.24); }

.event-card--purple .event-card__btn {
  background: rgba(160, 140, 240, 0.1);
  border-color: rgba(160, 140, 240, 0.3);
  color: rgba(180, 160, 240, 0.9);
}

.event-card--purple .event-card__btn:hover { background: rgba(160, 140, 240, 0.18); }

@media (min-width: 640px) {
  .event-types__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .event-card {
    border-bottom: none;
    border-right: 0.5px solid rgba(200, 134, 10, 0.12);
    min-height: 380px;
  }
  .event-card:last-child { border-right: none; }
  .event-card__title { font-size: 1.875rem; }
}


/* ==========================================================================
   veranstaltungen.php – Venue Rooms Accordion
   ========================================================================== */

.venue-rooms {
  background-color: var(--c-bg-primary);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.venue-rooms__header {
  padding: 1.5rem 1.25rem 0.5rem;
  text-align: center;
}

.venue-rooms__label {
  font-family: var(--font-heading);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 134, 10, 0.45);
  margin: 0 0 0.375rem;
}

.venue-rooms__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 0.375rem;
}

.venue-rooms__sub {
  font-size: 0.8125rem;
  color: rgba(245, 234, 216, 0.45);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 44ch;
}

/* Accordion item */
.venue-room {
  border-top: 0.5px solid rgba(200, 134, 10, 0.15);
}

.venue-room:last-child {
  border-bottom: 0.5px solid rgba(200, 134, 10, 0.15);
}

.venue-room__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--c-text-primary);
  transition: background-color 0.15s;
}

.venue-room__trigger:hover {
  background-color: rgba(200, 134, 10, 0.04);
}

.venue-room__trigger-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: rgba(200, 134, 10, 0.1);
  border: 0.5px solid rgba(200, 134, 10, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.venue-room__trigger-icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(200, 134, 10, 0.75);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.venue-room__trigger-text {
  flex: 1;
}

.venue-room__name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-text-primary);
  margin: 0 0 0.125rem;
}

.venue-room__capacity {
  font-size: 0.6875rem;
  color: rgba(245, 234, 216, 0.4);
  margin: 0;
}

.venue-room__chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: rgba(200, 134, 10, 0.5);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s ease;
}

.venue-room.is-open .venue-room__chevron {
  transform: rotate(180deg);
}

/* Panel body */
.venue-room__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.venue-room.is-open .venue-room__body {
  grid-template-rows: 1fr;
}

.venue-room__body-inner {
  overflow: hidden;
}

.venue-room__panel {
  padding: 0 1.25rem 1.25rem;
}

.venue-room__desc {
  font-size: 0.8125rem;
  color: rgba(245, 234, 216, 0.55);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.venue-room__desc strong {
  color: rgba(245, 234, 216, 0.8);
  font-weight: 600;
}

/* Gallery grid */
.venue-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 1rem;
}

.venue-gallery__thumb {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 0.5px solid rgba(200, 134, 10, 0.15);
}

.venue-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.venue-gallery__thumb:hover .venue-gallery__img {
  transform: scale(1.06);
}

.venue-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 61, 28, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.venue-gallery__thumb:hover .venue-gallery__overlay {
  background: rgba(15, 61, 28, 0.45);
}

.venue-gallery__zoom {
  width: 32px;
  height: 32px;
  opacity: 0;
  transition: opacity 0.2s;
  stroke: #f0e8d0;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.venue-gallery__thumb:hover .venue-gallery__zoom {
  opacity: 1;
}

/* Placeholder für fehlende Bilder */
.venue-gallery__placeholder {
  width: 100%;
  height: 100%;
  background: rgba(200, 134, 10, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-gallery__placeholder svg {
  width: 28px;
  height: 28px;
  stroke: rgba(200, 134, 10, 0.15);
  fill: none;
  stroke-width: 1;
}

/* CTA */
.venue-room__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 134, 10, 0.12);
  border: 0.5px solid rgba(200, 134, 10, 0.35);
  color: var(--c-amber);
  font-family: var(--font-heading);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background-color 0.2s;
}

.venue-room__cta:hover {
  background: rgba(200, 134, 10, 0.22);
}

.venue-room__cta svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

@media (min-width: 640px) {
  .venue-rooms__title { font-size: 1.75rem; }
  .venue-room__name   { font-size: 1.0625rem; }
  .venue-gallery { gap: 8px; }
}


/* ==========================================================================
   gutschein.php – Geschenkgutschein
   ========================================================================== */

/* Hero -------------------------------------------------------------------- */
.gc-hero {
  background-color: var(--c-bg-primary);
  border-bottom: 1px solid var(--c-border);
}

.gc-hero__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 6rem 1.25rem 2.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.gc-hero__icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background-color: rgba(200, 134, 10, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gc-hero__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--c-amber);
}

.gc-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-amber);
  margin: 0 0 0.35rem;
}

.gc-hero__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-text-primary);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.gc-hero__text {
  font-size: 0.9375rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Schritte ---------------------------------------------------------------- */
.gc-steps {
  background-color: var(--c-bg-deep);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--c-border);
}

.gc-steps__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.gc-steps__heading {
  margin-bottom: 1.25rem;
}

.gc-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.gc-step {
  background-color: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 1.125rem 1.125rem 1.125rem 1rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.gc-step__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--c-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--c-amber);
  flex-shrink: 0;
  margin-top: 1px;
}

.gc-step__title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text-primary);
  margin: 0 0 0.25rem;
}

.gc-step__desc {
  font-size: 0.8125rem;
  color: var(--c-text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Formular-Bereich -------------------------------------------------------- */
.gc-form-section {
  background-color: var(--c-bg-primary);
  padding: 2.5rem 0;
}

.gc-form-section__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Erfolgsmeldung */
.gc-success {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background-color: rgba(46, 100, 22, 0.2);
  border: 1px solid rgba(100, 180, 60, 0.35);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.gc-success__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(100, 180, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gc-success__icon svg {
  width: 18px;
  height: 18px;
  stroke: #7fc45a;
}

.gc-success__title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #7fc45a;
  margin: 0 0 0.35rem;
}

.gc-success__text {
  font-size: 0.875rem;
  color: var(--c-text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Fehlermeldung */
.gc-alert {
  border-radius: 6px;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.gc-alert--error {
  background-color: rgba(160, 30, 30, 0.18);
  border: 1px solid rgba(200, 60, 60, 0.3);
  color: #e88080;
}

.gc-alert ul {
  list-style: disc;
  padding-left: 1.125rem;
}

.gc-alert a {
  color: var(--c-amber-light);
  text-decoration: underline;
}

/* Formular-Card */
.gc-form-card {
  background-color: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gc-form-card__head {
  background-color: var(--c-bg-deep);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-bottom: 1px solid var(--c-border);
}

.gc-form-card__head-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background-color: rgba(200, 134, 10, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gc-form-card__head-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-amber);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gc-form-card__title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text-primary);
  margin: 0 0 0.15rem;
}

.gc-form-card__sub {
  font-size: 0.6875rem;
  color: var(--c-text-secondary);
  margin: 0;
}

/* Formular-Elemente */
.gc-form {
  padding: 1.25rem;
}

.gc-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

.gc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.gc-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.gc-form__field:last-of-type {
  margin-bottom: 0;
}

.gc-form__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-text-secondary);
}

.gc-form__required {
  color: var(--c-amber);
}

.gc-form__input {
  background-color: var(--c-bg-deep);
  border: 1px solid var(--c-border);
  border-radius: 5px;
  padding: 0.625rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--c-text-primary);
  width: 100%;
  transition: border-color var(--t-fast);
  -webkit-appearance: none;
}

.gc-form__input::placeholder {
  color: var(--c-text-faint);
}

.gc-form__input:focus {
  outline: none;
  border-color: var(--c-amber);
}

/* Gutscheinwert – Kacheln */
.gc-form__fieldset {
  border: none;
  padding: 0;
  margin: 0.75rem 0;
}

.gc-form__fieldset legend {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-text-secondary);
  margin-bottom: 0.625rem;
}

.gc-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gc-amount-label {
  position: relative;
  cursor: pointer;
}

.gc-amount-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.gc-amount-label span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 38px;
  border-radius: 5px;
  border: 1px solid var(--c-border);
  background-color: var(--c-bg-deep);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--c-text-secondary);
  transition: background-color var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}

.gc-amount-label input:checked + span {
  background-color: var(--c-amber);
  border-color: var(--c-amber);
  color: #0a0400;
  font-weight: 700;
}

.gc-amount-label:hover span,
.gc-amount-label input:focus-visible + span {
  border-color: var(--c-amber);
  color: var(--c-amber-light);
}

/* Datenschutz & Submit */
.gc-form__privacy {
  font-size: 0.75rem;
  color: var(--c-text-faint);
  line-height: 1.6;
  margin: 1rem 0 1.125rem;
}

.gc-form__privacy a {
  color: var(--c-amber);
  text-decoration: underline;
}

.gc-form__submit {
  width: 100%;
  justify-content: center;
}

/* Info-Strip */
.gc-info-strip {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background-color: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 1rem 1.125rem;
}

.gc-info-strip__icon {
  width: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.gc-info-strip__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--c-amber);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gc-info-strip__text {
  font-size: 0.8125rem;
  color: var(--c-text-secondary);
  line-height: 1.65;
  margin: 0;
}

.gc-info-strip__text a {
  color: var(--c-amber-light);
  text-decoration: underline;
}

/* Desktop ------------------------------------------------------------------ */
@media (min-width: 640px) {
  .gc-steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gc-step {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .gc-hero__inner {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .gc-hero__title {
    font-size: 2.75rem;
  }
}


/* ==========================================================================
   reservieren.php – Tisch reservieren
   ========================================================================== */

/* Hero -------------------------------------------------------------------- */
.rv-hero {
  background-color: var(--c-bg-primary);
  border-bottom: 1px solid var(--c-border);
}

.rv-hero__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 6rem 1.25rem 2.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.rv-hero__icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background-color: rgba(200, 134, 10, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rv-hero__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--c-amber);
}

.rv-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-amber);
  margin: 0 0 0.35rem;
}

.rv-hero__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-text-primary);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.rv-hero__text {
  font-size: 0.9375rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Hinweis-Banner ---------------------------------------------------------- */
.rv-notice {
  background-color: rgba(200, 134, 10, 0.08);
  border-top: 1px solid rgba(200, 134, 10, 0.25);
  border-bottom: 1px solid rgba(200, 134, 10, 0.25);
}

.rv-notice__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0.875rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.rv-notice__icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.rv-notice__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-amber-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rv-notice__text {
  font-size: 0.875rem;
  color: #c8a060;
  line-height: 1.6;
  margin: 0;
}

.rv-notice__text strong {
  color: var(--c-amber-light);
}

/* Widget ------------------------------------------------------------------ */
.rv-widget-section {
  background-color: var(--c-bg-deep);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--c-border);
}

.rv-widget-section__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.rv-widget-card {
  background-color: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  overflow: hidden;
}

.rv-widget-card__head {
  background-color: var(--c-bg-deep);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-bottom: 1px solid var(--c-border);
}

.rv-widget-card__head-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background-color: rgba(200, 134, 10, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rv-widget-card__head-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-amber);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rv-widget-card__title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text-primary);
  margin: 0 0 0.15rem;
}

.rv-widget-card__sub {
  font-size: 0.6875rem;
  color: var(--c-text-secondary);
  margin: 0;
}

.rv-widget-card__body {
  padding: 1.5rem 1.25rem;
}

/* Kontakt & Anfahrt ------------------------------------------------------- */
.rv-contact {
  background-color: var(--c-bg-primary);
  padding: 2.5rem 0;
}

.rv-contact__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.rv-contact__heading {
  margin-bottom: 1.25rem;
}

.rv-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* Kontakt-Kacheln */
.rv-contact__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.rv-tile {
  background-color: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.rv-tile--link {
  text-decoration: none;
  transition: background-color var(--t-fast), border-color var(--t-fast);
}

.rv-tile--link:hover,
.rv-tile--link:focus-visible {
  background-color: #1f3a1d;
  border-color: rgba(200, 134, 10, 0.3);
}

.rv-tile__icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background-color: rgba(200, 134, 10, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rv-tile__icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--c-amber);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rv-tile__label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-secondary);
  margin: 0 0 0.2rem;
}

.rv-tile__value {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  color: var(--c-text-primary);
  margin: 0;
  line-height: 1.45;
}

/* Anfahrt */
.rv-anfahrt {
  background-color: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
}

.rv-anfahrt__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text-primary);
  margin: 0 0 1.125rem;
}

.rv-anfahrt__block {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-bottom: 1.125rem;
}

.rv-anfahrt__block:last-of-type {
  margin-bottom: 1.375rem;
}

.rv-anfahrt__block-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background-color: rgba(200, 134, 10, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.rv-anfahrt__block-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--c-amber);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rv-anfahrt__block-title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-text-primary);
  margin: 0 0 0.3rem;
}

.rv-anfahrt__block-text {
  font-size: 0.875rem;
  color: var(--c-text-secondary);
  line-height: 1.65;
  margin: 0;
}

.rv-anfahrt__block-text strong {
  color: var(--c-text-primary);
}

.rv-anfahrt__maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

/* Desktop ------------------------------------------------------------------ */
@media (min-width: 1024px) {
  .rv-hero__inner {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .rv-hero__title {
    font-size: 2.75rem;
  }

  .rv-contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}


/* ==========================================================================
   impressum.php / datenschutz.php – Rechtliche Seiten
   ========================================================================== */

.legal {
  background-color: var(--c-bg-primary);
  padding: 7rem 0 4rem;
  min-height: 60vh;
}

.legal__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.legal__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-text-primary);
  margin: 0 0 0.5rem;
}

.legal__intro {
  font-size: 0.9375rem;
  color: var(--c-text-secondary);
  margin: 0 0 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-border);
}

.legal__block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}

.legal__block:last-child {
  border-bottom: none;
}

.legal__h2 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 0 0 0.875rem;
}

.legal__block p {
  font-size: 0.9375rem;
  color: var(--c-text-secondary);
  line-height: 1.75;
  margin: 0 0 0.875rem;
}

.legal__block p:last-child {
  margin-bottom: 0;
}

.legal__block a {
  color: var(--c-amber-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal__block a:hover {
  color: var(--c-amber);
}

/* Datenschutz PDF-CTA */
.legal__block--cta {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background-color: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 1.375rem 1.25rem;
}

.legal__pdf-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: rgba(200, 134, 10, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal__pdf-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--c-amber);
}

.legal__pdf-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text-primary);
  margin: 0 0 0.3rem !important;
}

.legal__pdf-sub {
  font-size: 0.8125rem;
  color: var(--c-text-secondary);
  margin: 0 0 0.875rem !important;
}

.legal__pdf-btn {
  display: inline-flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .legal__title {
    font-size: 2.25rem;
  }
}


/* ==========================================================================
   MODAL – PUB QUIZ NIGHT (Variante A – Event Poster)
   ========================================================================== */

/* Panel override – tiefes Dunkelgrün statt Standard-bg */
.modal__panel--quiz {
  background-color: #0C1A0C;
  border-top: 2px solid var(--c-amber);
}

/* Close-Button hell damit er auf dunklem BG sichtbar bleibt */
.modal__close--quiz {
  color: rgba(245, 232, 200, 0.55);
}

.modal__close--quiz:hover {
  color: var(--c-text-primary);
  background-color: rgba(200, 134, 10, 0.12);
}

/* Header -------------------------------------------------------------------- */
.mq-header {
  padding: 1.75rem 1.25rem 1.125rem;
  position: relative;
  border-bottom: 1px solid rgba(200, 134, 10, 0.2);
}

/* Dekorative „???" im Hintergrund */
.mq-header__qqq {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(200, 134, 10, 0.12);
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
}

.mq-header__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 0 0 0.5rem;
}

.mq-header__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-text-primary);
  line-height: 1.1;
  margin: 0 0 0.3rem;
}

.mq-header__sub {
  font-size: 0.75rem;
  color: rgba(245, 232, 200, 0.45);
  letter-spacing: 0.04em;
  margin: 0;
}

/* Body ---------------------------------------------------------------------- */
.mq-body {
  padding: 1.125rem 1.25rem 1.5rem;
  overflow-y: auto;
  flex: 1;
}

/* Chips – Kurzinfos */
.mq-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.mq-chip {
  background-color: rgba(200, 134, 10, 0.12);
  border: 1px solid rgba(200, 134, 10, 0.3);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  color: var(--c-amber-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.mq-chip--clock {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.mq-chip--clock svg {
  flex-shrink: 0;
  stroke: var(--c-amber-light);
}

/* Podium */
.mq-podium {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.mq-podium__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(200, 134, 10, 0.07);
  border: 1px solid rgba(200, 134, 10, 0.2);
  border-radius: 8px;
  padding: 0.5rem 0.25rem;
  text-align: center;
  gap: 0.2rem;
}

.mq-podium__medal {
  font-size: 1.25rem;
  line-height: 1;
}

.mq-podium__rank {
  font-family: var(--font-heading);
  font-size: 0.575rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 232, 200, 0.4);
}

.mq-podium__prize {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-amber-light);
}

/* Trennlinie */
.mq-divider {
  border: none;
  border-top: 1px solid rgba(200, 134, 10, 0.15);
  margin: 0 0 0.875rem;
}

/* Detail-Blöcke */
.mq-detail {
  margin-bottom: 0.875rem;
}

.mq-detail__label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 232, 200, 0.4);
  margin: 0 0 0.2rem;
}

.mq-detail__text {
  font-size: 0.875rem;
  color: var(--c-text-primary);
  line-height: 1.55;
  margin: 0;
}

.mq-detail__text a {
  color: var(--c-amber-light);
  text-decoration: none;
}

.mq-detail__text a:hover {
  color: var(--c-amber);
  text-decoration: underline;
}

/* Special Performance Banner */
.mq-perf {
  background-color: rgba(232, 184, 75, 0.07);
  border-left: 2px solid var(--c-amber);
  border-radius: 0 6px 6px 0;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  color: rgba(245, 232, 200, 0.8);
  font-style: italic;
  margin-bottom: 0.875rem;
}

/* CTA Buttons */
.mq-cta {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.125rem;
}

.mq-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.5rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity var(--t-fast, 0.15s);
}

.mq-btn:hover {
  opacity: 0.85;
}

.mq-btn--primary {
  background-color: var(--c-amber);
  border: none;
  color: #0C1A0C;
}

.mq-btn--ghost {
  background-color: transparent;
  border: 1px solid rgba(200, 134, 10, 0.4);
  color: var(--c-amber-light);
}

/* Desktop ------------------------------------------------------------------- */
@media (min-width: 640px) {
  .mq-header__title {
    font-size: 2.5rem;
  }
}


/* ==========================================================================
   NAV – Pub Quiz Eintrag (Desktop + Mobile)
   ========================================================================== */

/* Desktop: Button sieht aus wie ein Nav-Link */
.site-nav__link--quiz {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: var(--c-amber-light);
}

.site-nav__link--quiz:hover {
  color: var(--c-amber);
}

.site-nav__quiz-qs {
  font-family: var(--font-heading);
  font-size: 0.65em;
  color: var(--c-amber);
  opacity: 0.7;
  margin-left: 0.15em;
  letter-spacing: 0;
}

/* Mobile: Button sieht aus wie die anderen Nav-Links */
.mobile-nav__link--quiz {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: var(--c-text-primary);
  border-left: 3px solid var(--c-amber);
  background-color: rgba(200, 134, 10, 0.05);
}

/* Quiz-Badge „Mo" im Mobile Menü */
.mobile-nav__badge--quiz {
  background-color: var(--c-amber);
  color: var(--c-bg-deep);
  font-weight: 700;
}

