/* ==========================================================================
   FRANKY BAR ZÜRICH - PITCH-DARK lounge STYLESHEET WITH WM STADION ZONE
   ========================================================================== */

/* 1. Imports & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* 2. Custom CSS Properties (Dark Bar Lounge & Stadium contrast) */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Pitch-Black & Charcoal Palette */
  --bg-primary: #040406;          /* Deepest obsidian black */
  --bg-secondary: #08080c;        /* Velvet night black */
  --bg-tertiary: #0e0e13;         /* Dark bar counter gray */
  --bg-card: rgba(12, 12, 17, 0.85);
  
  /* Brand Luxury Accent (Gold/Amber) */
  --gold: hsl(45, 80%, 52%);       /* #d4af37 (Luxurious Bar Gold) */
  --gold-glow: hsla(45, 80%, 52%, 0.22);
  --gold-dark: hsl(45, 75%, 35%);
  
  /* Stadium Green - Reserved strictly for the WM 2026 Zone */
  --green: hsl(145, 100%, 45%);    /* #00e676 (Live Stadium Green) */
  --green-glow: hsla(145, 100%, 45%, 0.35);
  --green-dark: #052611;           /* Grassy deep green */

  --text-main: #f5f5f7;
  --text-muted: #8e92a0;
  
  /* Glowing Outlines & Glass Borders */
  --border-glass: rgba(212, 175, 55, 0.12); /* Subtle Gold border as standard */
  --border-active: rgba(212, 175, 55, 0.45);
  --shadow-main: 0 15px 35px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 20px var(--gold-glow);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4.5rem;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* 3. Global Reset & Pitch-Dark Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Custom Dimly-lit bar backdrop */
.bg-canvas-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: #040406;
}

/* Soft gold candlelit table glow animation in background */
.bg-canvas-glow::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 70%);
  filter: blur(80px);
  animation: floatGlow 20s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3%, 5%) scale(1.05); }
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 1px solid var(--bg-primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

p {
  color: var(--text-muted);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--text-main);
}

ul {
  list-style: none;
}

/* Section base styling: Pitch dark backgrounds */
section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--bg-primary);
}

/* 4. Luxury Cozy Glass Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-main);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-glow), var(--shadow-main);
  transform: translateY(-3px);
}

/* 5. Header Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(4, 4, 6, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-main);
}

.logo-logo {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 6px var(--gold));
  transition: var(--transition-bounce);
}

.logo-wrap:hover .logo-logo {
  transform: rotate(-8deg) scale(1.08);
}

.logo-text span {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.nav-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px var(--gold);
  color: var(--bg-primary);
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text-main);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-glass);
  box-shadow: var(--shadow-main);
  z-index: 99;
  padding: 7rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  transition: var(--transition-smooth);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-drawer .nav-link {
  font-size: 1.25rem;
}

.mobile-nav-drawer .nav-cta {
  text-align: center;
  margin-top: 0.5rem;
}

.burger-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--gold);
}
.burger-btn.open span:nth-child(2) {
  opacity: 0;
}
.burger-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--gold);
}

/* 6. Hero Section */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  background: radial-gradient(circle at 50% 30%, rgba(212,175,55,0.03) 0%, var(--bg-primary) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  border: 1px solid var(--border-glass);
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-title span.glow-gold {
  color: var(--gold);
  text-shadow: 0 0 15px var(--gold-glow);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: var(--space-sm);
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  padding: 0.9rem 1.8rem;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-glow);
  transition: var(--transition-bounce);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-primary:hover {
  transform: scale(1.03) translateY(-1px);
  box-shadow: 0 0 30px var(--gold);
  color: var(--bg-primary);
}

.btn-secondary {
  border: 1px solid var(--border-glass);
  background: rgba(255,255,255,0.02);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.9rem 1.8rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold);
  color: var(--gold);
}

