/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0b1c2d;
  --navy-mid:  #122440;
  --navy-lt:   #1a3356;
  --gold:      #c49a3c;
  --gold-lt:   #ddb84e;
  --white:     #ffffff;
  --off-white: #f4f5f7;
  --text:      #1e2a38;
  --text-muted:#5a6a7a;
  --border:    rgba(196,154,60,.25);
  --radius:    6px;
  --trans:     .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

html { overflow-x: hidden; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15;
  color: inherit;
}

h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-tag.light { color: var(--gold-lt); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { color: var(--navy); margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,60,.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* ===== CONTAINER ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== REVEAL ANIMATION ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* =====================
   NAVIGATION
===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1rem 0;
  transition: background var(--trans), padding var(--trans), backdrop-filter var(--trans);
}
#navbar.scrolled {
  background: rgba(11,28,45,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-logo img {
  width: 100px;
  height: 52px;
  object-fit: contain;
  filter:
    drop-shadow(1px 0 0 #fff)
    drop-shadow(-1px 0 0 #fff)
    drop-shadow(0 1px 0 #fff)
    drop-shadow(0 -1px 0 #fff);
}
.nav-logo-text {
  transition: opacity .35s ease;
}
/* Na početnoj (hero) — tekst logoa skriven na vrhu, pojavi se kad se skroluje */
body.has-hero #navbar:not(.scrolled) .nav-logo-text {
  opacity: 0;
  visibility: hidden;
}
.nav-logo-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: .04em;
}
.nav-logo-text span {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-link {
  position: relative;
  padding: .5rem .9rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--trans);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  color: var(--gold) !important;
  font-weight: 600 !important;
  margin-left: .5rem;
}
.nav-cta:hover { color: var(--gold-lt) !important; }

/* Brzo pozivanje — samo na mobilnom meniju */
.nav-call { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
  background: var(--navy);
}
/* Tamni preliv preko slajdšoua — da se beli tekst lepo čita */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8,21,34,.92) 0%, rgba(8,21,34,.72) 38%, rgba(8,21,34,.32) 70%, rgba(8,21,34,.15) 100%),
    linear-gradient(0deg, rgba(8,21,34,.55) 0%, transparent 35%);
}
/* Dekorativni zlatni sjaj u pozadini */
.hero-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 680px; max-height: 680px;
  top: -12%; right: -10%;
  background: radial-gradient(circle, rgba(196,154,60,.22) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== TEKST ===== */
.hero-text { color: var(--white); max-width: 620px; }
.hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: fadeUp .8s .15s forwards;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}
.hero-title span { color: var(--gold); display: block; }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp .8s .45s forwards;
}

/* ===== ČIPOVI USLUGA ===== */
/* Spisak ponude — obična slova (NE dugmad), bez okvira/svetljenja */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.6rem;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeUp .8s .6s forwards;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(255,255,255,.88);
}
.hero-chips li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .75s forwards;
}

/* ===== SLAJDŠOU KAO POZADINA (slika preko celog ekrana, bez sečenja) ===== */
.slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  will-change: opacity;
}
.slide.active { opacity: 1; }
.slide-img {
  position: absolute;
  inset: 0;
  background-image: none;     /* prava slika je na ::after; URL sa inline stila se nasleđuje */
  transform: scale(1.08);     /* mirno stanje = kraj zooma → nema "skoka" pri prelazu */
  will-change: transform;
}
/* DONJI sloj: zamućeno punilo (vidi se samo kad je slika "contain" — telefon) */
.slide-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(22px) brightness(.6) saturate(1.05);
  transform: scale(1.1);
}
/* GORNJI sloj: OŠTRA slika — puni ceo ekran (desktop full-screen) */
.slide-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide.active .slide-img { animation: kenBurns 9s linear forwards; }

@keyframes kenBurns { from { transform: scale(1); } to { transform: scale(1.08); } }

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-arrow {
  width: 28px;
  height: 28px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* =====================
   ABOUT
===================== */
.about {
  padding: 7rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-tag { color: var(--gold); }
.about-text h2 { color: var(--navy); margin-bottom: 1.5rem; }
.about-text .lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: .9rem; }

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196,154,60,.2);
}
.stat { display: flex; flex-direction: column; gap: .2rem; }
.stat strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat span { font-size: .8rem; font-weight: 500; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; }

