/* ============================================================
   Kulturni centar Bar — zajednički CSS
   Paleta: duboko plava / zlatna / teal / terakota / krem
   Fontovi: Fraunces (serif) + Inter (sans)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@400;500;600;700&display=swap');

/* === Varijable === */
:root {
  --bg:              #152336;
  --bg-elevated:     #1a2c41;
  --bg-card:         #162438;
  --gold:            #D4A53D;
  --gold-light:      #E8C06A;
  --gold-dim:        rgba(212, 165, 61, 0.14);
  --teal:            #3E7C7B;
  --teal-light:      #52a09f;
  --terra:           #A14338;
  --terra-light:     #c25447;
  --cream:           #F3EDE0;
  --cream-muted:     #b4ab99;
  --border:          rgba(212, 165, 61, 0.18);
  --border-subtle:   rgba(243, 237, 224, 0.07);
  --shadow:          0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-sm:       0 2px 10px rgba(0, 0, 0, 0.35);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.15; font-weight: 600; }

/* === Layout === */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
}
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.section-header { margin-bottom: 48px; }
.gold-line { width: 44px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 14px; }
.section-header h2 { font-size: clamp(26px, 4vw, 40px); color: var(--cream); margin-bottom: 10px; }
.section-header p  { font-size: 16px; color: var(--cream-muted); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary {
  background: var(--gold);
  color: #3d1800;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #3d1800;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 165, 61, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243, 237, 224, 0.28);
}
.btn-outline:hover {
  border-color: rgba(243, 237, 224, 0.6);
  color: var(--cream);
  background: rgba(243, 237, 224, 0.05);
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: #060d17;
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 13px;
  color: var(--cream-muted);
}
.topbar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left,
.topbar-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--cream-muted); }
.topbar a:hover { color: var(--gold); }
.topbar-sep { color: rgba(243, 237, 224, 0.18); user-select: none; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { display: flex; align-items: center; }
.topbar-social svg { display: block; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: rgba(14, 27, 42, 0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--cream); }
.nav-logo-img {
  height: 34px;
  width: auto;
  filter: invert(1) sepia(0.25) saturate(1.3);
  mix-blend-mode: screen;
  opacity: 0.92;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-muted);
  padding: 6px 13px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); background: rgba(212, 165, 61, 0.07); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 13px; right: 13px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* CTA nav item */
.nav-links li.nav-cta a {
  background: var(--gold);
  color: #3d1800 !important;
  border-radius: 7px;
  font-weight: 600;
  padding: 7px 15px;
}
.nav-links li.nav-cta a:hover { background: var(--gold-light); }
.nav-links li.nav-cta a.active { background: var(--gold-light); }
.nav-links li.nav-cta a::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 7px 9px;
  color: var(--cream);
  line-height: 1;
}
.nav-toggle:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; align-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: #0b1828;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 16px;
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 14px; border-radius: 8px; }
  .nav-links a.active::after { display: none !important; }
  .nav-links a.active { background: rgba(212, 165, 61, 0.1); }
  .nav-links li.nav-cta { margin-top: 6px; }
  .nav-links li.nav-cta a { text-align: center; padding: 11px 14px; }
  .topbar { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #06101a;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
  margin-top: 80px;
}
.footer-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  filter: invert(1) sepia(0.25) saturate(1.3);
  mix-blend-mode: screen;
  opacity: 0.88;
  display: block;
  margin-bottom: 14px;
}
.footer-brand h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { color: var(--cream-muted); font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--border-subtle);
  border: 1px solid var(--border);
  color: var(--cream-muted);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; color: var(--cream-muted); line-height: 1.55; }
.footer-col ul a { color: var(--cream-muted); }
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1600px;
  margin: 48px auto 0;
  padding: 20px 48px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--cream-muted);
}
.footer-bottom a { color: var(--cream-muted); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { margin-top: 56px; padding-top: 48px; }
}

/* ============================================================
   INDEX — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 22% 55%, rgba(212, 165, 61, 0.09) 0%, transparent 52%),
    radial-gradient(ellipse at 72% 20%, rgba(62, 124, 123, 0.08) 0%, transparent 52%),
    radial-gradient(ellipse at 50% 110%, rgba(161, 67, 56, 0.06) 0%, transparent 48%),
    linear-gradient(170deg, #060d17 0%, #0E1B2A 45%, #091521 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(212,165,61,0.055) 1px, transparent 0);
  background-size: 36px 36px;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); border-radius: 1px; }
.hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 17px;
  color: var(--cream-muted);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.78;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat strong {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span { font-size: 13px; color: var(--cream-muted); }

/* ============================================================
   INDEX — EVENT CARDS
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.event-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 0;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.event-card:hover {
  transform: translateY(-3px);
  border-color: var(--border);
  box-shadow: var(--shadow);
  color: var(--cream);
}

/* Slika kartice */
.event-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.event-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.event-card:hover .event-card-img img { transform: scale(1.04); }