.hero-visual-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1.1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle-bg {
  position: absolute;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 68%);
  animation: rotateGlow 25s linear infinite;
  border: 1px dashed rgba(212, 175, 55, 0.12);
}

.hero-img-front {
  z-index: 2;
  width: 80%;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));
  animation: floatHero 5s ease-in-out infinite;
}

@keyframes floatHero {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.hero-highlight-tag {
  position: absolute;
  bottom: 12%;
  right: 8%;
  z-index: 3;
  padding: 0.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-highlight-tag span:first-child {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.hero-highlight-tag span:last-child {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  font-family: var(--font-heading);
}

/* 7. Titles */
.section-title-wrap {
  text-align: center;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.section-subtitle {
  color: var(--gold);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
}

.section-title span {
  color: var(--gold);
  text-shadow: 0 0 15px var(--gold-glow);
}

/* 8. Speisekarte (Menu) Section */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.menu-tab-btn {
  background: rgba(255,255,255,0.01);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-bounce);
}

.menu-tab-btn:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--gold);
  color: var(--text-main);
}

.menu-tab-btn.active {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--bg-primary);
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
}

.menu-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.menu-pane.active {
  display: block;
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
}

.menu-item-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--bg-card);
}

.menu-item-img-wrap {
  width: 100%;
  aspect-ratio: 1.5;
  overflow: hidden;
  position: relative;
  background: #08080d;
}

.menu-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.menu-item-card:hover .menu-item-img {
  transform: scale(1.06);
}

.menu-item-overlay-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: rgba(4, 4, 6, 0.85);
  border: 1px solid var(--border-glass);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}

.menu-item-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xs);
}

.menu-item-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.menu-item-price {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--gold);
  font-size: 1.15rem;
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.menu-item-badges {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 0.1rem;
}

.menu-item-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
}

.menu-item-badge.badge-spicy {
  background: rgba(255, 68, 68, 0.08);
  color: #ff5555;
}

.menu-item-badge.badge-national {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
}

.menu-item-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding-top: var(--space-sm);
  margin-top: auto;
}

.btn-select-item {
  width: 100%;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem;
  border-radius: var(--border-radius-sm);
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: var(--transition-bounce);
}

.btn-select-item:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.03);
}

.btn-select-item.selected {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
}

/* Floating Selected Indicator Toast */
.selection-toast {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 98;
  padding: 0.9rem 1.4rem;
  display: none;
  align-items: center;
  gap: 0.8rem;
  border-color: var(--gold);
  box-shadow: var(--shadow-main), var(--shadow-glow);
  animation: slideUpToast 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-count-badge {
  background: var(--gold);
  color: var(--bg-primary);
  font-weight: 900;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.btn-toast-checkout {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;
}

/* ==========================================================================
   ⭐ THE CONTRASTING WORLD CUP 2026 STADIUM AREA (Green Glow Zone)
   ========================================================================== */
#events {
  background: var(--bg-primary);
}

.arena-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.arena-card {
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.arena-card-icon {
  font-size: 2.2rem;
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.arena-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

/* === THE SPECIAL WM BROADCAST SCHEDULE SUB-ZONE === */
#events div[style*="border-top: 1px dashed"] {
  background: linear-gradient(135deg, var(--green-dark) 0%, #040407 100%) !important;
  border: 1px solid rgba(0, 230, 118, 0.12) !important;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg) !important;
  box-shadow: 0 15px 40px rgba(0, 230, 118, 0.05);
}

#events .section-subtitle[style*="color: var(--green)"] {
  color: var(--green) !important;
  text-shadow: 0 0 10px rgba(0, 230, 118, 0.2);
}

.schedule-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.filter-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid rgba(0, 230, 118, 0.15);
  background: rgba(0, 230, 118, 0.02);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  border-color: rgba(0, 230, 118, 0.4);
  color: var(--text-main);
  background: rgba(0, 230, 118, 0.05);
}

.filter-btn.active {
  background: var(--green);
  color: var(--bg-primary);
  border-color: var(--green);
  box-shadow: var(--shadow-glow-green);
}