.about-images { position: relative; }
.about-img-main {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(11,28,45,.18);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.about-img-main:hover img { transform: scale(1.04); }

.about-img-small {
  position: absolute;
  bottom: -2.5rem;
  left: -2rem;
  width: 55%;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 4px solid var(--white);
  box-shadow: 0 12px 40px rgba(11,28,45,.25);
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.about-img-small:hover img { transform: scale(1.04); }

/* =====================
   SERVICES
===================== */
.services {
  position: relative;
  padding: 7.5rem 0;
  background: var(--navy);
  overflow: hidden;
}
/* Ambijentalna pozadina — suptilni zlatni sjaj + dubina */
.services-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(55% 45% at 12% 0%, rgba(196,154,60,.12) 0%, transparent 60%),
    radial-gradient(50% 55% at 100% 100%, rgba(26,51,86,.55) 0%, transparent 60%);
}
.services .container { position: relative; z-index: 1; }
.services .section-header h2 { color: var(--white); }
.services .section-header p { color: rgba(255,255,255,.6); }

/* ===== USLUGE: interaktivna lista (akordeon) ===== */
.svc-list {
  max-width: 960px;
  margin: 3.25rem auto 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.svc-item { border-bottom: 1px solid rgba(255,255,255,.12); }

.svc-head {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.6rem .25rem;
  cursor: pointer;
  user-select: none;
}
.svc-head:hover .svc-title { color: var(--gold-lt); }
.svc-head:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 6px; }

.svc-ico {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(196,154,60,.10);
  border: 1px solid rgba(196,154,60,.22);
  transition: background .4s ease, border-color .4s ease;
}
.svc-ico svg { width: 22px; height: 22px; stroke: var(--gold-lt); }

.svc-title {
  flex: 1;
  color: rgba(255,255,255,.92);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: color .4s ease;
}

/* +/- indikator desno */
.svc-toggle { position: relative; width: 26px; height: 26px; flex-shrink: 0; }
.svc-toggle::before, .svc-toggle::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
}
.svc-toggle::before { top: 50%; left: 3px; right: 3px; height: 2px; transform: translateY(-50%); }
.svc-toggle::after  { left: 50%; top: 3px; bottom: 3px; width: 2px; transform: translateX(-50%); }

/* Otvoreno stanje */
.svc-item.open .svc-title { color: var(--gold-lt); }
.svc-item.open .svc-ico { background: rgba(196,154,60,.22); border-color: rgba(196,154,60,.5); }
.svc-item.open .svc-toggle::after { transform: translateX(-50%) scaleY(0); opacity: 0; }   /* + -> - */

/* Panel koji se otvara */
.svc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s cubic-bezier(.4,0,.2,1);
}
.svc-item.open .svc-panel { max-height: 640px; }
.svc-panel-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.25rem;
  align-items: center;
  padding: .25rem .25rem 2.4rem 3.85rem;   /* uvučeno ispod naslova */
}
.svc-panel-inner p {
  color: rgba(255,255,255,.66);
  font-size: 1rem;
  line-height: 1.85;
}
.svc-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 22px 48px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s ease;
}
.svc-item.open .svc-img img { transform: scale(1.04); }

/* =====================
   GALLERY
===================== */
.gallery { padding: 7rem 0; background: var(--off-white); }
.gallery .section-header h2 { color: var(--navy); }

.gallery-filters {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: .55rem 1.4rem;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  background: transparent;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--trans);
  letter-spacing: .03em;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.gallery-grid {
  columns: 4;
  column-gap: 1rem;
}
.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,28,45,.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--trans);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: .8rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .04em;
}

.gallery-item.hidden {
  display: none;
}
.gallery-item.fade-in {
  animation: galleryFade .4s ease forwards;
}
@keyframes galleryFade {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Bela štrafta koja deli sekcije */
.section-divider {
  height: 4px;
  background: var(--white);
}

/* =====================
   GALERIJA — CTA na početnoj
===================== */
.gallery-cta {
  position: relative;
  padding: 7.5rem 0;
  overflow: hidden;
  background: var(--navy);
}
.gallery-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.gallery-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11,28,45,.86) 0%, rgba(8,21,34,.93) 100%);
}
.gallery-cta .container { position: relative; z-index: 1; }
.gallery-cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.gallery-cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.gallery-cta-inner p {
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* =====================
   GALERIJA — stranica (arhiva po kategorijama)
===================== */
.gallery-page-header {
  padding: 9.5rem 0 3rem;
  background: var(--navy);
  text-align: center;
}
.gallery-page-header .section-tag { color: var(--gold-lt); }
.gallery-page-header h1 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: .6rem 0 1rem;
}
.gallery-page-header p {
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
/* Plutajuće dugme "na vrh" — samo na telefonu, na stranici galerije */
.to-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: none;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  box-shadow: 0 6px 22px rgba(0,0,0,.35);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
}
.to-top svg { width: 22px; height: 22px; }
.to-top:hover { background: var(--gold-lt); }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }

