:root{
      /* Base Colors */
      --bg: #050507;
      --bg-light: #0b0b0f;
      --txt: #ffffff;
      --muted: rgba(255,255,255,0.7);
      
      /* CLUB Colors (Neon / Cyberpunk) */
      --neon-blue: #00f0ff;
      --neon-pink: #ff0099;

      /* BAR Colors (Gold / Warm) */
      --gold: #ffcc00;
      --gold-dark: #b38f00;

      /* Layout */
      --pad: clamp(20px, 4vw, 50px);
      --content: 1320px;
    }

    *{box-sizing:border-box}
    html,body{height:100%; margin:0; padding:0;}
    body{
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      background: var(--bg);
      color: var(--txt);
      overflow-x: hidden;
    }

    /* Global background glow (aplikuje se na celou stránku) */
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        background:
          radial-gradient(600px 400px at 10% 20%, rgba(0,229,255,0.12), transparent 60%),
          radial-gradient(600px 400px at 85% 70%, rgba(255,0,140,0.10), transparent 60%);
    }

    /* Zajistí, že obsah je nad glow vrstvou */
    body > * {
        position: relative;
        z-index: 1;
    }

    a{text-decoration:none; color:inherit; transition: 0.3s;}
    ul, li { list-style: none; padding: 0; margin: 0; }
    h1,h2,h3,h4,p { margin: 0; }
    input, textarea, select, button { font-family: inherit; }

    /* ===== NAVIGATION ===== */
    .nav{
      position: absolute; 
      top:0; left:0; right:0; 
      z-index: 100;
      padding: 20px 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .navContent{
      max-width: var(--content);
      margin: 0 auto;
      padding: 0 var(--pad);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .brand {
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 20px;
      color: #fff;
    }
    .navLinks {
      display: flex;
      gap: 30px;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 0.15em;
      font-weight: 600;
    }
    .navLinks a{ color: rgba(255,255,255,0.7); }
    .navLinks a:hover{ color: #fff; text-shadow: 0 0 8px rgba(255,255,255,0.5); }
    
    .navBtn {
      padding: 10px 20px;
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.05);
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 0.1em;
      font-weight: 700;
      cursor: pointer;
      transition: 0.3s;
    }
    .navBtn:hover { background: #fff; color: #000; }

    /* ===== SPLIT HERO SECTION ===== */
    .splitHero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      display: flex;
      overflow: hidden;
    }

    .heroSide {
      flex: 1;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: var(--pad);
      transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    @media (min-width: 1024px) {
      .heroSide:hover { flex: 1.3; }
      .heroSide:hover .heroBg { transform: scale(1.1); }
    }

    .heroBg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      z-index: 0;
      transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .heroContent {
      position: relative;
      z-index: 2;
      max-width: 600px;
      width: 100%;
    }

    .welcome-text {
      font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 15px; font-weight: 600; color: rgba(255,255,255,0.9);
    }
    .brand-title {
      font-size: clamp(40px, 5vw, 80px); line-height: 0.9; font-weight: 900; text-transform: uppercase; margin: 0 0 25px 0; display: flex; flex-direction: column; align-items: center; letter-spacing: -0.02em;
    }
    .sub-text {
      font-size: 16px; line-height: 1.6; margin-bottom: 35px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; max-width: 400px; margin-left: auto; margin-right: auto;
    }

    /* CLUB SIDE */
    .clubSide { border-right: 1px solid rgba(255,255,255,0.1); }
    .clubSide .heroBg { background-image: url('./images/Music-Club-The-Pitch.jpg'); }
    .clubSide::before {
      content: ''; position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(to bottom, rgba(0,20,40,0.4), rgba(0,0,0,0.8));
      mix-blend-mode: multiply;
    }
    .club-title-top { color: var(--neon-blue); text-shadow: 0 0 25px rgba(0, 240, 255, 0.5); }
    .club-title-bottom { color: var(--neon-pink); text-shadow: 0 0 25px rgba(255, 0, 153, 0.5); }

    /* SHARED CLUB BUTTON STYLE (Used for Hero & Menu) */
    .btn-club-style {
      display: inline-block; padding: 18px 36px;
      font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em;
      color: #fff; background: rgba(0, 0, 0, 0.3);
      border: 1px solid var(--neon-blue);
      box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
      transition: 0.3s;
      cursor: pointer;
    }
    .btn-club-style:hover { 
      background: var(--neon-blue); 
      color: #000; 
      box-shadow: 0 0 40px rgba(0, 240, 255, 0.6); 
    }

    /* PINK SOLID VARIANT (CTA) */
    .btn-club-style.btn--pink-solid {
      background: #ff008c;
      border-color: #ff008c;
      color: #fff;
      box-shadow: 0 0 18px rgba(255,0,140,0.35);
    }
    .btn-club-style.btn--pink-solid:hover {
      background: #e6007e;
      border-color: #e6007e;
      color: #fff;
      box-shadow: 0 0 24px rgba(255,0,140,0.5);
    }

    /* TURQUOISE VARIANT (CTA) */
    .btn-club-style.btn--turquoise {
      background: var(--neon-blue);
      border-color: var(--neon-blue);
      color: #000;
      box-shadow: 0 0 18px rgba(0,240,255,0.35);
    }
    .btn-club-style.btn--turquoise:hover {
      background: #00d6e6;
      border-color: #00d6e6;
      color: #000;
      box-shadow: 0 0 24px rgba(0,240,255,0.5);
    }

    /* PINK VARIANT (Used for Gallery "Show more") */
    .btn--pink {
      border-color: var(--neon-pink);
      box-shadow: 0 0 15px rgba(255, 0, 153, 0.25);
    }
    .btn--pink:hover {
      background: var(--neon-pink);
      color: #fff;
      box-shadow: 0 0 40px rgba(255, 0, 153, 0.6);
    }

    /* BAR SIDE */
    .barSide .heroBg { background-image: url('./images/cafe-bar-the-pitch.jpg'); }
    .barSide::before {
      content: ''; position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(to bottom, rgba(40,20,0,0.4), rgba(0,0,0,0.8));
      mix-blend-mode: multiply;
    }
    .bar-title-top { color: var(--gold); text-shadow: 0 0 25px rgba(255, 204, 0, 0.4); }
    .bar-title-bottom { color: #fff; text-shadow: 0 0 15px rgba(255,255,255,0.2); }

    .btn-bar {
      display: inline-block; padding: 18px 36px;
      font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em;
      color: #fff; background: rgba(0, 0, 0, 0.3);
      border: 1px solid var(--gold);
      box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
      transition: 0.3s;
    }
    .btn-bar:hover { background: var(--gold); color: #000; box-shadow: 0 0 40px rgba(255, 204, 0, 0.6); }

    /* Scroll Indicator */
    .scroll-indicator {
      position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
      z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 10px;
      opacity: 0.7; pointer-events: none;
    }
    .scroll-arrow { width: 1px; height: 40px; background: linear-gradient(to bottom, #fff, transparent); }

    /* ===== SEPARATOR ===== */
    .separator-wrap {
      position: relative; height: 2px; width: 100%; margin: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
      display: flex; align-items: center; justify-content: center; z-index: 5;
    }
    .separator-diamond {
      width: 12px; height: 12px; background: #050507; border: 1px solid rgba(255,255,255,0.4);
      transform: rotate(45deg); position: relative; box-shadow: 0 0 10px rgba(255,255,255,0.1);
    }

    /* ===== SECTIONS COMMON ===== */
    .section { padding: 80px 0; position: relative; }
    .content { max-width: var(--content); margin: 0 auto; padding: 0 var(--pad); }
    
    .section-header { margin-bottom: 40px; }
    .section-header--with-cta {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
    }
    .section-header-left { max-width: 900px; }
    .club-info-cta { white-space: nowrap; margin-top: 4px; }
    @media (max-width: 768px) {
      .section-header--with-cta { flex-direction: column; align-items: flex-start; }
      .club-info-cta { margin-top: 12px; }
    }

    .section-title {
      font-size: clamp(24px, 3vw, 42px); text-transform: uppercase; letter-spacing: -0.01em;
      position: relative; padding-left: 20px;
    }
    .section-title::before { content:''; position: absolute; left:0; top: 5px; bottom: 5px; width: 4px; }
    .section-desc { max-width: 800px; color: var(--muted); font-size: 15px; line-height: 1.6; margin-top: 20px; }

    /* Themes */
    .theme-club .section-title::before { background: var(--neon-pink); box-shadow: 0 0 10px var(--neon-pink); }
    .theme-club { background: radial-gradient(circle at top left, rgba(0, 240, 255, 0.05), transparent 50%); }
    .theme-bar .section-title::before { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
    .theme-bar { background: radial-gradient(circle at top right, rgba(255, 204, 0, 0.05), transparent 50%); }

    /* ===== EVENTS RAIL (Momentum Scroll) ===== */
    .eventsRailWrapper { position: relative; overflow: hidden; margin-bottom: 60px; }
    
    .eventsScroll {
      display: flex; 
      gap: 20px; 
      overflow-x: auto; 
      padding: 30px 20px 30px 20px;
      scroll-snap-type: x mandatory; 
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch; 
      cursor: grab;
      scrollbar-width: none;
    }
    .eventsScroll.momentum-active { scroll-snap-type: none; scroll-behavior: auto; cursor: grabbing; }
    .eventsScroll::-webkit-scrollbar { display: none; }

    .eventCard {
      flex: 0 0 267px; scroll-snap-align: start;
      background: var(--bg-light); 
      border: 1px solid rgba(0, 240, 255, 0.3);
      box-shadow: 0 0 10px rgba(0, 240, 255, 0.05);
      display: flex; flex-direction: column; 
      transition: box-shadow 0.3s;
      user-select: none;
      position: relative;
    }
    .eventCard:hover { 
      transform: none; 
      box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
      z-index: 5;
    }
    
    .eventImg { height: 400px; width: 100%; object-fit: cover; border-bottom: 1px solid rgba(255,255,255,0.05); pointer-events: none; }
    .eventBody { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
    .eventDate { font-size: 12px; color: var(--neon-blue); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
    .eventTitle { font-size: 20px; text-transform: uppercase; font-weight: 700; line-height: 1.2; }
    .eventDesc { font-size: 14px; color: var(--muted); line-height: 1.5; }
    
    .eventBtn {
      margin-top: auto; padding: 10px 0; text-align: center; 
      border: 1px solid rgba(255,255,255,0.1);
      text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; cursor: pointer; transition: 0.3s;
      background: transparent; color: #fff;
    }
    .eventBtn:hover { 
      background: var(--neon-blue); 
      color: #000; 
      border-color: var(--neon-blue);
      box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
    }

    /* Rail Arrows */
    .railArrow {
      position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
      width: 50px; height: 50px; background: rgba(0,0,0,0.8); border: 1px solid rgba(255,255,255,0.2);
      color: #fff; display: grid; place-items: center; cursor: pointer; transition: 0.3s;
    }
    .railArrow:hover { background: var(--neon-blue); color: #000; border-color: transparent; }
    .railArrow.left { left: 10px; }
    .railArrow.right { right: 10px; }
    @media (max-width: 768px) { .railArrow { display: none; } }

    /* ===== CLUB DRINKS & BUTTONS ===== */
    .club-drinks-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 40px;
    }
    .club-drink-item {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 20px; text-align: center;
      transition: 0.3s;
    }
    .club-drink-item:hover { border-color: var(--neon-blue); background: rgba(0, 240, 255, 0.05); }
    .club-drink-name { font-weight: 700; text-transform: uppercase; font-size: 14px; color: #fff; }

    .club-actions { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 60px; }
    
    .action-btn {
      padding: 15px 30px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px;
      border: 1px solid rgba(255,255,255,0.3); background: transparent; color: #fff; cursor: pointer;
      transition: 0.3s;
    }
    .action-btn.primary { border-color: var(--neon-pink); color: var(--neon-pink); }
    .action-btn.primary:hover { background: var(--neon-pink); color: #fff; box-shadow: 0 0 20px var(--neon-pink); }

    
    
    
    
    /* === POLAROID GALLERY STYLE === */
    .gallery-section {
        padding: 80px 0;
        background: none;
    }
    
    .gallery-grid {
        display: flex;
        gap: 40px;
        justify-content: center;
        flex-wrap: wrap;
        perspective: 1200px;
    }
    
    /* Polaroid card */
    .gallery-item-wrapper {
        background: transparent;
        padding: 14px 14px 14px 14px;
        width: 370px;
        box-shadow:
            0 20px 40px rgba(0,0,0,0.6);
        transform-style: preserve-3d;
        transition: transform .4s ease, box-shadow .4s ease;
    }
    
    /* random rotations */
    .gallery-item-wrapper:nth-child(1) { transform: rotate(-6deg); }
    .gallery-item-wrapper:nth-child(2) { transform: rotate(4deg); }
    .gallery-item-wrapper:nth-child(3) { transform: rotate(-2deg); }
    .gallery-item-wrapper:nth-child(4) { transform: rotate(6deg); }
    .gallery-item-wrapper:nth-child(5) { transform: rotate(-4deg); }
    .gallery-item-wrapper:nth-child(6) { transform: rotate(3deg); }
    .gallery-item-wrapper:nth-child(7) { transform: rotate(-5deg); }
    .gallery-item-wrapper:nth-child(8) { transform: rotate(5deg); }
    
    .gallery-item-wrapper:hover {
        transform: rotate(0deg) scale(1.05) translateY(-10px);
        box-shadow: 0px 0px 60px #00ffff;
        z-index: 5;
    }
    
    /* square thumbnail crop */
    .gallery-cover {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
        background: #000;
    }
    
    /* info strip */
    .gallery-info {
        margin-top: 10px;
        text-align: center;
        font-family: 'Segoe UI', Roboto, sans-serif;
    }
    
    .gallery-title {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #111;
    }
    
    .gallery-meta {
        margin-top: 4px;
        font-size: 11px;
        color: #444;
        display: flex;
        justify-content: space-between;
    }
    
    /* click */
    .glightbox {
        text-decoration: none;
        color: inherit;
    }
    
    .gallery-cover {
        width: 100%;
        aspect-ratio: 1 / 1;   /* 1:1 */
        object-fit: cover;     /* o��zne v�t�� obr�zek */
        display: block;
    }
    
    /* anchor reset */
    .gallery-card{display:block; text-decoration:none; color:inherit; cursor:pointer;}
    .gallery-card:focus{outline:2px solid rgba(255,255,255,0.35); outline-offset:4px;}

    /* Gallery Actions (center "Show more") */
    .gallery-actions{
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }



    /* ===== BAR & MENU ===== */
    .bar-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; }
    .bar-feature { position: relative; min-height: 500px; border: 1px solid var(--gold-dark); overflow: hidden; }
    .bar-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
    .bar-feature:hover img { transform: scale(1.05); }
    .bar-overlay {
      position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
      display: flex; flex-direction: column; justify-content: flex-end; padding: 30px;
    }

    .bar-btn-group { display: flex; gap: 15px; flex-wrap: wrap; }
    
    .btn-gold-outline {
      padding: 12px 24px;
      border: 1px solid var(--gold);
      color: var(--gold);
      background: transparent;
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 0.1em;
      font-weight: 700;
      cursor: pointer;
      transition: 0.3s;
    }
    .btn-gold-outline:hover {
      background: var(--gold);
      color: #000;
      box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
    }

    .cocktail-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
    .cocktail-card {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 25px;
      transition: 0.3s;
    }
    .cocktail-card:hover { background: rgba(255,204,0,0.05); border-color: var(--gold); }
    .cocktail-name { color: var(--gold); font-size: 18px; text-transform: uppercase; margin-bottom: 5px; }
    .cocktail-ing { font-size: 13px; color: var(--muted); line-height: 1.5; }

    .latest-articles-header {
      margin-top: 56px;
      margin-bottom: 22px;
    }

    .latest-articles-title {
      margin: 0;
      font-size: clamp(24px, 2.4vw, 34px);
      text-transform: uppercase;
      color: #fff;
      letter-spacing: 0.02em;
      font-weight: 800;
      padding-left: 20px;
    }

    .latest-articles-header .latest-articles-title::before {
      background: var(--neon-blue);
      box-shadow: 0 0 10px var(--neon-blue);
    }

    .latest-articles-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .latest-article-card {
      display: grid;
      grid-template-columns: 96px 1fr;
      gap: 14px;
      align-items: center;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.10);
      min-height: 108px;
      padding: 12px;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

a.latest-article-card {
  text-decoration: none;
  color: inherit;
}

.latest-article-card--link {
  cursor: pointer;
}

.latest-article-content {
  min-width: 0;
  overflow: hidden;
}

    .latest-article-card:hover {
      border-color: rgba(0, 233, 255, 0.65);
      box-shadow: 0 0 18px rgba(0, 233, 255, 0.22);
      transform: translateY(-2px);
    }

.latest-article-card--link:focus-visible {
  outline: 2px solid rgba(0, 233, 255, 0.85);
  outline-offset: 2px;
}

    .latest-article-thumb {
      width: 96px;
      height: 82px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(0, 233, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .latest-article-icon {
      width: 38px;
      height: 38px;
      color: var(--neon-blue);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .latest-article-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .latest-article-content h4 {
      margin: 0 0 6px;
      color: var(--neon-blue);
      font-size: 22px;
      text-transform: none;
      line-height: 1.2;
      font-weight: 700;
      overflow-wrap: anywhere;
      word-break: break-word;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      max-height: calc(1.2em * 2);
      max-width: 100%;
    }

    .latest-article-content p {
      margin: 0;
      color: rgba(255,255,255,0.75);
      font-size: 13px;
      line-height: 1.45;
      overflow-wrap: anywhere;
      word-break: break-word;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      max-height: calc(1.45em * 2);
    }

    .latest-article-card--empty {
      grid-column: 1 / -1;
    }

    .section-info {
      padding-top: 62px;
      padding-bottom: 82px;
    }

    .section-info .latest-articles-header {
      margin-top: 0;
    }

    /* ===== CLUB INFO PAGE ===== */
    .club-info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    .club-info-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 20px;
    }
    .club-info-card h4 {
      margin-bottom: 8px;
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: 0.08em;
      color: var(--neon-blue);
    }
    .club-info-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px;
    }
    .club-info-list li {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 12px 14px;
    }
    .club-photo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 12px;
    }
    .club-photo {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background: #000;
    }
    .club-photo img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
    }
    .club-info-placeholder {
      background: rgba(255,255,255,0.03);
      border: 1px dashed rgba(255,255,255,0.2);
      padding: 20px;
      color: var(--muted);
      font-size: 14px;
    }
    .club-info-cta-wrap {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }
    @media (max-width: 768px) {
      .club-photo img { height: 140px; }
    }

    /* ===== FOOTER ===== */
    .footer { background: #020203; border-top: 1px solid rgba(255,255,255,0.1); padding: 60px 0; font-size: 14px; color: var(--muted); }
    .footer-content { display: grid; grid-template-columns: 1fr 0.9fr 1.3fr; gap: 40px; }
    
    .footer-hours-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      margin-top: 0;
      padding-top: 0;
      border-top: 0;
      align-self: start;
    }
    .hours-col h5 { color: #fff; font-size: 14px; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 0.1em; }
    .hours-col.bar h5 { color: var(--gold); }
    .hours-col.club h5 { color: var(--neon-blue); }
    .hours-col p { margin: 0 0 6px 0; font-size: 14px; }

    .map-frame { width: 100%; height: 350px; border: 1px solid rgba(255,255,255,0.1); filter: grayscale(1); transition: 0.3s; }
    .map-frame:hover { filter: grayscale(0); }

    .footer-partner {
      margin-top: 18px;
      display: flex;
      justify-content: flex-start;
      align-items: center;
    }
    .footer-partner-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      border: none;
      background: transparent;
      opacity: 0.9;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .footer-partner-link:hover {
      opacity: 1;
      transform: translateY(-1px);
    }
    .footer-partner-logo {
      width: 150px;
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* ===== MODALS ===== */
    .modal-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 1000;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(10px);
    }
    .modal-overlay.open { opacity: 1; pointer-events: auto; }
    
    .event-modal-inner {
      width: 90%; max-width: 1000px; background: #111; border: 1px solid rgba(255,255,255,0.1);
      display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; max-height: 90vh;
      box-shadow: 0 0 50px rgba(0,0,0,0.8);
    }
    
    /* UPDATED: SCROLLABLE IMAGE CONTAINER */
    .event-modal-img-wrapper { 
      width: 100%; 
      height: 100%; 
      background: #000; 
      display: block; 
      overflow-y: auto; /* Enables vertical scrolling */
      position: relative;
    }
    
    /* UPDATED: FULL HEIGHT IMAGE */
    .event-modal-img { 
      width: 100%; 
      height: auto; /* Allows image to be full height */
      display: block;
      object-fit: contain;
    }

    .event-modal-content { padding: 40px; display: flex; flex-direction: column; justify-content: flex-start; position: relative; overflow-y: auto; }
    .close-modal { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #fff; cursor: pointer; z-index: 10; }
    .close-modal svg { width: 30px; height: 30px; }
    
    /* PRIVATE EVENT MODAL LAYOUT */
    .pe-layout { display: grid; grid-template-columns: 1fr 1.2fr; width: 95%; max-width: 1100px; height: 90vh; background: #0b0b0f; border: 1px solid #333; }
    .pe-left { background: #000; position: relative; overflow: hidden; display: flex; flex-direction: column; }
    .pe-image { height: 40%; width: 100%; object-fit: cover; }
    .pe-info { padding: 30px; flex: 1; overflow-y: auto; }
    .pe-right { padding: 30px; overflow-y: auto; border-left: 1px solid #222; }
    
    .pe-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; color: #ccc; font-size: 14px; }
    .pe-list svg { width: 18px; height: 18px; flex-shrink: 0; }

    /* --- THEME SPECIFIC MODAL STYLES --- */
    /* Club Theme */
    .pe-layout.club-theme { border-color: var(--neon-blue); box-shadow: 0 0 30px rgba(0, 240, 255, 0.2); }
    .club-theme .pe-list svg { color: var(--neon-pink); }
    .club-theme h3 { color: var(--neon-blue); }
    .club-theme .cal-day.active { border-color: var(--neon-blue); background: rgba(0, 240, 255, 0.1); color: #fff; }
    .club-theme .form-control:focus { border-color: var(--neon-blue); }
    .club-theme .action-btn.primary { border-color: var(--neon-pink); color: var(--neon-pink); }
    .club-theme .action-btn.primary:hover { background: var(--neon-pink); color: #fff; }

    /* Bar Theme */
    .pe-layout.bar-theme { border-color: var(--gold); box-shadow: 0 0 30px rgba(255, 204, 0, 0.2); }
    .bar-theme .pe-list svg { color: var(--gold); }
    .bar-theme h3 { color: var(--gold); }
    .bar-theme .cal-day.active { border-color: var(--gold); background: rgba(255, 204, 0, 0.1); color: #fff; }
    .bar-theme .form-control:focus { border-color: var(--gold); }
    .bar-theme .action-btn.primary { border-color: var(--gold); color: var(--gold); }
    .bar-theme .action-btn.primary:hover { background: var(--gold); color: #000; }

    /* Calendar Grid */
    .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: 20px; }
    .cal-day { aspect-ratio: 1; background: #1a1a1e; display: flex; align-items: center; justify-content: center; font-size: 12px; color: #555; border: 1px solid #222; }
    .cal-day.active { cursor: pointer; }
    .cal-day.occupied { background: #222; color: #666; opacity: 0.5; cursor: not-allowed; }
    .cal-header { font-size: 10px; text-transform: uppercase; text-align: center; color: #888; margin-bottom: 5px; }

    /* Form */
    .pe-form { display: flex; flex-direction: column; gap: 15px; }
    .form-group label { display: block; font-size: 12px; text-transform: uppercase; color: #888; margin-bottom: 5px; }
    .form-control { width: 100%; background: #111; border: 1px solid #333; color: #fff; padding: 10px; font-size: 14px; }
    .form-control:focus { outline: none; }
    textarea.form-control { resize: vertical; min-height: 80px; }

    /* Lightbox */
    .lightbox-img { max-width: 90%; max-height: 90vh; box-shadow: 0 0 30px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2); }

    /* IG Button in Modal */
    .ig-btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 10px 20px; margin-top: 10px;
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      color: #fff; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em;
      border-radius: 4px; transition: 0.3s; width: fit-content;
    }
    .ig-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
      .bar-grid { grid-template-columns: 1fr; }
      .pe-layout { display: flex; flex-direction: column; height: auto; max-height: 95vh; }
      .pe-left { height: auto; }
      .pe-image { height: 200px; }
    }
    @media (max-width: 768px) {
      .navLinks { display: none; }
      .splitHero { flex-direction: column; height: auto; min-height: 100vh; }
      .heroSide { min-height: 50vh; width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
      .scroll-indicator { display: none; }
      .event-modal-inner { grid-template-columns: 1fr; grid-template-rows: auto 1fr; overflow-y: auto; }
      .event-modal-img-wrapper { height: auto; overflow-y: visible; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .latest-articles-grid { grid-template-columns: 1fr; }
      .latest-article-card { grid-template-columns: 1fr; min-height: 102px; align-items: start; }
      .latest-article-thumb { width: 100%; height: 140px; }
      .latest-article-icon {
        width: 72px;
        height: 72px;
        max-width: 80%;
        max-height: 80%;
      }
      .footer-partner {
        margin-top: 20px;
      }
      .footer-partner-logo {
        width: 132px;
      }
      .footer-content { grid-template-columns: 1fr; }
    }

    @media (min-width: 769px) and (max-width: 1100px) {
      .latest-articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    /* ===== THE PITCH brand link (header) ===== */
    .brand-link {
        color: #ff008c;
        text-decoration: none;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: clamp(40px, 5vw, 60px);
        text-shadow: 0 0 12px rgba(255,0,140,0.5);
        transition: color 0.2s ease, text-shadow 0.2s ease;
    }
    .brand-link:hover {
        color: #e6007e;
        text-shadow: 0 0 16px rgba(255,0,140,0.6);
    }

    /* ===== HEADER layout: centered brand, lang switcher right ===== */
    .nav .navContent {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    .nav .navContent .nav-spacer {
        justify-self: start;
    }
    .nav .navContent .brand-link {
        justify-self: center;
    }
    .nav .navContent .lang-switcher {
        justify-self: end;
    }

    @media (max-width: 768px) {
        .brand-link {
            font-size: clamp(28px, 8vw, 44px);
            letter-spacing: 1.5px;
        }
    }

    /* ===== Pink dividers ===== */
    .pink-divider {
        height: 1px;
        background: #ff008c;
        opacity: 0.6;
        max-width: 1200px;
        margin: 12px auto 0;
    }
    .footer .pink-divider--footer {
        margin: 16px 0 0;
        max-width: 360px;
    }

    /* ===== Search input pink outline ===== */
    body .gallery-search input.pink-outline {
        background: #151518;
        border: 2px solid #ff008c;
        border-radius: 4px;
        height: 44px;
        padding: 0 14px;
    }
    body .gallery-search input.pink-outline:focus {
        border-color: #e6007e;
        background: #1c1c20;
        box-shadow: 0 0 12px rgba(255,0,140,0.35);
    }
    body .gallery-search .btn-club-style {
        height: 44px;
        padding: 0 26px;
        line-height: 44px;
        border-radius: 4px;
    }

    /* ===== Map pink glow ===== */
    .map--pink {
        border: 1px solid rgba(255,0,140,0.6);
        box-shadow: 0 0 18px rgba(255,0,140,0.35);
    }
    /* =========================
   EDITORIAL / FUTURISTIC BLOCKS
========================= */

.editorial-wrap {
    position: relative;
    padding: 80px 0 90px;
    overflow: hidden;
}

/* Vypnout lokální glow, protože glow je teď globální */
.editorial-wrap::before,
.editorial-wrap.editorial-b::before {
    display: none;
}

.editorial-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    z-index: 1;
}
.editorial-grid.reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.editorial-text {
    color: rgba(255,255,255,0.85);
}

.editorial-label {
    color: #00e5ff;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.headline-cyan,
.headline-pink {
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 0.95;
    margin: 0 0 16px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0,229,255,0.25);
}
.headline-cyan { color: #00e5ff; }
.headline-pink {
    color: #ff008c;
    text-shadow: 0 0 24px rgba(255,0,140,0.28);
}
.headline-cyan.small {
    font-size: 28px;
    margin-top: 24px;
}

.divider-pink,
.divider-cyan {
    width: 72px;
    height: 2px;
    margin: 10px 0 22px;
    box-shadow: 0 0 12px rgba(255,0,140,0.5);
}
.divider-pink { background: #ff008c; }
.divider-cyan {
    background: #00e5ff;
    box-shadow: 0 0 12px rgba(0,229,255,0.5);
}

.editorial-text p {
    margin: 0 0 14px;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.65;
}

.micro-cta {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}
.micro-cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #ff008c;
    transition: width 0.35s ease;
}
.micro-cta:hover::after { width: 100%; }

/* DECORATIONS */
.editorial-decor {
    position: relative;
    min-height: 320px;
}

.decor-blob {
    position: absolute;
    inset: 10% 5% auto 5%;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0,229,255,0.45), rgba(255,0,140,0.25), transparent 70%);
    filter: blur(10px);
    opacity: 0.9;
    animation: floatSlow 10s ease-in-out infinite;
}

.decor-outline {
    position: absolute;
    width: 260px;
    height: 260px;
    right: 0;
    top: 20px;
    border: 1px solid rgba(255,0,140,0.7);
    box-shadow: 0 0 18px rgba(255,0,140,0.35);
    animation: floatSlow 12s ease-in-out infinite reverse;
}

.vertical-neon {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ff008c;
    box-shadow: 0 0 18px rgba(255,0,140,0.6);
}

.tech-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
    mask-image: radial-gradient(circle at 40% 50%, rgba(0,0,0,1) 40%, transparent 70%);
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-10px) translateX(6px); }
}

/* GLASS CARDS */
.glass-cards {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
}
.glass-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 20px 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 16px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
}
.glass-card:hover {
    border-color: rgba(0,229,255,0.6);
    box-shadow: 0 0 22px rgba(0,229,255,0.25);
    transform: translateY(-4px);
}
.glass-title {
    color: #fff;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.glass-text {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .headline-cyan,
    .headline-pink { font-size: 56px; }
    .editorial-grid { gap: 40px; }
    .decor-outline { width: 220px; height: 220px; }
}

@media (max-width: 768px) {
    .editorial-wrap { padding: 60px 0 70px; }
    .editorial-grid,
    .editorial-grid.reverse {
        grid-template-columns: 1fr;
    }
    .editorial-decor { min-height: 220px; opacity: 0.7; }
    .decor-outline { width: 180px; height: 180px; right: auto; left: 20px; }
    .headline-cyan,
    .headline-pink { font-size: 40px; }
    .headline-cyan.small { font-size: 22px; }
    .glass-cards { grid-template-columns: 1fr; }
    .vertical-neon { left: 10px; }
}

