/* ============================================================
   GUNNERS PUB — style.css
   Arsenal dark theme · Mobile-first · Barlow Condensed
   ============================================================ */

/* Google Fonts: loaded via <link rel="stylesheet"> in index.html <head> — keeps the
   preconnect hints above useful and avoids the extra serial round-trip an
   @import here would add before the fonts even start downloading. */

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  overflow-x: hidden;
  padding-top: 57px;
}
@media (min-width: 860px) {
  body { padding-top: 71px; }
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Design tokens ── */
:root {
  --red:        #EF0107;
  --red-dark:   #b5000a;
  --red-dim:    rgba(239,1,7,0.12);
  --gold:       #C89B3C;
  --black:      #0a0a0a;
  --black-2:    #111111;
  --black-3:    #181818;
  --black-4:    #222222;
  --border:     rgba(255,255,255,0.07);
  --border-red: rgba(239,1,7,0.3);
  --text:       #e0e0e0;
  --muted:      #888888;
  --muted-2:    #555555;
  --white:      #ffffff;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --shadow-red: 0 0 40px rgba(239,1,7,0.08);
  --transition: 0.2s ease;
}

/* ── Typography scale ── */
.font-display { font-family: 'Barlow Condensed', Arial, sans-serif; }

h1, h2, h3, .display {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
}

/* ── Utility ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 18px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.accent { color: var(--red); }
.muted { color: var(--muted); }
.text-center { text-align: center; }


/* ╔══════════════════════════════════════════════╗
   ║  ANNOUNCEMENT BANNER (top of page)          ║
   ╚══════════════════════════════════════════════╝ */
#announceBanner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  display: none;
}
#announceBanner.visible { display: block; }

