/* =========================================================
   HATTRICK WELDEN
   Main Stylesheet
   ---------------------------------------------------------
   Struktur:
   01. CSS Variablen
   02. Reset & Base
   03. Scrollbar
   04. Global Overlay / Noise
   05. Navigation
   06. Hero
   07. Live-Sport Bereich
   08. Allgemeine Sections / Utilities
   09. Speisekarte
   10. Atmosphäre / About
   11. Features
   12. Drinks
   13. Kontaktbereich
   14. Footer
   15. Mobile Navigation
   16. Scroll Animations
   17. Cookie Banner / Consent
   18. Cookie Floating Button
   19. Responsive Regeln
========================================================= */


/* =========================================================
   01. CSS VARIABLEN
   ---------------------------------------------------------
   Zentrale Farb- und Typografie-Definitionen.
   Änderungen am Corporate Design am besten nur hier vornehmen.
========================================================= */
:root {
  --black:        #080808;
  --black-soft:   #111111;
  --black-card:   #161616;

  --brown-dark:   #3d1f0d;
  --brown-mid:    #6b3a1f;
  --brown-warm:   #a0541e;

  --amber:        #c87941;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;

  --navy:         #0f1f3d;
  --navy-mid:     #1a2f5a;
  --navy-accent:  #2550a0;

  --cream:        #f5ede0;
  --cream-dim:    #c8bba8;
  --white:        #ffffff;

  --border:       rgba(201, 168, 76, 0.18);
  --border-hover: rgba(201, 168, 76, 0.5);

  --shadow:       0 8px 40px rgba(0, 0, 0, 0.7);
  --shadow-gold:  0 0 30px rgba(201, 168, 76, 0.15);

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
}


/* =========================================================
   02. RESET & BASE
   ---------------------------------------------------------
   Einheitliche Grundwerte für Layout, Schrift und Verhalten.
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 19px;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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


/* =========================================================
   03. SCROLLBAR
========================================================= */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--brown-mid);
  border-radius: 3px;
}


/* =========================================================
   04. GLOBAL OVERLAY / NOISE
   ---------------------------------------------------------
   Feine Körnung für mehr Tiefe im Design.
   pointer-events: none verhindert Interaktionsprobleme.
========================================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}


/* =========================================================
   05. NAVIGATION
========================================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  height: 70px;
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.97), rgba(8, 8, 8, 0));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);

  transition: background 0.4s, border-color 0.4s;
}

nav.scrolled {
  background: rgba(8, 8, 8, 0.97);
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--gold);

  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span {
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;

  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);

  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  right: 0;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* =========================================================
   06. HERO
========================================================= */
#hero {
  position: relative;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(61, 31, 13, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(15, 31, 61, 0.4) 0%, transparent 65%),
    radial-gradient(ellipse 90% 80% at 50% 100%, rgba(0, 0, 0, 0.9) 0%, transparent 60%),
    linear-gradient(135deg, #0d0603 0%, #1a0e06 30%, #0a0f1e 70%, #080808 100%);
}

.hero-lights {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-lights::before,
.hero-lights::after {
  content: '';
  position: absolute;
  top: -20%;
  width: 2px;
  height: 120%;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.15), transparent);
  transform-origin: top center;
  animation: lightSway 8s ease-in-out infinite alternate;
}

.hero-lights::before {
  left: 25%;
  transform: rotate(-8deg);
  animation-delay: 0s;
}

.hero-lights::after {
  right: 20%;
  transform: rotate(8deg);
  animation-delay: -4s;
}

@keyframes lightSway {
  from { opacity: 0.3; }
  to   { opacity: 0.8; }
}

.hero-pitch {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(15, 31, 61, 0.25), transparent);
  overflow: hidden;
}

.hero-pitch::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 200px;
  height: 130px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: none;
  border-radius: 50% 50% 0 0;
}

.hero-pitch::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 168, 76, 0.12) 30%,
    rgba(201, 168, 76, 0.12) 70%,
    transparent
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  margin-bottom: 18px;

  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);

  animation: fadeUp 1s ease both;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 12rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);

  animation: fadeUp 1s 0.15s ease both;
}

.hero-title .accent {
  color: var(--gold);
}

.hero-subtitle {
  margin-top: 20px;

  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-dim);

  animation: fadeUp 1s 0.3s ease both;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;

  margin-top: 48px;

  animation: fadeUp 1s 0.45s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 36px;

  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;

  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 13px 36px;

  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-hover);
  cursor: pointer;

  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;

  display: flex;
  justify-content: center;
  gap: clamp(30px, 6vw, 80px);

  animation: fadeUp 1s 0.6s ease both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  margin-top: 4px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================================
   07. LIVE-SPORT BEREICH
   ---------------------------------------------------------
   Hier wurden doppelte Definitionen zusammengeführt.