.gallery-archive { padding: 4rem 0 6rem; background: var(--off-white); }
.gal-cat { padding: 2.5rem 0; }
.gal-cat-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.gal-cat-head h2 {
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 600;
  white-space: nowrap;
}
.gal-cat-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--border) 100%);
}

/* Uvodni tekst sekcije galerije */
.gal-cat-intro {
  color: #54657a;
  max-width: 720px;
  margin: -1rem 0 1.8rem;
  line-height: 1.7;
  font-size: .95rem;
}

/* Restauracija — niz „korak po korak" (uredan grid umesto masonry) */
.gallery-seq {
  columns: unset;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-seq .gallery-item { margin-bottom: 0; }
.gallery-seq .gallery-item img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}
.gallery-seq .gallery-overlay { opacity: 1; }
.gallery-seq .gallery-overlay span { font-size: .78rem; }
.seq-num {
  position: absolute;
  top: .6rem;
  left: .6rem;
  z-index: 2;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .82rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
@media (max-width: 900px) { .gallery-seq { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-seq { grid-template-columns: repeat(2, 1fr); } }

/* =====================
   WINTER STORAGE
===================== */
.winter-storage {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.ws-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(.25);
}
.ws-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,28,45,.9) 0%, rgba(11,28,45,.7) 100%);
}
.ws-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--white);
}
.ws-content h2 { color: var(--white); font-size: clamp(2.2rem,5vw,3.5rem); margin-bottom: 1.25rem; }
.ws-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.25rem;
}
.ws-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: 2.5rem;
}
.ws-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.ws-features svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; margin-top: .15rem; }

/* =====================
   CONTACT
===================== */
.contact { padding: 7rem 0; background: var(--white); }
.contact .section-header h2 { color: var(--navy); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: stretch;
  min-height: 480px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}
.contact-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(196,154,60,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.contact-item-text h4 { font-size: .85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .3rem; }
.contact-item-text a { font-size: 1.1rem; font-weight: 600; color: var(--navy); transition: color var(--trans); }
.contact-item-text a:hover { color: var(--gold); }
.contact-item-text p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

.contact-logo-wrap {
  margin-top: auto;
  padding: 1rem;
  background: var(--off-white);
  border-radius: 10px;
  display: flex;
  justify-content: center;
}
.contact-logo-wrap img { width: 220px; height: auto; }

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(11,28,45,.12);
  min-height: 420px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; }

/* =====================
   FOOTER
===================== */
.footer {
  background: var(--navy);
  padding: 4rem 0 0;
  color: rgba(255,255,255,.65);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: start;
}
.footer-brand img { width: 130px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand p { font-size: .85rem; line-height: 1.7; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .85rem;
}
.footer-contact a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--trans);
}
.footer-contact a:hover { color: var(--gold-lt); }
.footer-contact p { color: rgba(255,255,255,.5); line-height: 1.6; }

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* =====================
   LIGHTBOX
