/* =============================================
   LIVING ROOM 21 — Global Stylesheet
   Dark theme · Karla font · Accent #BB923A
   ============================================= */

/* ---------- CSS VARIABLES ---------- */
:root {
  --accent:       #BB923A;
  --accent-light: #d4a94e;
  --accent-dark:  #9a7528;
  --bg:           #0f0f0f;
  --bg-2:         #161616;
  --bg-3:         #1e1e1e;
  --bg-card:      #1a1a1a;
  --border:       #2a2a2a;
  --text:         #e8e8e8;
  --text-muted:   #a0a0a0;
  --text-light:   #ffffff;
  --font:         'Karla', sans-serif;
  --radius:       12px;
  --radius-sm:    6px;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-card:  0 2px 16px rgba(0,0,0,0.4);
  --transition:   0.35s ease;
  --nav-h:        72px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.accent { color: var(--accent); }
.section { padding: 100px 0; }

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--accent-light); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: 20px;
}
.section-title.light { color: #fff; }

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.05rem;
}
.section-body {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.section-body.light { color: rgba(255,255,255,0.75); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.04em;
}
.btn-primary {
  background: var(--accent);
  color: #0f0f0f;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(187,146,58,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #0f0f0f;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border-color: var(--border);
  padding: 12px 26px;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--accent);
  color: #0f0f0f;
  border-color: var(--accent);
  padding: 10px 22px;
  font-size: 0.875rem;
}
.btn-nav:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.0) 100%
  );
  z-index: -1;
  pointer-events: none;
  transition: opacity var(--transition);
}
.navbar.scrolled::after {
  opacity: 0;
}
.navbar.scrolled {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.logo span { color: var(--accent); }
.logo em {
  font-style: normal;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links .btn-nav::after { display: none; }
.nav-links .btn-nav { color: #0f0f0f; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img { object-position: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.65) 50%,
    rgba(10,10,10,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.br-hide { display: block; }

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  70%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* =============================================
   ABOUT SNAP
   ============================================= */
.about-snap.bg-dark  { background: var(--bg); }
.about-snap.bg-light { background: var(--bg-2); }

.about-snap-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-snap-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.about-snap-img img { height: 100%; }
.about-badge {
  position: absolute;
  bottom: 28px; right: -20px;
  background: var(--accent);
  color: #0f0f0f;
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 800;
  box-shadow: var(--shadow);
  min-width: 90px;
}
.badge-num {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
}
.badge-txt {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-snap-text { display: flex; flex-direction: column; align-items: flex-start; }

/* =============================================
   MENU FEATURED
   ============================================= */
.menu-feat { background: var(--bg); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}
.menu-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(187,146,58,0.15);
  border-color: var(--accent);
}
.menu-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.menu-card-img img { transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: #0f0f0f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}
.menu-card-body { padding: 20px 22px 24px; }
.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}
.menu-card-top h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
}
.menu-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.menu-price em { font-style: normal; font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }
.menu-card-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.menu-feat-cta { text-align: center; }

/* =============================================
   PLAYROOM TEASER
   ============================================= */
.playroom-teaser {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.playroom-bg {
  position: absolute;
  inset: 0;
}
.playroom-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.80) 60%,
    rgba(10,10,10,0.60) 100%
  );
}
.playroom-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.playroom-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin: 32px 0 40px;
}
.play-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* =============================================
   GALLERY SLIDER
   ============================================= */
.gallery-section { background: var(--bg-2); overflow: hidden; }


.slider-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}
.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  padding: 0 5%;
  will-change: transform;
  cursor: grab;
}
.slider-track:active { cursor: grabbing; }

.slide {
  flex: 0 0 calc(33.333% - 14px);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}
.slide img {
  transition: transform 0.5s ease;
}
.slide:hover img {
  transform: scale(1.05);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,15,15,0.85);
  border: 1px solid var(--border);
  color: var(--text-light);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.slider-btn:hover {
  background: var(--accent);
  color: #0f0f0f;
  border-color: var(--accent);
}
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* =============================================
   BOOK BANNER
   ============================================= */