========================================================= */
#live {
  position: relative;
  overflow: hidden;

  padding: 60px 40px;

  background: linear-gradient(135deg, var(--navy) 0%, #0d1a36 50%, #0a1128 100%);
  border-top: 1px solid rgba(37, 80, 160, 0.3);
  border-bottom: 1px solid rgba(37, 80, 160, 0.3);
}

#live::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 0% 50%, rgba(37, 80, 160, 0.2), transparent);
}

.live-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 18px;
  padding: 5px 14px;

  background: rgba(200, 20, 20, 0.15);
  border: 1px solid rgba(200, 20, 20, 0.4);
  border-radius: 2px;

  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ff5555;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4444;
  animation: livePulse 1.2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.live-title {
  margin-bottom: 16px;

  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.92;
  color: var(--white);
}

.live-title .blue {
  color: #5588ff;
}

.live-desc {
  margin-bottom: 28px;

  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(200, 220, 255, 0.7);
}

.sky-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.sky-badge {
  background: linear-gradient(135deg, #0070c9, #003f7f);
  padding: 6px 16px;
  border-radius: 3px;

  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.sky-text {
  font-size: 0.75rem;
  color: rgba(200, 220, 255, 0.6);
}

/* ----- Live Sky Card Container ----- */
#live .live-sky-box {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

/* ----- Topbar mit Navigation ----- */
#live .live-sky-topbar {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

#live .live-sky-head {
  text-align: center;
}

#live .live-sky-kicker {
  margin-bottom: 6px;

  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

#live .live-sky-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.1;
}

#live .live-sky-date {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
}

#live .live-sky-page {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.74rem;
}

#live .live-sky-swipe-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  margin-bottom: 12px;
}

#live .live-sky-slider {
  overflow: hidden;
}

#live #liveSkyContent {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ----- Nav Buttons ----- */
#live .live-sky-nav {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 14px;

  background: linear-gradient(135deg, #1a2f5a, #2550a0);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: all 0.2s ease;
}

#live .live-sky-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

/* ----- Einzelnes Spiel ----- */
#live .live-sky-game {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);

  transition: all 0.2s ease;
}

#live .live-sky-game:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
}

#live .live-sky-game-main {
  flex: 1;
  min-width: 0;
}

#live .live-sky-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 7px;
}

#live .live-sky-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  line-height: 1;
}

#live .live-sky-badge-date {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

#live .live-sky-badge-competition {
  background: rgba(37, 80, 160, 0.18);
  color: #d7e5ff;
}

#live .live-sky-teams {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  color: #fff;
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 500;
}

#live .live-sky-team {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

#live .live-sky-team-name {
  word-break: break-word;
}

#live .live-sky-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

#live .live-sky-logo-fallback {
  width: 20px;
  height: 20px;
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);

  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.7);
}

#live .live-sky-vs {
  margin: 0 2px;
  color: rgba(255, 255, 255, 0.5);
}

#live .live-sky-time {
  min-width: 64px;
  text-align: right;
  color: #ffd400;
  font-size: 1.15rem;
  font-weight: 700;
}

/* ----- Hervorhebung für Bayern-Spiele ----- */
#live .live-sky-bayern {
  border: 1px solid rgba(201, 168, 76, 0.6);
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.22),
    rgba(201, 168, 76, 0.08)
  );
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.12);
}

#live .live-sky-bayern .live-sky-teams {
  color: #f3d98a;
  font-weight: 700;
}

#live .live-sky-empty {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 0.9rem;
}


/* =========================================================
   08. SECTION UTILITIES
========================================================= */
.section {
  padding: 100px 40px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 14px;

  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  margin-bottom: 16px;

  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.section-title .accent {
  color: var(--gold);
}

.section-intro {
  max-width: 540px;

  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--cream-dim);
}

.gold-divider {
  width: 60px;
  height: 2px;
  margin: 32px 0;
  background: linear-gradient(to right, var(--gold), transparent);
}


/* =========================================================
   09. SPEISEKARTE
========================================================= */
#speisekarte {
  background: var(--black-soft);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;

  margin-bottom: 50px;
}

/* ----- Day Tabs ----- */
.day-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.day-tab {
  position: relative;
  overflow: hidden;

  padding: 10px 20px;

  font-size: 0.7rem;
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);

  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;

  transition: all 0.3s ease;
}