.announce-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.announce-bar.type-info    { background: #0d1f3c; color: #93c5fd; border-bottom-color: #1d4ed8; }
.announce-bar.type-warning { background: #1c1400; color: #fcd34d; border-bottom-color: #d97706; }
.announce-bar.type-danger  { background: #1a0000; color: #fca5a5; border-bottom-color: var(--red); }
.announce-bar.type-info    .ann-type-badge { background: #1d4ed8; color: #fff; }
.announce-bar.type-warning .ann-type-badge { background: #d97706; color: #fff; }
.announce-bar.type-danger  .ann-type-badge { background: var(--red); color: #fff; }

.ann-type-badge {
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: 0.06em;
  flex-shrink: 0; white-space: nowrap;
}
.ann-text { flex: 1; line-height: 1.4; }
.ann-close {
  background: rgba(255,255,255,0.1); border: none;
  color: inherit; border-radius: 4px;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; line-height: 1;
}
.ann-close:hover { background: rgba(255,255,255,0.2); }

/* When banner visible, offset body and nav */
body.has-banner { padding-top: 98px; }
body.has-banner #mainNav { top: 42px; }
@media (min-width: 860px) {
  body.has-banner { padding-top: 110px; }
}


/* ╔══════════════════════════════════════════════╗
   ║  NAVIGATION — mobile-first, single row       ║
   ╚══════════════════════════════════════════════╝ */

#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #0a0a0a;
  border-bottom: 3px solid #EF0107;  /* ONE red line, always */
  box-shadow: 0 4px 24px rgba(239,1,7,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 14px;
  gap: 0;
}

/* Brand — left side, takes available space */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff;          /* break any link color inheritance */
  flex: 1;
  min-width: 0;
}
.nav-cannon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(239,1,7,0.7));
  transition: filter 0.2s ease, transform 0.2s ease;
}
.nav-cannon:hover { filter: drop-shadow(0 0 10px rgba(239,1,7,1)); transform: scale(1.1); }
.nav-cannon img {
  width: 32px; height: 32px;
  object-fit: contain; display: block;
}
.nav-brand-name {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap; line-height: 1;
}
.nav-brand .nav-red {
  text-shadow: 0 0 8px rgba(239,1,7,0.6);
  transition: text-shadow 0.2s ease;
}
.nav-brand:hover .nav-red {
  text-shadow: 0 0 14px rgba(239,1,7,1), 0 0 28px rgba(239,1,7,0.4);
}
/* Explicit span colors — inline style in HTML also sets these as backup */
.nav-brand .nav-red   { color: #EF0107; }
.nav-brand .nav-white { color: #ffffff; }

/* Right controls — lang + hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  overflow: hidden;
}
.lang-toggle button {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 12px; font-weight: 700;
  padding: 5px 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  transition: color 0.15s, background 0.15s;
}
.lang-toggle button.active {
  background: #EF0107;
  color: #ffffff;
}

.nav-hamburger {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 16px; height: 2px;
  background: #ffffff; border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Desktop links — hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px; font-weight: 700;
  color: rgba(255,255,255,0.6);
  padding: 6px 10px;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: color 0.15s;
  position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 10px; right: 10px;
  height: 2px; background: #EF0107;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #ffffff; }

/* Mobile dropdown — positioned outside nav stacking context */
.mobile-menu {
  position: fixed;
  top: 57px; left: 0; right: 0;   /* 54px nav + 3px border */
  background: #0f0f0f;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  display: block;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 24px; font-weight: 800;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 12px 20px;
  border-left: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.mobile-menu a:hover {
  color: #ffffff;
  border-left-color: #EF0107;
  background: rgba(239,1,7,0.08);
}

/* ── Desktop 860px+ ── */
@media (min-width: 860px) {
  .nav-inner { height: 68px; padding: 0 28px; }
  .nav-cannon { width: 38px; height: 38px; }
  .nav-cannon img { width: 38px; height: 38px; }
  .nav-brand-name { font-size: 27px; }
  .nav-brand { flex: none; gap: 10px; }
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .mobile-menu { display: none !important; }
  /* Centre links between brand and right controls */
  .nav-inner { justify-content: space-between; }
}


/* ╔══════════════════════════════════════════════╗
   ║  MATCH DAY BANNER                            ║
   ╚══════════════════════════════════════════════╝ */
#matchdayBanner {
  background: var(--red);
  padding: 10px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
#matchdayBanner.visible { display: flex; }

.matchday-left {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.matchday-live-dot {
  width: 8px; height: 8px;
  background: #fff; border-radius: 50%;
  animation: pulseDot 1.2s infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
.matchday-label {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 11px; font-weight: 800;
  background: rgba(0,0,0,0.3); color: #fff;
  padding: 2px 8px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.matchday-text {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px; font-weight: 700;
  color: #fff; letter-spacing: 0.02em;
}
.matchday-reserve {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px; font-weight: 800;
  color: #fff; text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 5px 14px; border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.matchday-reserve:hover { background: rgba(255,255,255,0.15); border-color: #fff; }


/* ╔══════════════════════════════════════════════╗
   ║  HERO                                        ║
   ╚══════════════════════════════════════════════╝ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
  background: #0a0a0a;
}

/* Slider */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  will-change: transform;
}
/* Portrait photos — focus on upper-center (bar content, not ceiling/floor) */
.hero-slide.portrait img {
  object-position: center 30%;
}

/* Parallax JS sets transform on .hero-slide img */

/* Dark overlays */
.hero-overlay-left {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}
.hero-overlay-bottom {
  position: absolute; left: 0; right: 0; bottom: 0; height: 220px;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0) 100%);
  pointer-events: none;
}
.hero-overlay-top {
  position: absolute; left: 0; right: 0; top: 0; height: 100px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

/* Arsenal watermark */
.hero-watermark { display: none; }

/* Red accent line top */
.hero-red-line { display: none; }

/* Content */
.hero-content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  z-index: 3;
}
.hero-text { max-width: 640px; padding-bottom: 40px; }

.hero-eyebrow {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 700; color: var(--red);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
  text-shadow: 0 0 12px rgba(239,1,7,0.6), 0 2px 8px rgba(0,0,0,0.9);
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 2px; background: var(--red);
  flex-shrink: 0;
}

.hero-h1 {
  font-size: clamp(42px, 9vw, 88px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.hero-h1 .line-red { color: var(--red); display: block; }

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 2.5vw, 16px);
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 440px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.hero-ctas {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.btn-primary {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--red); color: #fff;
  padding: 12px 28px; border-radius: var(--radius-sm);
  border: 2px solid var(--red);
  transition: background var(--transition), transform var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #fff; color: var(--red); border-color: #fff; transform: scale(1.05); box-shadow: 0 6px 20px rgba(239,1,7,0.35); }
.btn-outline {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: transparent; color: var(--white);
  padding: 12px 28px; border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.25);
  transition: border-color var(--transition), background var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: #fff; color: #0a0a0a; border-color: #fff; transform: scale(1.05); box-shadow: 0 6px 20px rgba(255,255,255,0.15); }

/* Slider dots */
.hero-dots {
  position: absolute; bottom: 28px; right: 20px;
  display: flex; gap: 8px; z-index: 4;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background var(--transition), transform var(--transition);
}
.hero-dot.active { background: var(--red); transform: scale(1.3); }

/* Slider arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background var(--transition);
  display: none;
}
.hero-arrow:hover { background: rgba(239,1,7,0.4); border-color: var(--red); }
.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }
@media (min-width: 600px) { .hero-arrow { display: flex; } }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.35);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(239,1,7,0.8), rgba(239,1,7,0));
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}


/* ╔══════════════════════════════════════════════╗
   ║  SECTION COMMONS                             ║
   ╚══════════════════════════════════════════════╝ */
.section { padding: clamp(48px,8vw,96px) 0; }
.section-dark { background: var(--black-2); }
.section-darker { background: var(--black-3); }

/* Section divider with cannon */
.divider-cannon {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 64px;
}
.divider-cannon::before,
.divider-cannon::after {
  content: ''; flex: 1; height: 1px; background: var(--border-red);
}
.divider-cannon-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.divider-cannon-icon img { width: 22px; height: auto; filter: brightness(0) invert(1); }

.section-heading {
  font-size: clamp(28px, 5vw, 44px);
  text-align: center;
}
.section-eyebrow {
  display: block;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--red); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 8px;
  text-align: center;
}


/* ╔══════════════════════════════════════════════╗
   ║  INFO STRIP (under hero)                     ║
   ╚══════════════════════════════════════════════╝ */
.info-strip {
  background: var(--black-3);
  border-top: 1px solid var(--border-red);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.info-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  divide-x: 1px solid var(--border);
}
.info-strip-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  border-right: 1px solid var(--border);
}
.info-strip-item:last-child { border-right: none; }
.info-strip-item:nth-child(3) { border-top: 1px solid var(--border); }
.info-strip-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
.info-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--red-dim);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.info-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.info-value {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--white);
}
@media (min-width: 600px) {
  .info-strip-inner { grid-template-columns: repeat(4, 1fr); }
  .info-strip-item:nth-child(3),
  .info-strip-item:nth-child(4) { border-top: none; }
  .info-strip-item:nth-child(4) { border-right: 0; }
}


/* ╔══════════════════════════════════════════════╗
   ║  ABOUT SECTION                               ║
   ╚══════════════════════════════════════════════╝ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.about-text p {
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--white); }

.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-dim); border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  padding: 8px 14px; margin-bottom: 20px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--red); text-transform: uppercase; letter-spacing: 0.06em;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 140px;
  gap: 6px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.about-photo-main {
  grid-column: 1 / 3; grid-row: 1;
}
.about-photo {
  overflow: hidden; background: var(--black-4);
  position: relative;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-photo {
  cursor: pointer;
}
.about-photo:hover img { transform: scale(1.07); }
.about-photo-overlay { display: none; }
.about-photo-overlay-icon { display: none; }

@media (min-width: 860px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .about-photos { grid-template-rows: 240px 180px; }
}


/* ╔══════════════════════════════════════════════╗
   ║  MENU SECTION                                ║
   ╚══════════════════════════════════════════════╝ */
.menu-loading {
  text-align: center; padding: 40px;
  color: var(--muted); font-size: 14px;
}
.menu-error {
  background: #1a0000; border: 1px solid var(--border-red);
  border-radius: var(--radius-md); padding: 16px;
  color: #fca5a5; font-size: 14px; text-align: center;
}

.menu-tabs {
  display: flex; gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}
.menu-tab {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.menu-tab:hover { color: var(--white); border-color: var(--border); }
.menu-tab.active {
  color: var(--white); background: var(--red);
  border-color: var(--red);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-table {
  width: 100%; border-collapse: collapse;
}
.menu-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.menu-row:last-child { border-bottom: none; }
.menu-item-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--text);
  flex: 1;
}
.menu-item-note {
  font-size: 11px; color: var(--muted); margin-top: 2px;
}
.menu-item-price {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px; font-weight: 800;
  color: var(--red); white-space: nowrap;
  flex-shrink: 0;
}

.sheets-indicator {
  display: none;
  font-size: 11px; color: var(--muted);
  font-family: 'Inter', sans-serif;
  margin-top: 12px;
}
.sheets-dot { width: 6px; height: 6px; background: #4caf50; border-radius: 50%; flex-shrink: 0; }


/* ╔══════════════════════════════════════════════╗
   ║  HOURS SECTION                               ║
   ╚══════════════════════════════════════════════╝ */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .hours-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.hours-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(239,1,7,0.18), 0 24px 60px rgba(239,1,7,0.08);
}
.hours-card::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 10%; right: 10%;
  height: 36px;
  background: radial-gradient(ellipse at center, rgba(239,1,7,0.45) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}
.hours-card-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--black-4);
  display: flex; align-items: center; gap: 10px;
}
.hours-card-title {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px; font-weight: 800;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.04em;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  font-family: 'Inter', sans-serif; font-size: 15px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.today {
  background: var(--red-dim);
  border-left: 3px solid var(--red);
}
.hours-day { color: var(--text); }
.hours-row.today .hours-day { color: var(--white); font-weight: 600; }
.hours-time { color: var(--muted); }
.hours-row.today .hours-time { color: var(--red); font-weight: 600; }
.hours-note { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* Contact card */
.contact-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(239,1,7,0.18), 0 24px 60px rgba(239,1,7,0.08);
}
.contact-card::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 10%; right: 10%;
  height: 36px;
  background: radial-gradient(ellipse at center, rgba(239,1,7,0.45) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}
.contact-card-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--black-4);
}
.contact-card-title {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 16px; font-weight: 800;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.04em;
}
.contact-body { padding: 18px; }
.contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--red-dim); border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.contact-label { font-size: 11px; color: var(--muted); margin-bottom: 2px; font-family: 'Inter', sans-serif; }
.contact-value { font-size: 14px; color: var(--white); font-family: 'Inter', sans-serif; }
.contact-value a { color: var(--red); transition: color var(--transition); }
.contact-value a:hover { color: #ff4d4d; }

.map-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--red); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-sm);
  margin-top: 14px; width: 100%; justify-content: center;
  transition: background var(--transition);
}
.map-btn:hover { background: var(--red-dark); }