.book-banner {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.book-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.book-banner-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}
.book-banner-text p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 12px;
}
.book-banner-text address {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}
.book-banner-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 14px; display: inline-block; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }
.footer-links h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
}
.footer-links a,
.footer-links p {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.social-links { display: flex; gap: 14px; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-links a svg { width: 18px; height: 18px; }
.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.footer-bottom {
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =============================================
   SVG OUTLINE ICONS
   ============================================= */
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon * {
  fill: none;
  stroke: inherit;
}

/* Ikone u play-feat-item */
.play-feat-item .icon {
  width: 20px;
  height: 20px;
}

/* Ikone u value-card */
.value-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(187,146,58,0.08);
  border: 1px solid rgba(187,146,58,0.2);
  border-radius: var(--radius-sm);
  padding: 10px;
}
.value-icon .icon {
  width: 22px;
  height: 22px;
}

/* Ikone u hours-card */
.hours-card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.hours-card-icon .icon {
  width: 26px;
  height: 26px;
}

/* =============================================
   CHECK LIST
   ============================================= */
.check-list {
  margin: 20px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.check-list li svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.55) 60%,
    rgba(10,10,10,0.35) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
}

/* =============================================
   VALUES / FEATURES GRID
   ============================================= */
.values-section.bg-dark  { background: var(--bg); }
.values-section.bg-light { background: var(--bg-2); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}
.value-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* =============================================
   AMBIJENT (About page)
   ============================================= */
.ambijent-section.bg-dark { background: var(--bg); }

.ambijent-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ambijent-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.ambijent-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ambijent-img.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.ambijent-img img { height: 100%; }

/* =============================================
   RADNO VREME (About page)
   ============================================= */
.hours-section.bg-light { background: var(--bg-2); }

.hours-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.hours-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hours-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color var(--transition);
}
.hours-card.accent-card {
  border-color: var(--accent);
  background: rgba(187,146,58,0.07);
}
.hours-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}
.hours-time {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}
.hours-note { font-size: 0.82rem; color: var(--text-muted); }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up    { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left  { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible,
.fade-left.visible,
.fade-right.visible { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about-snap-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-badge { right: 20px; }
  .about-snap-img { max-width: 500px; aspect-ratio: 16/9; }
  .ambijent-inner { grid-template-columns: 1fr; gap: 50px; }
  .hours-inner { grid-template-columns: 1fr; gap: 40px; }
  .hours-cards { grid-template-columns: 1fr 1fr; }
  .slide { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(15,15,15,0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 24px 0 32px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    padding: 14px 0;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
  .nav-links a::after { display: none; }
  .nav-links .btn-nav { margin-top: 8px; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .br-hide { display: none; }
  .section { padding: 72px 0; }
  .slide { flex: 0 0 calc(80% - 10px); }
  .book-banner-inner { flex-direction: column; text-align: center; }
  .book-banner-ctas { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hours-cards { grid-template-columns: 1fr; }
  .ambijent-img-grid { grid-template-columns: 1fr; }
  .ambijent-img.tall { aspect-ratio: 4/3; grid-row: span 1; }
  .page-hero { min-height: 45vh; padding-bottom: 60px; }
}
@media (max-width: 520px) {
  .menu-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
}

/* =============================================
   TYPING HERO
   ============================================= */
.typing-wrap {
  display: inline-block;
  min-height: 1.2em;
}
.typing-text {
  color: var(--accent);
}
.typing-cursor {
  display: inline-block;
  color: var(--accent);
  font-weight: 300;
  animation: blink 0.8s step-end infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* =============================================
   HERO FLOATING BADGES
   ============================================= */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(187,146,58,0.3);
  border-radius: var(--radius);
  padding: 14px 20px;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}
.hero-badge .icon {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}
.hero-badge div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.hero-badge strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-light);
}
.hero-badge span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.hero-badge--1 {
  bottom: 120px;
  right: 8%;
  animation-delay: 0s;
}
.hero-badge--2 {
  bottom: 220px;
  right: 8%;
  animation-delay: 1.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@media (max-width: 768px) {
  .hero-badge { display: none; }
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-wrapper {
  background: var(--accent);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f0f0f;
  padding: 0 24px;
  white-space: nowrap;
}
.marquee-dot {
  color: rgba(0,0,0,0.4) !important;
  padding: 0 4px !important;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   MENU CARD 3D HOVER
   ============================================= */
.menu-card {
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.15s ease, box-shadow var(--transition), border-color var(--transition);
  will-change: transform;
}
.menu-card:hover {
  box-shadow: 0 20px 48px rgba(187,146,58,0.2);
  border-color: var(--accent);
}

/* =============================================
   REVEAL ANIMATIONS — poboljšani
   ============================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* =============================================
   INSTAGRAM SECTION
   ============================================= */
.instagram-section { background: var(--bg-2); }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
  margin-bottom: 40px;
}
.insta-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  background: var(--bg-card);
}
.insta-item--wide {
  grid-column: span 2;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-item:hover img {
  transform: scale(1.06);
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(187,146,58,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-overlay .icon {
  width: 36px;
  height: 36px;
  stroke: #fff;
}
.insta-item:hover .insta-overlay {
  opacity: 1;
}
.instagram-cta {
  text-align: center;
}

/* =============================================
   ADDRESS LINE
   ============================================= */
.address-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.address-line .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* =============================================
   INSTAGRAM RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }
  .insta-item--wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 160px);
  }
}