.day-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;

  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.day-tab.active,
.day-tab:hover {
  border-color: var(--gold);
  color: var(--black);
  background: var(--gold);
}

.day-tab.active::before,
.day-tab:hover::before {
  transform: scaleX(1);
}

/* ----- Panels ----- */
.menu-panel {
  display: none;
}

.menu-panel.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  animation: panelFade 0.4s ease;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- Kategorie ----- */
.menu-category {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  padding: 28px 0 12px;
  border-bottom: 1px solid var(--border);
}

.menu-category-name {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ----- Gerichtskarten ----- */
.dish-card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  gap: 10px;

  padding: 28px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.04);

  transition: all 0.3s ease;
}

.dish-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;

  width: 2px;
  height: 0;
  background: var(--gold);

  transition: height 0.4s ease;
}

.dish-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
}

.dish-card:hover::before {
  height: 100%;
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.dish-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--cream);
}

.dish-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  white-space: nowrap;
  color: var(--gold);
}

.dish-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--cream-dim);
}

.dish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.dish-tag {
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1px;

  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.dish-tag.classic {
  border-color: rgba(160, 180, 200, 0.3);
  color: #a9c3dd;
}

.dish-tag.veg {
  border-color: rgba(80, 180, 80, 0.4);
  color: #88cc88;
}

.dish-tag.hot {
  border-color: rgba(200, 80, 40, 0.4);
  color: #ff7755;
}

.dish-tag.popular {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold);
}

.dish-tag.signature {
  border-color: rgba(180, 120, 200, 0.35);
  color: #d0a8ff;
}

/* ----- Tagesgericht Highlight ----- */
.tagesgericht {
  grid-column: 1 / -1;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;

  padding: 32px;

  background: linear-gradient(135deg, rgba(61, 31, 13, 0.6) 0%, rgba(22, 22, 22, 0.9) 60%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
}

.tages-label {
  margin-bottom: 8px;

  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.tages-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
}

.tages-desc {
  max-width: 500px;
  margin-top: 6px;

  font-size: 0.85rem;
  color: var(--cream-dim);
}

.tages-price-wrap {
  text-align: center;
}

.tages-price {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}

.tages-price-note {
  margin-top: 4px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
}


/* =========================================================
   10. ATMOSPHÄRE / ABOUT
========================================================= */
#atmosphere {
  background: var(--black);
}

.atmo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 60px;
}

.atmo-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.atmo-card:first-child {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.atmo-card-inner {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 30px;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
  transition: background 0.4s ease;
}

.atmo-card:hover .atmo-card-inner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.atmo-img-placeholder {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 4rem;
}

.atmo-card:nth-child(1) .atmo-img-placeholder {
  background: linear-gradient(135deg, #1a0e06 0%, #3d1f0d 50%, #1a2744 100%);
}

.atmo-card:nth-child(2) .atmo-img-placeholder {
  background: linear-gradient(135deg, #0a1128 0%, #1a2f5a 100%);
}

.atmo-card:nth-child(3) .atmo-img-placeholder {
  background: linear-gradient(135deg, #1a0e06 0%, #2a1205 100%);
}

.atmo-card-title {
  position: relative;
  margin-bottom: 6px;

  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
}

.atmo-card-desc {
  position: relative;
  font-size: 0.8rem;
  color: var(--cream-dim);
}


/* =========================================================
   11. FEATURES
========================================================= */
#features {
  background: var(--black-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.feature-card {
  position: relative;
  overflow: hidden;

  padding: 44px 36px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.04);

  transition: all 0.3s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  border-color: var(--border);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  display: block;
  margin-bottom: 22px;
  font-size: 2.4rem;
}

.feature-title {
  margin-bottom: 12px;

  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
}

.feature-desc {
  font-size: 0.83rem;
  line-height: 1.8;
  color: var(--cream-dim);
}


/* =========================================================
   12. DRINKS
========================================================= */
#drinks {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

#drinks::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;

  width: 500px;
  height: 500px;
  border-radius: 50%;

  background: radial-gradient(circle, rgba(107, 58, 31, 0.12), transparent 70%);
  pointer-events: none;
}

.drinks-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.drinks-list {
  display: flex;
  flex-direction: column;
}

.drink-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  transition: all 0.3s ease;
}

.drink-item:hover {
  padding-left: 12px;
  border-bottom-color: var(--border);
}

.drink-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream);
}