/* Match Search Bar */
#matchSearch {
  background: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(0, 230, 118, 0.25) !important;
  color: #fff !important;
  transition: var(--transition-smooth);
}

#matchSearch:focus {
  border-color: var(--green) !important;
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.3) !important;
  outline: none;
}

.schedule-timezone-info {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.schedule-timezone-info span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 0.35rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  max-height: 520px;
  overflow-y: auto;
  padding-right: 5px;
}

/* Custom Scrollbar for Match Grid */
.schedule-grid::-webkit-scrollbar {
  width: 6px;
}
.schedule-grid::-webkit-scrollbar-thumb {
  background: rgba(0, 230, 118, 0.2);
  border-radius: 4px;
}
.schedule-grid::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

/* Match card glows inside WM area */
.match-card {
  padding: var(--space-md);
  display: grid;
  grid-template-columns: 0.8fr 2.5fr 1fr;
  align-items: center;
  gap: var(--space-md);
  background: rgba(8, 20, 12, 0.7);
  border: 1px solid rgba(0, 230, 118, 0.15);
}

.match-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: transparent;
  transition: var(--transition-smooth);
}

.match-card.featured::before {
  background: var(--green);
}

.match-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.15);
  transform: translateY(-2px);
}

.match-info-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.match-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  align-self: flex-start;
}

.match-badge.badge-group {
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
}

.match-badge.badge-featured {
  background: rgba(0, 230, 118, 0.12);
  color: var(--green);
  border: 1px solid rgba(0, 230, 118, 0.25);
}

.match-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.match-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.match-teams-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.match-team {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 40%;
}

.match-team.team-left {
  justify-content: flex-end;
  text-align: right;
}

.match-team.team-right {
  justify-content: flex-start;
  text-align: left;
}

.team-flag {
  font-size: 1.8rem;
  line-height: 1;
}

.team-name {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.match-vs-divider {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vs-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  color: var(--green);
  font-style: italic;
  text-shadow: 0 0 8px rgba(0,230,118,0.2);
}

.match-action {
  display: flex;
  justify-content: flex-end;
}

.btn-book-match {
  font-size: 0.8rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--border-radius-sm);
  background: transparent;
  color: var(--green);
  border: 1px solid rgba(0, 230, 118, 0.3);
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.btn-book-match:hover {
  background: var(--green);
  color: var(--bg-primary);
  border-color: var(--green);
  box-shadow: var(--green-glow);
  transform: scale(1.03);
}

/* ==========================================================================
   9. Reservations Section (Super Clean Booking Card)
   ========================================================================== */
#reservieren {
  background-color: var(--bg-primary);
}

.booking-form-wrap {
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--text-main);
}

.form-input-wrap {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-sm);
  padding: 0.7rem 1rem 0.7rem 2.3rem;
  color: var(--text-main);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.form-input-icon {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 0.95rem;
}

textarea.form-input {
  padding-left: 0.9rem;
  resize: vertical;
  min-height: 80px;
}

.form-preselected-info {
  background: rgba(212, 175, 55, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-sm);
  padding: 0.7rem 1rem;
  margin-bottom: 0.4rem;
  display: none;
  align-items: center;
  justify-content: space-between;
}