===================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lb-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lbImg {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}
.lb-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  letter-spacing: .04em;
  text-align: center;
  white-space: nowrap;
}
.lb-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--trans), transform var(--trans);
  z-index: 10;
}
.lb-close:hover { color: var(--white); transform: scale(1.15); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--trans);
  z-index: 10;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.18); }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .gallery-grid { columns: 3; }
  .about-grid { gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 300px; }

  /* ZIMOVNIK na telefonu -> bez slike, samo teget pozadina + tekst (na kompu slika ostaje) */
  .winter-storage { padding: 4.5rem 0; background: var(--navy); }
  .ws-bg, .ws-overlay { display: none; }
  .ws-features { grid-template-columns: 1fr; gap: 1rem; }

  /* HERO na telefonu -> slika gore (puni prostor), tekst ispod na punoj podlozi */
  .hero {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: auto;
    padding: 0;
    background: var(--navy);
  }
  .slideshow {
    position: relative;       /* iz pozadine -> deo toka, gornji blok */
    width: 100%;
    aspect-ratio: 4 / 3;      /* = odnos slika → cover puni boks identično, BEZ sečenja, sve iste */
    flex-shrink: 0;
  }
  /* slika ostaje cover (default) → ide do samog vrha pod transparentan header */
  .hero-glow { display: none; }
  /* Vrh: blago zatamnjenje da se beli logo/meni čita. Dno: preliv u plavo (spoj sa tekstom). */
  .hero-scrim {
    inset: 0 0 auto 0;
    height: 75vw;             /* = visina 4:3 boksa pri punoj širini */
    background:
      linear-gradient(180deg, rgba(8,21,34,.55) 0%, rgba(8,21,34,.12) 16%, transparent 30%),
      linear-gradient(0deg, var(--navy) 0%, rgba(11,28,45,.25) 22%, transparent 46%);
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 100%;
    background: var(--navy);
    padding: 2.25rem 1.5rem 3rem;
  }
  .hero-text { max-width: 100%; }
  .hero-scroll { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; position: relative; z-index: 1001; }

  /* Na telefonu navbar bez blur-a kad je skrolovan. Blur (backdrop-filter)
     pravi "okvir sadržavanja" koji zarobi fiksni meni i izaziva trzaj/treperenje
     pri otvaranju. Pun navy izgleda isto, a meni klizi glatko. */
  #navbar.scrolled {
    background: rgba(11,28,45,.97);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  /* Moderan meni preko celog ekrana */
  .nav-links {
    position: fixed;
    inset: 0;
    margin: 0;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: .35rem;
    padding: 5.5rem 1.75rem 2.5rem;
    background: linear-gradient(165deg, #0b1c2d 0%, #07121e 100%);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .5s cubic-bezier(.16,.84,.44,1), opacity .4s ease, visibility .5s;
    z-index: 950;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); opacity: 1; visibility: visible; }

  /* Stavke ulaze jedna po jedna */
  .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .45s ease, transform .45s ease;
  }
  .nav-links.open li { opacity: 1; transform: none; }
  .nav-links.open li:nth-child(1) { transition-delay: .10s; }
  .nav-links.open li:nth-child(2) { transition-delay: .16s; }
  .nav-links.open li:nth-child(3) { transition-delay: .22s; }
  .nav-links.open li:nth-child(4) { transition-delay: .28s; }
  .nav-links.open li:nth-child(5) { transition-delay: .34s; }
  .nav-links.open li:nth-child(6) { transition-delay: .42s; }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    padding: 1.05rem .35rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    letter-spacing: .015em;
  }
  .nav-link::after { display: none; }
  .nav-link:active { color: var(--gold-lt); }

  /* Kontakt kao puno zlatno dugme */
  .nav-cta {
    justify-content: center;
    margin-top: 1.5rem;
    padding: 1.05rem 1.25rem !important;
    color: var(--navy) !important;
    background: linear-gradient(135deg, var(--gold-lt), var(--gold));
    border-radius: 999px;
    border-bottom: none;
    box-shadow: 0 10px 28px rgba(196,154,60,.35);
    font-weight: 700 !important;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 1.05rem;
  }

  /* Brzo pozivanje na dnu menija */
  .nav-call { display: block; margin-top: 1.1rem; text-align: center; }
  .nav-call-link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: .02em;
  }
  .nav-call-link svg { color: var(--gold); }

  body.menu-open { overflow: hidden; }

  .gallery-grid { columns: 2; }
  .gal-cat-head h2 { white-space: normal; }
  .footer-inner { grid-template-columns: 1fr; }
  /* Usluge: slika ispod teksta, manji naslovi, plići uvuk */
  .svc-title { font-size: 1.1rem; }
  .svc-head { gap: .85rem; padding: 1.3rem .25rem; }
  .svc-panel-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 .25rem 1.9rem .25rem;
  }
  .svc-item.open .svc-panel { max-height: 900px; }
  .about-stats { gap: 1.5rem; }
  .hero-title { font-size: clamp(2.3rem, 9vw, 3.4rem); }
  .hero-sub { font-size: 1rem; }
  .hero-chips li { font-size: .9rem; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-stats { flex-wrap: wrap; gap: 1.25rem; }
  .ws-features { grid-template-columns: 1fr; }
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
}
