: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;
    }
    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); 
    }

    /* 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-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: radial-gradient(circle at top, #111 0%, #000 60%);
    }
    
    .gallery-grid {
        display: flex;
        gap: 40px;
        justify-content: center;
        flex-wrap: wrap;
        perspective: 1200px;
    }
    
    /* Polaroid card */
    .gallery-item-wrapper {
        background: #262626;
        padding: 14px 14px 14px 14px;
        width: 370px;
        box-shadow:
            0 20px 40px rgba(0,0,0,0.6),
            inset 0 0 0 1px rgba(255,255,255,0.3);
        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;}



    /* ===== 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; }

    /* ===== 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 1.5fr; gap: 40px; }
    
    .footer-hours-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px;
      padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
    }
    .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); }

    /* ===== 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; }
      .footer-content { grid-template-columns: 1fr; }
    }