.form-preselected-info span {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

.btn-clear-preselected {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
}

.btn-clear-preselected:hover {
  color: #ff5555;
}

.btn-submit-booking {
  grid-column: span 2;
  margin-top: 0.8rem;
  width: 100%;
}

/* 10. About Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-visual {
  position: relative;
  width: 100%;
}

.about-img-frame {
  width: 100%;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-main);
  overflow: hidden;
}

.about-img {
  width: 100%;
  transition: var(--transition-smooth);
}

.about-experience-badge {
  position: absolute;
  bottom: -15px;
  right: -5px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--bg-primary);
  padding: 0.8rem 1.2rem;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-main);
  text-align: center;
  font-family: var(--font-heading);
}

.about-experience-badge span:first-child {
  font-size: 1.5rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.about-experience-badge span:last-child {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: 0.5rem;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-feat-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.about-feat-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

/* 11. Footer Section */
.main-footer {
  background: #020203;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding: var(--space-lg) var(--space-md) var(--space-sm);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col h4 {
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-about-desc {
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: var(--space-xs);
  margin-top: 0.3rem;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: var(--transition-bounce);
}

.social-icon-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--gold);
  padding-left: 2px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.contact-info-icon {
  color: var(--gold);
  font-size: 1rem;
}

.contact-text a {
  color: var(--text-main);
}
.contact-text a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.8rem;
}

/* 12. Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .hero-visual-card {
    max-width: 380px;
    margin: 0 auto;
  }
  
  .arena-highlight-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--space-lg) var(--space-md);
  }
  
  .nav-menu, .header-actions {
    display: none;
  }
  
  .burger-btn {
    display: flex;
  }
  
  .match-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-sm);
    padding: var(--space-md);
  }
  
  .match-info-meta {
    align-items: center;
  }
  
  .match-badge {
    align-self: center;
  }
  
  .match-teams-vs {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .match-team {
    width: 100%;
    justify-content: center;
  }
  
  .match-team.team-left {
    text-align: center;
    flex-direction: row-reverse;
  }
  
  .match-team.team-right {
    text-align: center;
    flex-direction: row;
  }
  
  .match-action {
    justify-content: center;
    margin-top: 0.3rem;
  }
  
  .btn-book-match {
    width: 100%;
  }
  
  #events div[style*="border-top: 1px dashed"] {
    padding: var(--space-md) !important;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.1rem;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  
  .booking-form {
    grid-template-columns: 1fr;
  }
  
  .form-group-full, .btn-submit-booking {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   LAUNCH PROMOTION ANNOUNCEMENT STYLING (GLASSMORPHIC & PULSING GOLD ACCENTS)
   ========================================================================== */
.promo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-lg);
  align-items: center;
}

.promo-badge {
  background: rgba(212, 175, 55, 0.08) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  margin-bottom: var(--space-xs);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--gold) !important;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.pulse-gold {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  animation: pulseGold 2.2s infinite;
}

@keyframes pulseGold {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.75);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.promo-highlight-box {
  background: rgba(212, 175, 55, 0.04);
  border-left: 3px solid var(--gold);
  padding: var(--space-sm);
  border-radius: var(--border-radius-sm);
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.6;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.promo-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-glass);
}

.promo-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.promo-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.promo-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slider buttons styling - premium glassmorphism */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-main);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-btn:hover {
  background: rgba(212, 175, 55, 0.85);
  border-color: var(--gold);
  color: #040406;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.slider-btn:focus {
  outline: none;
}

.prev-btn {
  left: var(--space-sm);
}

.next-btn {
  right: var(--space-sm);
}

/* Dots navigation */
.slider-dots {
  position: absolute;
  bottom: var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slider-dots .dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--gold);
}

@media (max-width: 992px) {
  .promo-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ==========================================================================
   LUCIDE SVG ICONS GENERAL & ALIGNMENT STYLES
   ========================================================================== */
.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2px;
  vertical-align: -0.125em;
  display: inline-block;
}

.form-input-icon .lucide {
  width: 1.1rem;
  height: 1.1rem;
  vertical-align: middle;
  stroke: var(--gold);
}

.arena-card-icon .lucide {
  width: 1.6rem;
  height: 1.6rem;
  stroke: var(--gold);
  stroke-width: 1.75px;
}

.about-feat-icon .lucide {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--gold);
  stroke-width: 2.2px;
  vertical-align: middle;
}

.contact-info-icon .lucide {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--gold);
  stroke-width: 2px;
  vertical-align: text-bottom;
}

.social-icon-btn .lucide {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 2px;
  vertical-align: middle;
}
