*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0E0C0A;
  --surface:  #161310;
  --surface2: #1E1A16;
  --surface3: #252019;
  --cream:    #F0E8DA;
  --ink:      #F0E8DA;
  --muted:    #8A8078;
  --border:   rgba(255,255,255,0.08);
  --accent:   #C8401E;
  --gold:     #D4A843;
  --gold-dim: rgba(212,168,67,0.15);
  --teal:     #2A7A6B;
  --pad:      clamp(1rem, 4vw, 3rem);
  --max:      1100px;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  padding: 0 var(--pad); height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(14,12,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.65rem; font-weight: 700;
  color: var(--cream); letter-spacing: -0.3px;
}

.nav-logo em { font-style: normal; color: var(--gold); }

.nav-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.6);
  cursor: pointer; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--sans); transition: all 0.2s;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-back:hover {
  color: var(--cream);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}

/* ── HERO ── */
.event-hero {
  width: 100%;
  height: 65vh;
  min-height: 380px;
  max-height: 680px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  margin-top: 68px;
}

.event-hero img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.event-hero-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #100800 0%, #1E1206 40%, #080E18 100%);
  display: flex; align-items: center; justify-content: center;
}

.event-hero-placeholder svg { opacity: 0.08; }

/* Gradient overlay na hero */
.event-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(14,12,10,0.2) 0%, rgba(14,12,10,0) 35%, rgba(14,12,10,0.85) 100%),
    linear-gradient(to right, rgba(14,12,10,0.4) 0%, transparent 60%);
}

/* Zlatna linija ispod heroa */
.hero-gold-line {
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0.6;
}

/* ── CONTENT ── */
.content-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem var(--pad) 6rem;
}

/* ── EVENT HEADER ── */
.event-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.event-cat {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 999px;
  background: rgba(212,168,67,0.08);
}

.event-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--cream);
  margin-bottom: 1rem;
}

.past-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(200,64,30,0.12);
  border: 1px solid rgba(200,64,30,0.3);
  color: #E07060;
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── INFO GRID ── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.info-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  transition: border-color 0.22s, transform 0.22s;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.22s;
}

.info-card:hover {
  border-color: rgba(212,168,67,0.25);
  transform: translateY(-2px);
}

.info-card:hover::before { opacity: 1; }

.info-card-price {
  border-color: rgba(212,168,67,0.2);
  background: linear-gradient(135deg, var(--surface2), rgba(212,168,67,0.05));
}

.info-card-price::before { opacity: 0.5; }

.info-card-inner { display: flex; flex-direction: column; gap: 0.6rem; }

.info-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 0.45rem;
}

.info-label svg { color: var(--gold); opacity: 0.7; flex-shrink: 0; }

.info-value {
  font-family: var(--serif);
  font-size: 1.55rem; font-weight: 700;
  color: var(--cream); line-height: 1.15;
}

.price-value {
  font-size: 3rem !important;
  color: var(--gold) !important;
  letter-spacing: -0.5px;
}

.price-value.price-free {
  color: #5DBD8A !important;
  font-size: 1.9rem !important;
}

.price-value.price-tba {
  color: var(--muted) !important;
  font-style: italic;
  font-size: 1.3rem !important;
}

.info-sub {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.maps-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--gold); margin-top: 0.35rem;
  transition: opacity 0.2s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.maps-link:hover { opacity: 0.65; }

/* ── OPIS ── */
.description-section {
  margin-bottom: 4rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.description-header {
  padding: 1.1rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: rgba(212,168,67,0.06);
  display: flex; align-items: center; gap: 0.6rem;
}

.section-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}

.description-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(240,232,218,0.85);
  padding: 1.75rem;
  white-space: pre-line;
}

/* ── DRUGI DOGAĐAJI ── */
.other-events {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.other-title {
  font-family: var(--serif);
  font-size: 1.9rem; font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--cream); margin-bottom: 1.5rem;
}

.other-title span { color: var(--gold); font-style: italic; }

.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.other-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; cursor: pointer;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}

.other-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,67,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.other-card-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; display: block;
}

.other-card-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #100800, #1A1008);
  display: flex; align-items: center; justify-content: center;
}

.other-card-body { padding: 1rem 1.15rem 1.25rem; }

.other-card-cat {
  font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.35rem; opacity: 0.8;
}

.other-card-title {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 700;
  color: var(--cream); line-height: 1.2; margin-bottom: 0.4rem;
}

.other-card-meta {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.5rem var(--pad);
}

.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
  gap: 1.25rem; text-align: center;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 700;
  color: var(--cream); width: 100%;
}

.footer-logo em { font-style: normal; color: var(--gold); }

.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; justify-content: center; }

.footer-links a {
  font-size: 0.75rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--cream); }

.footer-copy {
  width: 100%; font-size: 0.7rem;
  color: rgba(255,255,255,0.18); text-align: center;
  margin-top: 0.5rem;
}

/* ── LOADING ── */
.loading {
  text-align: center; padding: 5rem;
  color: var(--muted); font-size: 1rem;
}

/* ── ANIMACIJE ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.event-hero   { animation: fadeUp 0.45s ease both; }
.content-wrap { animation: fadeUp 0.5s 0.1s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .event-hero { height: 48vh; min-height: 280px; }
  .info-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .other-grid { grid-template-columns: 1fr 1fr; }
  .description-text { padding: 1.35rem; font-size: 1rem; }
  .description-header { padding: 0.9rem 1.35rem; }
  .event-title { letter-spacing: -1px; }
  .info-value { font-size: 1.35rem; }
  .price-value { font-size: 1.9rem !important; }
}

@media (max-width: 480px) {
  .event-hero { height: 40vh; min-height: 240px; }
  .other-grid { grid-template-columns: 1fr; }
  .info-card { padding: 1.2rem 1.35rem; }
  .info-value { font-size: 1.25rem; }
  .price-value { font-size: 1.7rem !important; }
  .other-title { font-size: 1.6rem; }
  .description-text { font-size: 0.95rem; line-height: 1.8; }
}


.share-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(212,168,67,0.3);
  background: rgba(212,168,67,0.08);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.share-btn:hover {
  background: rgba(212,168,67,0.15);
  border-color: var(--gold);
}