/* Obojena linija tipa događaja — pri dnu slike */
.event-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.event-card.type-balet    .event-card-img::after { background: var(--teal); }
.event-card.type-film     .event-card-img::after { background: var(--gold); }
.event-card.type-spektakl .event-card-img::after { background: var(--terra); }
.event-card.type-festival .event-card-img::after { background: var(--gold); }

/* Tijelo kartice */
.event-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }

.event-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.event-card h3 { font-size: 20px; color: var(--cream); margin-bottom: 6px; }
.event-meta { font-size: 13px; color: var(--cream-muted); margin-bottom: 16px; line-height: 1.55; }
.event-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.event-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  background: rgba(212, 165, 61, 0.1);
  color: var(--gold);
  border: 1px solid rgba(212, 165, 61, 0.2);
}
.event-tag.teal  { background: rgba(62,124,123,0.12); color: var(--teal-light); border-color: rgba(62,124,123,0.22); }
.event-tag.terra { background: rgba(161,67,56,0.12); color: #d46a5e; border-color: rgba(161,67,56,0.22); }
.event-cta-row {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.22s;
}
.event-card:hover .event-cta-row { opacity: 1; }

/* ============================================================
   INDEX — FESTIVALS
   ============================================================ */
.festivals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.festival-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s;
}
.festival-card:hover { border-color: var(--border); transform: translateY(-2px); }

.festival-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.festival-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.festival-card:hover .festival-card-img img { transform: scale(1.04); }

.festival-card-body { padding: 22px 24px 24px; }

.festival-num {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 14px;
}
.festival-card h3 { font-size: 18px; color: var(--cream); margin-bottom: 10px; }
.festival-card p  { font-size: 14px; color: var(--cream-muted); line-height: 1.7; }

/* ============================================================
   INDEX — ORG UNITS
   ============================================================ */
.org-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.org-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.22s, transform 0.22s;
}
.org-card:hover { border-color: var(--border); transform: translateY(-2px); }
.org-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.org-body h3 { font-size: 15px; color: var(--cream); margin-bottom: 7px; }
.org-body p  { font-size: 13px; color: var(--cream-muted); line-height: 1.65; }

/* ============================================================
   INDEX — CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #0f2337 0%, #192d3e 50%, #0c1e2c 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 61, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(24px, 4vw, 36px); color: var(--cream); margin-bottom: 14px; }
.cta-banner p {
  font-size: 16px;
  color: var(--cream-muted);
  margin-bottom: 30px;
  max-width: 460px;
  margin-left: auto; margin-right: auto;
}

/* ============================================================
   KUPI KARTU — PAGE HEADER
   ============================================================ */
.page-hero {
  background: linear-gradient(180deg, #060d17 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 44px 0 0;
}
.breadcrumb {
  font-size: 13px;
  color: var(--cream-muted);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--cream-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: 0.35; }

.event-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}
.event-header-info h1 { font-size: clamp(28px, 5vw, 48px); color: var(--cream); margin-bottom: 12px; }
.event-header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--cream-muted);
}
.badge {
  background: rgba(212, 165, 61, 0.12);
  border: 1px solid rgba(212, 165, 61, 0.22);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.meta-dot { width: 3px; height: 3px; background: var(--cream-muted); border-radius: 50%; opacity: 0.35; }

/* Performance tabs */
.perf-tabs {
  display: flex;
  gap: 8px;
  padding-bottom: 0;
  flex-wrap: wrap;
}
.perf-tab {
  padding: 10px 20px;
  border-radius: 8px 8px 0 0;
  border: 1px solid var(--border-subtle);
  border-bottom: none;
  background: transparent;
  color: var(--cream-muted);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 0;
  position: relative;
}
.perf-tab:hover { border-color: var(--border); color: var(--gold); }
.perf-tab.active {
  background: var(--bg);
  border-color: var(--border);
  color: var(--gold);
  font-weight: 600;
}
.perf-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--bg);
}

/* ============================================================
   KUPI KARTU — TICKET LAYOUT
   ============================================================ */
.ticket-section { padding: 32px 0 72px; }
.ticket-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: start;
}

/* Seat map card */
.seat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  min-width: 0; /* sprečava grid overflow — bez ovoga overflow-x:auto ne radi */
}
.seat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--cream-muted);
}
.legend-chip { display: flex; align-items: center; gap: 7px; }
.swatch { width: 14px; height: 14px; border-radius: 3px; display: inline-block; flex-shrink: 0; }

.screen-wrap { text-align: center; margin-bottom: 22px; }
.screen-bar {
  width: 48%;
  max-width: 260px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(212,165,61,0.38), transparent);
  border-radius: 99px;
  margin: 0 auto 7px;
}
.screen-label { font-size: 10px; letter-spacing: 3px; color: rgba(212,165,61,0.45); text-transform: uppercase; }

.hall-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 10px;
  cursor: default;
}
.hall-inner { display: inline-block; min-width: 100%; }