.drink-sub {
  margin-top: 2px;
  font-size: 0.75rem;
  color: var(--cream-dim);
}

.drink-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--amber);
}

.drinks-visual {
  position: relative;
  overflow: hidden;

  padding: 50px 40px;

  background: linear-gradient(135deg, #1a0e06, #0d0603);
  border: 1px solid var(--border);
}

.drinks-visual::before {
  content: '🍺';
  position: absolute;
  top: -20px;
  right: -20px;

  font-size: 10rem;
  opacity: 0.04;
  transform: rotate(-15deg);
}

.drinks-visual-title {
  margin-bottom: 20px;

  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.9;
  color: var(--amber);
}

.drinks-visual-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--cream-dim);
}

.happy-hour {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-top: 28px;
  padding: 20px;

  background: rgba(201, 168, 76, 0.06);
  border: 1px solid var(--border);
}

.happy-hour-icon {
  font-size: 2rem;
}

.happy-hour-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.happy-hour-time {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
}


/* =========================================================
   13. KONTAKTBEREICH
   ---------------------------------------------------------
   Alte doppelte Contact-Container-Regeln entfernt.
   Es wird nur noch mit .kontakt-grid / .contact-map gearbeitet.
========================================================= */
#kontakt {
  position: relative;
  overflow: hidden;
  background: var(--black-soft);
}

#kontakt::before {
  content: 'HATTRICK';
  position: absolute;
  right: -40px;
  bottom: -60px;

  font-family: var(--font-display);
  font-size: 18rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.015);

  pointer-events: none;
  user-select: none;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.info-label {
  margin-bottom: 10px;

  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.info-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--cream);
}

.info-value a:hover {
  color: var(--gold);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table td {
  padding: 10px 0;
  font-size: 0.88rem;
}

.hours-table td:first-child {
  color: var(--cream-dim);
}

.hours-table td:last-child {
  text-align: right;
  font-family: var(--font-serif);
  color: var(--cream);
}

.hours-table tr.today td {
  color: var(--gold);
}

.hours-table tr.today td:first-child::after {
  content: ' ✦';
  font-size: 0.6rem;
  vertical-align: middle;
}

/* ----- Google Maps / Consent Card ----- */
.contact-map {
  width: 100%;
  height: 660px;
  min-height: 460px;

  position: relative;
  overflow: hidden;

  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(15, 15, 15, 0.55);
  box-shadow: var(--shadow), var(--shadow-gold);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.map-consent-card {
  width: 100%;
  height: 100%;
  min-height: 460px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background:
    radial-gradient(circle at top left, rgba(201, 168, 76, 0.10), transparent 32%),
    radial-gradient(circle at bottom right, rgba(37, 80, 160, 0.10), transparent 32%),
    linear-gradient(135deg, rgba(16, 16, 16, 0.96), rgba(24, 24, 24, 0.94));
}

.map-consent-inner {
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.map-consent-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;

  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.06);

  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.map-consent-inner h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
}

.map-consent-inner p {
  max-width: 470px;
  margin: 0 auto 22px;

  color: #d3c7b7;
  font-size: 0.98rem;
  line-height: 1.75;
}

.map-consent-btn {
  appearance: none;
  border: none;
  cursor: pointer;

  padding: 13px 24px;
  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 600;
  background: var(--gold);
  color: #111;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-consent-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}


/* =========================================================
   14. FOOTER
========================================================= */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;

  padding: 40px;

  background: var(--black);
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.footer-logo span {
  font-size: 0.8em;
  color: var(--cream-dim);
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--cream-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ----- Footer Cookie Link ----- */
.cookie-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-link:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

.cookie-icon-svg {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}


/* =========================================================
   15. MOBILE NAVIGATION
========================================================= */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 20px;

  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 999;

  padding: 30px 40px;

  background: rgba(8, 8, 8, 0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);

  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--gold);
}


/* =========================================================
   16. SCROLL ANIMATIONS
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* =========================================================
   17. COOKIE BANNER / CONSENT PANEL
   ---------------------------------------------------------
   Banner wird per JS über die Klasse .show geöffnet/geschlossen.
========================================================= */
.cookie-icon {
  font-size: 1.5rem;
  transform: translateY(-11px);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;

  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 18px 16px;

  background: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.cookie-text {
  margin-bottom: 14px;

  color: #f2eee7;
  font-size: 0.95rem;
  line-height: 1.65;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  appearance: none;
  border: none;
  cursor: pointer;

  padding: 12px 18px;
  border-radius: 999px;

  font-size: 0.92rem;
  font-weight: 600;

  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-accept {
  flex: 1;
  background: var(--gold);
  color: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.cookie-btn-decline {
  flex: 1;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}


/* =========================================================
   18. COOKIE FLOATING BUTTON
   ---------------------------------------------------------
   Immer erreichbar, verschwindet per JS im Footer-Bereich.
========================================================= */
.cookie-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99998;

  width: 52px;
  height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;
  cursor: pointer;

  font-size: 22px;
  background: var(--gold);
  color: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  transition: all 0.25s ease;
}

.cookie-fab:hover {
  transform: translateY(-2px) scale(1.05);
}

.cookie-fab.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}


/* =========================================================
   19. RESPONSIVE REGELN
========================================================= */

/* ----- Große Screens ----- */
@media (min-width: 1600px) {
  .contact-map {
    height: 720px;
  }
}

/* ----- Laptop / kleiner Desktop ----- */
@media (max-width: 1200px) {
  .contact-map {
    height: 560px;
  }
}

/* ----- Tablet / allgemeine Layout-Anpassungen ----- */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .section {
    padding: 70px 24px;
  }

  .live-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .atmo-grid {
    grid-template-columns: 1fr;
  }

  .atmo-card:first-child {
    grid-row: auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .drinks-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  #kontakt::before {
    display: none;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  #live {
    padding: 50px 24px;
  }

  #live .live-sky-box {
    padding: 14px;
  }

  #live .live-sky-topbar {
    grid-template-columns: 44px 1fr 44px;
  }

  #live .live-sky-nav {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  #live .live-sky-title {
    font-size: 1.08rem;
  }

  #live .live-sky-date {
    font-size: 0.78rem;
  }

  #live .live-sky-game {
    align-items: flex-start;
    padding: 12px;
  }

  #live .live-sky-teams {
    font-size: 0.86rem;
  }

  #live .live-sky-time {
    min-width: 56px;
    font-size: 1rem;
  }

  #live .live-sky-logo,
  #live .live-sky-logo-fallback {
    width: 18px;
    height: 18px;
  }

  .contact-map {
    height: 380px;
    min-height: 380px;
    border-radius: 18px;
  }

  .map-consent-card {
    min-height: 380px;
    padding: 24px;
  }

  .map-consent-inner h3 {
    font-size: 1.45rem;
  }
}