.map-embed {
  width: 100%; height: 200px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-top: 14px;
  filter: grayscale(0.8) invert(0.9) hue-rotate(180deg);
}

.hours-note-text {
  font-size: 12px; color: var(--muted);
  font-family: 'Inter', sans-serif; font-style: italic;
  margin-top: 10px; text-align: center;
}


/* ╔══════════════════════════════════════════════╗
   ║  PROGRAM SECTION                             ║
   ╚══════════════════════════════════════════════╝ */
.program-list { list-style: none; }
.program-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.program-item:last-child { border-bottom: none; }
.program-item.today { background: var(--red-dim); border-radius: var(--radius-sm); padding: 14px 12px; border-color: var(--border-red); border-bottom: 1px solid var(--border-red); }

.prog-date-box {
  background: var(--black-4); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 52px; height: 52px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.prog-date-day {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 22px; font-weight: 900;
  color: var(--white); line-height: 1;
}
.prog-date-month {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 10px; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em;
}
.program-item.today .prog-date-box {
  background: var(--red); border-color: var(--red);
}
.program-item.today .prog-date-day { color: #fff; }
.program-item.today .prog-date-month { color: rgba(255,255,255,0.7); }

.prog-info {}
.prog-match {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 19px; font-weight: 700; color: var(--white);
  letter-spacing: 0.01em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  max-width: 100%;
}
.prog-vs {
  color: var(--red); margin: 0 5px; font-weight: 800;
}
.prog-league {
  font-size: 12px; color: var(--muted);
  font-family: 'Inter', sans-serif;
  margin-top: 2px;
}
.prog-badge {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 10px; font-weight: 800;
  color: var(--red); border: 1px solid var(--border-red);
  padding: 3px 8px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: 0.06em;
  white-space: nowrap; flex-shrink: 0;
}
.program-item.today .prog-badge {
  background: var(--red); color: #fff; border-color: var(--red);
  animation: pulseBadge 1.5s infinite;
}
@keyframes pulseBadge {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,1,7,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(239,1,7,0); }
}

.prog-empty {
  text-align: center; padding: 40px 0;
  color: var(--muted); font-size: 14px;
  font-family: 'Inter', sans-serif;
}


/* ╔══════════════════════════════════════════════╗
   ║  GALLERY                                     ║
   ╚══════════════════════════════════════════════╝ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 32px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--black-4);
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: 1 / 3;
  aspect-ratio: 16/8;
}
.gallery-item:not(:first-child) {
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.15);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { display: none; }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
  z-index: 9000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
#lightbox.open { display: flex; }
.lightbox-img {
  max-width: 100%; max-height: 90vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--red); }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; color: #fff; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-arrow:hover { background: var(--red); }
.lightbox-arrow.prev { left: 12px; }
.lightbox-arrow.next { right: 12px; }
@media (max-width: 480px) {
  .lightbox-arrow { display: none; }
}


/* ╔══════════════════════════════════════════════╗
   ║  FOOTER                                      ║
   ╚══════════════════════════════════════════════╝ */
footer {
  background: var(--black-3);
  border-top: 3px solid var(--red);
  padding: 32px 0 24px;
  position: relative;
  overflow: hidden;
}
footer::after {
  content: '';
  position: absolute;
  bottom: 0; left: 15%; right: 15%;
  height: 140px;
  background: radial-gradient(ellipse at center bottom, rgba(239,1,7,0.28) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; text-align: center;
}
.footer-brand {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-brand span { color: var(--red); }
.footer-tagline {
  font-size: 12px; color: var(--muted);
  font-family: 'Inter', sans-serif; font-style: italic;
}
.footer-copy {
  font-size: 11px; color: var(--muted-2);
  font-family: 'Inter', sans-serif;
  border-top: 1px solid var(--border);
  padding-top: 14px; width: 100%;
}

@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-copy { border-top: none; padding-top: 0; width: auto; }
}


/* ╔══════════════════════════════════════════════╗
   ║  SCROLL ANIMATIONS                           ║
   ╚══════════════════════════════════════════════╝ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide { transition: none; }
  .hero-scroll-line { animation: none; }
  .matchday-live-dot { animation: none; }
  .prog-badge { animation: none; }
}


/* ╔══════════════════════════════════════════════╗
   ║  POPUP MODAL (Speciální zpráva)              ║
   ╚══════════════════════════════════════════════╝ */
#popupOverlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(4px);
  z-index: 8000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
#popupOverlay.open { display: flex; }

.popup-box {
  background: var(--black-2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 420px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(239,1,7,0.15);
  animation: popupIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.popup-header {
  background: var(--red);
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.popup-title {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 16px; font-weight: 800;
  color: #fff; text-transform: uppercase; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
}
.popup-close {
  width: 26px; height: 26px;
  background: rgba(0,0,0,0.25); border-radius: 4px;
  color: #fff; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--transition);
}
.popup-close:hover { background: rgba(0,0,0,0.5); }

.popup-body {
  padding: 20px 18px;
}
.popup-cannon {
  width: 48px; height: auto; opacity: 0.15;
  position: absolute; bottom: 12px; right: 16px;
  pointer-events: none;
}
.popup-message {
  font-family: 'Inter', sans-serif;
  font-size: 15px; line-height: 1.6;
  color: var(--text);
}
.popup-message strong { color: var(--white); }

.popup-cta {
  display: block; width: 100%;
  margin-top: 16px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--red); color: #fff;
  padding: 11px 0; border-radius: var(--radius-sm);
  text-align: center;
  transition: background var(--transition);
}
.popup-cta:hover { background: var(--red-dark); }

.popup-skip {
  display: block; width: 100%;
  margin-top: 8px; padding: 6px;
  font-size: 12px; color: var(--muted);
  font-family: 'Inter', sans-serif; text-align: center;
  transition: color var(--transition);
}
.popup-skip:hover { color: var(--text); }


/* ╔══════════════════════════════════════════════╗
   ║  TŘEŠNIČKA: STADIUM SCOREBOARD              ║
   ╚══════════════════════════════════════════════╝ */
.scoreboard {
  background: #0d0d0d;
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0 0;
  box-shadow:
    0 0 0 1px rgba(239,1,7,0.2),
    0 8px 40px rgba(239,1,7,0.35),
    0 32px 100px rgba(239,1,7,0.18),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
/* Červená záře pod scoreboard */
.scoreboard::after {
  content: '';
  position: absolute;
  bottom: -28px; left: 5%; right: 5%;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(239,1,7,0.6) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}

.scoreboard-header {
  background: var(--red);
  padding: 7px 18px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.scoreboard-header-label {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 11px; font-weight: 800;
  color: rgba(255,255,255,0.85); letter-spacing: 0.14em; text-transform: uppercase;
}
.scoreboard-header-live {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 0.08em;
}
.scoreboard-live-dot {
  width: 6px; height: 6px; background: #fff; border-radius: 50%;
  animation: pulseDot 1s infinite;
}

.scoreboard-body {
  padding: 24px 20px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  position: relative;
}
.sb-matchup {
  text-align: center;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(15px, 4vw, 20px); font-weight: 800;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.03em;
  padding: 14px 16px 0;
}
.sb-matchup .sb-vs {
  color: var(--red); margin: 0 6px; font-weight: 700;
}
/* scanline texture overlay */
.scoreboard-body::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.12) 3px,
    rgba(0,0,0,0.12) 4px
  );
  pointer-events: none; z-index: 0;
}

.sb-team {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 1; position: relative; z-index: 1; min-width: 0;
}
.sb-team-badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--black-4); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: visible; flex-shrink: 0;
}
.sb-team-badge img { width: 52px; height: 52px; object-fit: contain; }
.sb-team-badge.home { background: var(--red-dim); border-color: var(--border-red); }
.sb-team-badge.opp { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.sb-team-badge.opp img { object-fit: contain; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }
.sb-team-name {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(13px, 3vw, 17px); font-weight: 800;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.04em;
  text-align: center; line-height: 1.1;
}
.sb-team-name.home { color: var(--red); }

.sb-center { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; position: relative; z-index: 1; }

.sb-score {
  display: flex; align-items: center; gap: 6px;
}
.sb-score-num {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(40px, 10vw, 72px); font-weight: 900;
  color: var(--white); line-height: 1;
  /* LED display effect */
  text-shadow: 0 0 20px rgba(239,1,7,0.5), 0 0 40px rgba(239,1,7,0.2);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.sb-score-num.home { color: #fff; }
.sb-score-sep {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(28px,7vw,52px); font-weight: 900;
  color: rgba(255,255,255,0.3); line-height: 1;
  animation: sepBlink 2s infinite;
}
@keyframes sepBlink {
  0%,49%,100% { opacity: 1; }
  50%,99% { opacity: 0.3; }
}

.sb-time {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px; font-weight: 700; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* Ticker */
.scoreboard-ticker {
  border-top: 1px solid var(--border);
  overflow: hidden; height: 34px;
  display: flex; align-items: center;
  background: #0a0a0a;
  position: relative;
}
.scoreboard-ticker::before {
  content: 'GUNNERS';
  position: absolute; left: 0; top: 0; bottom: 0; z-index: 2;
  background: var(--red);
  padding: 0 14px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 11px; font-weight: 800; color: #fff;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center;
  white-space: nowrap;
}
.ticker-track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  padding-left: 90px;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 13px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.04em; padding: 0 28px 0 0;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.ticker-item .ticker-score { color: var(--white); font-weight: 800; }
.ticker-item .ticker-dot {
  width: 3px; height: 3px; background: var(--red); border-radius: 50; flex-shrink: 0;
  margin-right: 16px;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* State labels */
.sb-state {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 11px; font-weight: 800;
  padding: 3px 10px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.sb-state.live { background: var(--red); color: #fff; animation: pulseBadge 1.5s infinite; }
.sb-state.upcoming { background: var(--black-4); color: var(--muted); border: 1px solid var(--border); }
.sb-state.ft { background: #1a2a1a; color: #4caf50; border: 1px solid #2a4a2a; }

/* Countdown */
.sb-countdown {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(28px,7vw,48px); font-weight: 900;
  color: var(--white); letter-spacing: 0.03em;
  text-shadow: 0 0 20px rgba(239,1,7,0.4);
  line-height: 1;
}

/* No fixture state */
.sb-no-fixture {
  text-align: center; padding: 28px 0;
  color: var(--muted); font-size: 15px; font-family: 'Inter', sans-serif;
  width: 100%;
}

/* Scorers line under live score */
.sb-scorers {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: rgba(255,255,255,0.7);
  text-align: center; letter-spacing: 0.01em;
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   INTERACTIVE ENHANCEMENTS
   ══════════════════════════════════════════ */

/* Menu rows — hover highlight */
.menu-row { cursor: default; }
.menu-item-price { display: inline-block; }

/* Menu tabs — spring bounce */
.menu-tab {
  transition: color 0.15s ease, border-color 0.15s ease,
              background 0.15s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.menu-tab:hover { transform: scale(1.06); background: rgba(255,255,255,0.06); color: var(--white); border-color: transparent; }
.menu-tab:active { transform: scale(0.97); }

/* Hours rows — hover */
.hours-row {
  transition: background 0.15s ease, padding-left 0.2s ease;
  cursor: default;
}
.hours-row:not(.today):hover {
  background: rgba(255,255,255,0.04);
  padding-left: 26px;
}

/* Program items — hover lift */
.program-item {
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
  cursor: default;
}
.program-item:hover { transform: translateX(6px); }

/* Info strip items */
.info-strip-item {
  transition: background 0.2s ease;
  cursor: default;
}
.info-strip-item:hover { background: rgba(255,255,255,0.04); }

/* Gallery items — stronger zoom */
.gallery-item {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  z-index: 2;
}

/* Contact pills / links */
.contact-pill, .map-btn, a.contact-value {
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease, background 0.15s ease;
}
.contact-pill:hover, .map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Nav links — underline slide */
.nav-links a {
  position: relative;
  transition: color 0.15s ease;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 8px; right: 8px;
  height: 2px; background: var(--red);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.nav-links a.active::after { opacity: 1; }
.nav-links a:hover { color: rgba(255,255,255,0.85); }
.nav-links a.active { color: var(--white); }

/* Scoreboard badge hover */
.sb-team-badge {
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
}
.sb-team-badge:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* Lang buttons */
.lang-btn {
  transition: background 0.15s ease, color 0.15s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.lang-btn:hover { transform: scale(1.08); }

/* Opp team emoji fallback */
.opp-emoji {
  font-size: 32px; line-height: 1;
}

/* football-data.org crests: kept at the same size/resolution as the Arsenal badge (see .sb-team-badge img above) */



/* Čitelnost — obsah sekcí nad glow pseudo-elementy */
.menu-tabs, .menu-table, .hours-grid, .contact-grid,
.gallery-grid, .program-list, .about-grid {
  position: relative;
  z-index: 1;
}
