/* =============================================================
   style.css — WAVE NIGHT CLUB (crno-zlatna tema, po logou)
   ============================================================= */
:root {
  --bg: #070708;
  --bg2: #0c0c0f;
  --panel: #111114;
  --panel2: #1a1a20;
  --line: #2a2a32;
  --text: #f1ede4;
  --muted: #a29a8c;

  --gold: #d4af37;
  --gold-light: #f0d98c;
  --gold-dark: #9c7c1e;
  --grad: linear-gradient(135deg, #f6e27a 0%, #d4af37 45%, #a67c1e 100%);
  --glow-gold: 0 0 22px rgba(212, 175, 55, .35);

  --serif: Georgia, 'Palatino Linotype', 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg); color: var(--text); min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ---------- ZLATNI TEKST ---------- */
.gold-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- HEADER ---------- */
header {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 12px 20px;
  background: rgba(7, 7, 8, .88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 30;
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo-wrap {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden;
  border: 1.5px solid var(--gold-dark); box-shadow: var(--glow-gold);
  flex: 0 0 auto; display: grid; place-items: center; background: #000;
}
.logo-wrap img {
  width: 160%; height: 160%; object-fit: cover; flex: none;
}
.brand-name {
  font-family: var(--serif); font-size: 24px; font-weight: 700;
  letter-spacing: 4px; line-height: 1;
}
.brand-sub {
  display: block; font-family: var(--serif); font-size: 10px;
  letter-spacing: 5px; color: var(--muted); margin-top: 3px;
}
.nav { display: flex; gap: 4px; flex-wrap: wrap; }
.nav a {
  padding: 9px 14px; border-radius: 8px; font-weight: 600; font-size: 13.5px;
  color: var(--muted); letter-spacing: .4px;
}
.nav a:hover { color: var(--gold-light); }
.nav a.active { color: var(--gold); background: var(--panel2); }

.mode-tag { font-size: 12px; font-weight: 800; color: var(--muted); background: var(--panel2); padding: 6px 12px; border-radius: 999px; }
.switch { display: flex; background: var(--panel2); border-radius: 11px; padding: 3px; margin-left: auto; }
.switch button {
  border: 0; background: transparent; color: var(--muted); padding: 8px 16px;
  border-radius: 8px; cursor: pointer; font-weight: 800; font-size: 13px;
}
.switch button.active { background: var(--grad); color: #141005; }

/* ---------- MOBILNI MENI (tri tackice) ---------- */
.nav-toggle {
  display: none; margin-left: auto; flex: 0 0 auto;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--gold-dark); background: var(--panel);
  color: var(--gold-light); font-size: 22px; line-height: 1; font-weight: 700;
  cursor: pointer; align-items: center; justify-content: center;
  transition: border-color .15s, box-shadow .15s;
}
.nav-toggle:hover, .nav-toggle[aria-expanded="true"] { border-color: var(--gold); box-shadow: var(--glow-gold); }
.nav .nav-cta, .nav .nav-mobile { display: none; }

@media (max-width: 1000px) {
  .nav-toggle { display: flex; }
  header > .btn-gold, header > .btn-outline { display: none; }
  .nav {
    display: none; position: absolute; top: calc(100% + 10px); right: 14px;
    flex-direction: column; gap: 2px; min-width: 232px;
    background: #0b0b0e;
    border: 1px solid var(--gold-dark); border-radius: 16px; padding: 10px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .75), var(--glow-gold);
  }
  .nav.open { display: flex; animation: navDrop .18s ease; }
  @keyframes navDrop {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: none; }
  }
  .nav a { padding: 13px 16px; font-size: 15px; border-radius: 10px; }
  .nav .nav-mobile { display: block; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 14px; }
  .nav .nav-cta {
    display: block; margin-top: 8px; text-align: center;
    background: var(--grad); color: #141005; font-weight: 800; letter-spacing: .8px;
    border-radius: 999px; box-shadow: var(--glow-gold);
  }
}

/* ---------- DUGMAD ---------- */
.btn-gold {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  font-weight: 800; letter-spacing: 1.2px; font-size: 14.5px;
  background: var(--grad); color: #141005; border: 0; cursor: pointer;
  box-shadow: var(--glow-gold); transition: transform .15s, box-shadow .15s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(212,175,55,.55); }
.btn-outline {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 700; font-size: 14.5px; letter-spacing: .8px;
  border: 1.5px solid var(--gold-dark); color: var(--gold-light); cursor: pointer; background: transparent;
}
.btn-outline:hover { border-color: var(--gold); box-shadow: var(--glow-gold); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 78vh; display: grid; place-items: center;
  text-align: center; overflow: hidden; padding: 70px 20px;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(.38) saturate(.85);
}
.hero-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,8,.25) 0%, rgba(7,7,8,.45) 60%, var(--bg) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero .logo-hero {
  width: 148px; height: 148px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 22px; border: 2px solid var(--gold-dark);
  box-shadow: 0 0 45px rgba(212,175,55,.4); display: grid; place-items: center; background: #000;
}
.hero .logo-hero img { width: 150%; height: 150%; object-fit: cover; flex: none; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(52px, 10vw, 110px);
  margin: 0; font-weight: 700; letter-spacing: 14px; padding-left: 14px;
}
.hero .sub {
  font-family: var(--serif); font-size: clamp(13px, 2.2vw, 18px);
  color: var(--muted); letter-spacing: 8px; margin: 8px 0 20px; text-transform: uppercase;
}
.hero p.tagline { color: #cfc8ba; max-width: 560px; margin: 0 auto 30px; line-height: 1.7; font-size: 16px; }
.hero .cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- SEKCIJE ---------- */
.section { max-width: 1140px; margin: 0 auto; padding: 64px 20px; }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2 {
  font-family: var(--serif); font-size: clamp(28px, 4.5vw, 40px);
  margin: 0 0 8px; letter-spacing: 2px;
}
.section-head .lead { color: var(--muted); margin: 0 auto; max-width: 620px; line-height: 1.6; }
.gold-rule {
  width: 70px; height: 2px; background: var(--grad); border: 0;
  margin: 16px auto 0; border-radius: 2px;
}

/* ---------- PROGRAM (događaji) ---------- */
.events { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); }
.event-card {
  background: linear-gradient(180deg, var(--panel), var(--bg2));
  border: 1px solid var(--line); border-radius: 16px; padding: 20px;
  position: relative; overflow: hidden;
  transition: transform .15s, border-color .15s, box-shadow .15s;
  display: flex; flex-direction: column;
}
.event-card:hover { transform: translateY(-4px); border-color: var(--gold-dark); box-shadow: var(--glow-gold); }
.event-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad); opacity: .8; }
.event-media {
  aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden;
  background: radial-gradient(ellipse at center, #1c1a14 0%, var(--bg2) 75%);
  border: 1px solid var(--line); margin-bottom: 14px;
  display: grid; place-items: center;
}
.event-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-mono {
  font-family: var(--serif); font-size: 52px; font-weight: 700; letter-spacing: 6px;
  filter: drop-shadow(0 0 18px rgba(212,175,55,.35));
}
.event-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.event-date {
  display: flex; flex-direction: column; align-items: center; min-width: 62px;
  background: var(--panel2); border: 1px solid var(--line); border-radius: 12px; padding: 8px 10px;
}
.event-date .d { font-size: 26px; font-weight: 900; line-height: 1.1; color: var(--gold-light); font-family: var(--serif); }
.event-date .m { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; }
.event-date .dow { font-size: 10px; color: var(--muted); margin-top: 2px; }
.event-type {
  font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; align-self: flex-start;
}
.event-type.zurka { background: rgba(212,175,55,.12); color: var(--gold); border: 1px solid rgba(212,175,55,.3); }
.event-type.gostovanje { background: rgba(240,217,140,.07); color: #e8dcb8; border: 1px solid var(--line); }
.event-card h3 { margin: 2px 0 6px; font-size: 19px; font-family: var(--serif); letter-spacing: .5px; }
.event-guest { color: var(--gold); font-weight: 700; font-size: 13.5px; margin-bottom: 8px; }
.event-desc { color: var(--muted); font-size: 13.5px; line-height: 1.55; margin-bottom: 16px; flex: 1; }
.event-card .btn-outline { padding: 9px 18px; font-size: 12.5px; text-align: center; }
.badge-hot {
  position: absolute; top: 12px; right: 12px;
  background: var(--grad); color: #141005; font-size: 10px; font-weight: 900;
  padding: 4px 10px; border-radius: 999px; letter-spacing: 1px; box-shadow: var(--glow-gold);
}
.badge-soon {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  color: var(--gold-light); border: 1px dashed var(--gold-dark);
  padding: 6px 12px; border-radius: 999px;
}

/* ---------- VIRTUELNA TURA — TEASER ---------- */
.tour-teaser {
  position: relative; border-radius: 20px; overflow: hidden;
  min-height: 340px; display: grid; place-items: center; text-align: center;
  border: 1px solid var(--line);
}
.tour-teaser .bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.42); transition: transform .4s; }
.tour-teaser:hover .bg { transform: scale(1.04); }
.tour-teaser .inner { position: relative; z-index: 1; padding: 40px 20px; }
.tour-teaser h3 { font-family: var(--serif); font-size: clamp(24px, 4vw, 34px); margin: 0 0 10px; letter-spacing: 2px; }
.tour-teaser p { color: #d8d2c6; margin: 0 0 22px; }

/* ---------- GALERIJA ---------- */
.gallery { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.gallery a {
  display: block; border-radius: 14px; overflow: hidden; position: relative;
  border: 1px solid var(--line); aspect-ratio: 16 / 10;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; display: block; }
.gallery a:hover img { transform: scale(1.06); }

/* ---------- INFO KARTICE ---------- */
.info-cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.info-card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.info-card .ic { font-size: 28px; margin-bottom: 12px; }
.info-card h4 { margin: 0 0 8px; font-size: 16px; letter-spacing: .4px; }
.info-card p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.6; }

footer { border-top: 1px solid var(--line); padding: 36px 20px; text-align: center; color: var(--muted); font-size: 13.5px; }
footer .brand { justify-content: center; margin-bottom: 12px; }
footer p { margin: 4px 0; }

/* ---------- ADMIN TOOLBAR ---------- */
#adminTools {
  display: none; gap: 8px; flex-wrap: wrap; align-items: center;
  padding: 12px 20px; background: var(--panel2); border-bottom: 1px solid var(--line);
}
.tool {
  border: 1px solid var(--line); background: var(--panel); color: var(--text);
  padding: 8px 12px; border-radius: 9px; cursor: pointer; font-size: 13px; font-weight: 700;
}
.tool:hover { border-color: var(--gold); }
.tool.file input { display: none; }