/* ----- Kleine Mobile Screens ----- */
@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-box {
    border-radius: 16px;
    padding: 16px 14px 14px;
  }

  .cookie-text {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    padding: 12px 16px;
  }

  .contact-map {
    height: 320px;
    min-height: 320px;
    border-radius: 16px;
  }

  .map-consent-card {
    min-height: 320px;
    padding: 20px 16px;
  }

  .map-consent-inner h3 {
    font-size: 1.24rem;
  }

  .map-consent-inner p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .map-consent-btn {
    width: 100%;
    max-width: 260px;
  }

  .cookie-fab {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

/* ----- Sehr kleine Mobile Screens ----- */
@media (max-width: 600px) {
  .hero-stats {
    gap: 24px;
    flex-wrap: nowrap;
  }

  .hero-stat-num {
    font-size: 1.6rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .menu-panel.active {
    grid-template-columns: 1fr;
  }

  .day-tabs {
    justify-content: center;
  }

  .tagesgericht {
    flex-direction: column;
  }

  .legal-page {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .legal-card {
    padding: 26px 20px;
  }

  .legal-block h2 {
    font-size: 1.2rem;
  }
}

/* =========================================
   GLOBAL MOBILE OVERFLOW FIX (FINAL)
========================================= */

/* Grundsätzliches Verhalten */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Sauberes Box-Model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Medien niemals breiter als Bildschirm */
img,
iframe,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Standard-Container absichern */
section,
main,
div,
nav,
footer {
  min-width: 0;
}

/* Spezifisch für deine Seiten (wichtig) */
.legal-page,
.legal-wrap,
.legal-card,
.legal-hero,
.legal-block {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Typische Problem-Elemente bei deinem Setup */
.live-inner,
.kontakt-grid,
.hero-stats,
.footer-links,
.day-tabs {
  max-width: 100%;
  overflow-x: hidden;
}

/* Pseudo-Elemente / Effekte absichern */
body::before,
#kontakt::before,
.hero-bg,
.hero-lights,
.hero-pitch {
  max-width: 100%;
  overflow: hidden;
}

/* Extra Schutz gegen minimale Verschiebungen */
body {
  position: relative;
  overscroll-behavior-x: none;
}