.seat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  white-space: nowrap;
}
.seat-block { display: flex; gap: 2px; }
.row-label {
  font-size: 10px;
  color: rgba(243, 237, 224, 0.22);
  margin: 0 7px;
  min-width: 14px;
  text-align: center;
  user-select: none;
  flex-shrink: 0;
}
.aisle-sep {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(243, 237, 224, 0.2);
  white-space: nowrap;
}
.aisle-sep::before,
.aisle-sep::after { content: ''; flex: 1; height: 1px; background: rgba(243, 237, 224, 0.07); }

/* Seat buttons */
.seat {
  width: 16px; height: 16px;
  border-radius: 3px;
  border: 1px solid;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  line-height: 1;
  padding: 0;
  transition: border-color 0.12s, transform 0.1s, background 0.12s;
  flex-shrink: 0;
}
.seat:not(:disabled):hover { transform: scale(1.22); z-index: 1; position: relative; }

.seat.cat-a { background: rgba(62, 124, 123, 0.45); border-color: rgba(62, 124, 123, 0.75); }
.seat.cat-a:not(:disabled):hover { border-color: var(--teal); background: rgba(62, 124, 123, 0.65); }

.seat.cat-b { background: rgba(212, 165, 61, 0.32); border-color: rgba(212, 165, 61, 0.65); }
.seat.cat-b:not(:disabled):hover { border-color: var(--gold); background: rgba(212, 165, 61, 0.52); }

.seat.cat-c { background: rgba(161, 67, 56, 0.42); border-color: rgba(161, 67, 56, 0.72); }
.seat.cat-c:not(:disabled):hover { border-color: var(--terra); background: rgba(161, 67, 56, 0.62); }

.seat.selected {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #3d1800;
}
.seat:disabled {
  background: rgba(243, 237, 224, 0.03) !important;
  border-color: rgba(243, 237, 224, 0.07) !important;
  cursor: not-allowed;
  opacity: 0.5;
}

/* Summary sidebar */
.ticket-summary {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  position: sticky;
  top: 80px;
}
.ticket-summary h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: var(--cream-muted);
  margin-bottom: 8px;
}
.summary-seat-list {
  font-size: 13px;
  color: var(--cream-muted);
  min-height: 20px;
  margin-bottom: 12px;
  line-height: 1.72;
}
.summary-seat-list.empty { color: rgba(180, 171, 153, 0.45); font-style: italic; }

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: 6px;
}
.summary-total .label { font-size: 14px; font-weight: 600; color: var(--cream); }
.summary-total .amount {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}
.hold-timer {
  display: none;
  margin: 12px 0;
  font-size: 12px;
  color: #E8C06A;
  background: rgba(212, 165, 61, 0.08);
  border: 1px solid rgba(212, 165, 61, 0.18);
  border-radius: 8px;
  padding: 8px 12px;
  line-height: 1.5;
}
.checkout-btn {
  width: 100%;
  margin-top: 16px;
  padding: 13px;
  border-radius: 9px;
  border: none;
  background: var(--gold);
  color: #3d1800;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.checkout-btn:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,165,61,0.28);
}
.checkout-btn:disabled {
  background: rgba(212, 165, 61, 0.13);
  color: rgba(212, 165, 61, 0.38);
  cursor: not-allowed;
}
.checkout-note {
  display: none;
  margin-top: 12px;
  font-size: 13px;
  color: var(--teal-light);
  background: rgba(62, 124, 123, 0.09);
  border: 1px solid rgba(62, 124, 123, 0.22);
  border-radius: 8px;
  padding: 10px 14px;
  line-height: 1.58;
}

/* Ticket layout responsive */
@media (max-width: 920px) {
  .ticket-layout { grid-template-columns: 1fr; }
  .ticket-summary { position: static; }
}

/* ============================================================
   RESPONSIVE — general
   ============================================================ */
@media (max-width: 820px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .hero { min-height: 72vh; }
  .hero-stats { gap: 24px; margin-top: 40px; padding-top: 28px; }
  .festivals-grid { grid-template-columns: 1fr; }
  .org-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; border-radius: 14px; }
}
@media (max-width: 560px) {
  .events-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .seat-card { padding: 16px; }
  .ticket-summary { padding: 16px; }
}

/* === E-mail polje u sažetku narudžbine === */
.email-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.email-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.email-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--cream);
  font-family: inherit;
  font-size: 0.92rem;
  padding: 10px 12px;
  outline: none;
  transition: border-color .2s;
}
.email-input:focus {
  border-color: var(--gold);
}
.email-input::placeholder { color: var(--cream-muted); opacity: .6; }

/* === Notifikacioni baner === */
.notif-banner {
  border-radius: 6px;
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 12px;
  padding: 10px 14px;
}
.notif-error {
  background: rgba(161, 67, 56, 0.22);
  border: 1px solid rgba(161, 67, 56, 0.55);
  color: #f0a99f;
}
.notif-ok {
  background: rgba(62, 124, 123, 0.22);
  border: 1px solid rgba(62, 124, 123, 0.55);
  color: #9fd4d3;
}