/* ---------- MAPA ---------- */
.map-head { max-width: 1400px; margin: 0 auto; padding: 24px 20px 0; }
.map-head h1 { margin: 0; font-size: 26px; letter-spacing: 1px; font-family: var(--serif); }
.map-head p { color: var(--muted); margin: 6px 0 0; }
.wrap { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 16px; max-width: 1400px; margin: 0 auto; }
@media (min-width: 980px) { .wrap { grid-template-columns: 1fr 330px; align-items: start; } }

.map-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 10px;
}
svg#map, svg#adminMap, svg#liveMap { width: 100%; height: auto; display: block; border-radius: 14px; touch-action: none; }

/* ---------- SVG ELEMENTI ---------- */
.floor { fill: #0b0b0e; stroke: var(--line); stroke-width: 2; }
.zone-watermark { fill: #ffffff; opacity: .05; font-weight: 900; letter-spacing: 4px; }

.fixture-rect { fill: #1a1a21; stroke: #35353f; stroke-width: 2; }
.fixture-bar .fixture-rect { stroke: var(--gold-dark); fill: #16130a; }
.fixture-dj .fixture-rect { fill: #191322; stroke: #6d4fa3; }
.fixture-entrance .fixture-rect { stroke: var(--gold); fill: #191509; }
.fixture-label { fill: #d9d2c2; font-weight: 800; font-size: 19px; letter-spacing: 2px; }
.fixture-bar .fixture-label { fill: var(--gold-light); font-size: 22px; }
.fixture-entrance .fixture-label { fill: var(--gold-light); }

.stage-ellipse { fill: #1c4a25; stroke: #4f9e5c; stroke-width: 3; }
.stage-label { fill: #cdebd2; font-size: 26px; letter-spacing: 5px; }

.water-rect { fill: #0d2438; stroke: #1c4a6e; stroke-width: 1.5; }
.water-label { fill: #5f96c4; font-size: 15px; letter-spacing: 6px; font-weight: 700; }

.level-line { stroke: #6b6353; stroke-width: 3; stroke-dasharray: 10 8; }
.level-label { fill: #6b6353; font-size: 13px; font-style: italic; }

.pillar-rect { fill: #000; stroke: #3a3a42; stroke-width: 1.5; }

.table-rect { transition: filter .12s; }
.table:hover .table-rect { filter: brightness(1.45); }
.table-label { fill: #fff; font-weight: 800; font-size: 19px; }
.table-sub { fill: #d6cfc2; font-size: 11.5px; font-weight: 600; }
.table-label-sm { font-size: 10.5px; fill: #b9b2a2; font-weight: 700; letter-spacing: .3px; }

/* interna mapa (samo osoblje): ime gosta, broj osoba i potrošnja na stolu */
.imap-guest { fill: #fff; font-weight: 800; font-size: 11px; }
.imap-guest-sm { font-size: 10px; }
.imap-sub { fill: #cfc7b8; font-weight: 600; font-size: 10px; }
.imap-sub-sm { font-size: 9.5px; }
.imap-spend { fill: var(--gold-light, #e8c876); font-weight: 800; font-size: 10px; }
.table.dragging .table-rect { filter: brightness(1.6); stroke-dasharray: 6 4; }
.table-admin { cursor: grab; }

/* ---------- LEGENDA ---------- */
.legend { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 16px; position: sticky; top: 86px; }
.legend h3 { margin: 0 0 12px; font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 2.5px; }
.legend .items { display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; }
.legend .it { display: flex; align-items: center; gap: 10px; }
.swatch {
  width: 18px; height: 18px; border-radius: 5px; border: 2px solid rgba(255,255,255,.14);
  flex: 0 0 auto; display: grid; place-items: center; font-size: 11px; font-weight: 800; color: #fff;
}
.swatch.round { border-radius: 50%; }
.legend .divider { height: 1px; background: var(--line); margin: 6px 0; }

/* ---------- KLIZNI PANEL (rezervacija / admin) ---------- */
#panel {
  position: fixed; right: 0; top: 0; height: 100%; width: min(430px, 94vw);
  background: var(--panel); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform .22s ease; z-index: 50;
  overflow-y: auto; box-shadow: -14px 0 50px rgba(0,0,0,.6);
}
#panel.open { transform: translateX(0); }
.panel-head { display: flex; justify-content: space-between; align-items: flex-start; padding: 18px; border-bottom: 2px solid var(--line); }
.panel-title { font-size: 24px; font-weight: 800; font-family: var(--serif); letter-spacing: 1px; }
.panel-zone { font-size: 13px; font-weight: 800; margin-top: 3px; letter-spacing: .5px; }
.x { background: transparent; border: 0; color: var(--muted); font-size: 22px; cursor: pointer; }
.x:hover { color: var(--gold); }
.panel-body { padding: 18px 18px 44px; }

/* video najava žurke u panelu rezervacije (vrti se bez zvuka) */
.promo-vid {
  display: block; width: 100%; max-height: 190px; object-fit: cover;
  border-radius: 12px; border: 1px solid var(--line); background: #000;
  margin-bottom: 14px;
}

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.info-grid > div { background: var(--panel2); border-radius: 11px; padding: 10px 12px; }
.info-grid span { display: block; font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; }
.info-grid b { font-size: 15px; }

/* ---------- FORME ---------- */
.form { display: flex; flex-direction: column; gap: 11px; }
.form h4 { margin: 6px 0 0; font-size: 15px; color: var(--gold-light); letter-spacing: .5px; }
.form label { display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: var(--muted); font-weight: 700; }
.form input, .form select, .form textarea {
  background: var(--panel2); border: 1px solid var(--line); color: var(--text);
  border-radius: 9px; padding: 10px 11px; font-size: 14px; font-family: inherit;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--gold); box-shadow: var(--glow-gold); }
.form textarea { resize: vertical; min-height: 60px; }
.form .row { display: flex; gap: 8px; }
.form .row label { flex: 1; }
.terms { font-size: 12px; color: var(--muted); background: var(--panel2); padding: 10px 12px; border-radius: 9px; line-height: 1.5; border-left: 2px solid var(--gold-dark); }

.btn { border: 1px solid var(--line); background: var(--panel2); color: var(--text); padding: 12px 14px; border-radius: 10px; cursor: pointer; font-weight: 800; font-size: 14px; }
.btn.primary { background: var(--grad); color: #141005; border: 0; }
.btn.primary:hover { box-shadow: var(--glow-gold); }
.btn.danger { background: #2c1114; color: #ff9da8; border-color: #55232a; }
.btn-row { display: flex; gap: 8px; margin-top: 6px; }
.btn-row .btn { flex: 1; }

.res-block, .reserved-box { background: var(--panel2); border-radius: 11px; padding: 12px; margin-top: 4px; }
.res-block h4, .reserved-box h4 { margin: 0 0 8px; }
.muted { color: var(--muted); }
.small { font-size: 12px; }

.success { text-align: center; padding-top: 40px; }
.check {
  width: 66px; height: 66px; border-radius: 50%; background: rgba(212,175,55,.12);
  color: var(--gold); font-size: 34px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; box-shadow: var(--glow-gold);
}

.zone-row { display: flex; align-items: center; gap: 10px; background: var(--panel2); padding: 8px 10px; border-radius: 9px; }
.zone-row span { flex: 1; font-weight: 700; }
.zone-row input[type=color] { width: 40px; height: 34px; border: 0; background: none; padding: 0; }
.zone-row .min { flex-direction: row; align-items: center; gap: 6px; }
.zone-row .min input { width: 70px; }

#flash {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--grad); color: #141005; padding: 11px 22px; border-radius: 11px;
  opacity: 0; pointer-events: none; transition: .2s; z-index: 70; font-weight: 900;
  box-shadow: var(--glow-gold);
}
#flash.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =============================================================
   VIRTUELNA TURA
   ============================================================= */
.tour-page { max-width: 1200px; margin: 0 auto; padding: 20px; }
.tour-title { text-align: center; margin: 14px 0 20px; }
.tour-title h1 { font-family: var(--serif); font-size: clamp(26px, 4.5vw, 38px); margin: 0 0 6px; letter-spacing: 2px; }
.tour-title p { color: var(--muted); margin: 0; }

.tour-stage {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); background: #000;
  aspect-ratio: 16 / 9; max-height: 74vh; width: 100%;
}
@media (max-width: 700px) { .tour-stage { aspect-ratio: 4 / 3; } }
.tour-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .7s ease;
}
.tour-img.visible { opacity: 1; }
.tour-img.kb-a { animation: kbA 16s ease-in-out infinite alternate; }
.tour-img.kb-b { animation: kbB 16s ease-in-out infinite alternate; }
@keyframes kbA { from { transform: scale(1); } to { transform: scale(1.09) translate(-1.5%, -1%); } }
@keyframes kbB { from { transform: scale(1.09) translate(1.5%, 1%); } to { transform: scale(1); } }

.tour-caption {
  position: absolute; left: 18px; bottom: 18px; z-index: 3; max-width: min(430px, 80%);
  background: rgba(7,7,8,.78); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 14px; padding: 14px 18px;
}
.tour-caption h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 20px; letter-spacing: 1px; }
.tour-caption p { margin: 0; color: #cfc8ba; font-size: 13.5px; line-height: 1.5; }

.tour-counter {
  position: absolute; top: 16px; left: 18px; z-index: 3;
  background: rgba(7,7,8,.7); border: 1px solid var(--line);
  padding: 5px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 800; letter-spacing: 1px;
}
.tour-autoplay {
  position: absolute; top: 14px; right: 16px; z-index: 4;
  background: rgba(7,7,8,.7); border: 1px solid var(--line); color: var(--text);
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 15px;
}
.tour-autoplay:hover { border-color: var(--gold); color: var(--gold); }

.tour-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(7,7,8,.72); border: 1px solid var(--line); color: var(--gold-light);
  font-size: 20px; cursor: pointer; display: grid; place-items: center;
}
.tour-arrow:hover { border-color: var(--gold); box-shadow: var(--glow-gold); }
.tour-arrow.prev { left: 14px; }
.tour-arrow.next { right: 14px; }

/* hotspot tačke na slici */
.hotspot {
  position: absolute; z-index: 3; transform: translate(-50%, -50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(212,175,55,.85); border: 2px solid #fff3d0; cursor: pointer;
  box-shadow: 0 0 0 rgba(212,175,55,.5); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,.5); }
  70% { box-shadow: 0 0 0 16px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}
.hotspot .tip {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; background: rgba(7,7,8,.92); border: 1px solid var(--gold-dark);
  color: var(--text); font-size: 12.5px; font-weight: 700;
  padding: 7px 12px; border-radius: 9px; opacity: 0; pointer-events: none; transition: .15s;
}
.hotspot:hover .tip, .hotspot.show .tip { opacity: 1; }

/* trakica sa sličicama */
.tour-thumbs {
  display: flex; gap: 10px; margin-top: 14px; overflow-x: auto; padding-bottom: 6px;
}
.tour-thumbs button {
  flex: 0 0 auto; width: 118px; aspect-ratio: 16/10; border-radius: 10px; overflow: hidden;
  border: 2px solid var(--line); padding: 0; cursor: pointer; background: #000; position: relative;
}
.tour-thumbs button img { width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: .15s; display: block; }
.tour-thumbs button span {
  position: absolute; left: 0; right: 0; bottom: 0; font-size: 10px; font-weight: 800;
  color: #fff; background: rgba(0,0,0,.55); padding: 3px 4px; letter-spacing: .3px;
}
.tour-thumbs button.active { border-color: var(--gold); }
.tour-thumbs button.active img, .tour-thumbs button:hover img { opacity: 1; }

.tour-cta { text-align: center; margin: 26px 0 40px; }

/* ---------- ATMOSFERA (video isečci sa žurki) ---------- */
.reel-strip {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.reel {
  margin: 0; position: relative; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 9 / 16; background: #0a0a0e;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.reel:hover { transform: translateY(-4px); border-color: var(--gold-dark); box-shadow: var(--glow-gold); }
.reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 10px 8px;
  background: linear-gradient(transparent, rgba(5,5,8,.85));
  font-size: 11.5px; font-weight: 700; letter-spacing: .4px; color: #e8e2d2; text-align: center;
}
.promo-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 22px; }
.promo-row button {
  border: 1px solid var(--gold-dark); background: rgba(212,175,55,.08); color: var(--gold-light);
  font-weight: 700; font-size: 13px; line-height: 1; font-family: inherit; letter-spacing: .3px;
  padding: 11px 18px; border-radius: 999px; cursor: pointer; transition: all .2s;
}
.promo-row button:hover { background: rgba(212,175,55,.2); box-shadow: var(--glow-gold); }

/* lightbox za pune promo videe (sa zvukom) */
#videoLightbox {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(4,4,7,.94); align-items: center; justify-content: center; flex-direction: column; gap: 14px;
}
#videoLightbox.open { display: flex; }
#videoLightbox video {
  max-height: 82vh; max-width: min(92vw, 460px); border-radius: 16px;
  border: 1px solid var(--gold-dark); box-shadow: 0 0 60px rgba(212,175,55,.25);
  background: #000;
}
#videoLightbox .vl-title { color: var(--gold-light); font-weight: 800; letter-spacing: 1px; }
#videoLightbox .vl-close {
  position: absolute; top: 18px; right: 22px; border: 1px solid var(--line);
  background: rgba(7,7,8,.8); color: #e8e2d2; font-size: 22px; line-height: 1;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
}
#videoLightbox .vl-close:hover { border-color: var(--gold-dark); color: var(--gold-light); }

/* dupli teaser: 3D šetnja + 360 tura */
.teaser-duo { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) { .teaser-duo { grid-template-columns: 1fr; } }
.teaser-duo .tour-teaser { min-height: 280px; }
