.elementor-16 .elementor-element.elementor-element-4bdd323{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-16 .elementor-element.elementor-element-5304c9b{width:100%;max-width:100%;padding:0px 0px 0px 0px;}.elementor-16 .elementor-element.elementor-element-8ba1c70{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-16 .elementor-element.elementor-element-c304439{width:100%;max-width:100%;padding:0px 0px 0px 0px;}.elementor-16 .elementor-element.elementor-element-21ca444{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-16 .elementor-element.elementor-element-2f21f65{width:100%;max-width:100%;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-5304c9b *//* ============================================================
   LIJEŠNICA – STICKY SHRINKING HEADER
   Ubaci u: Elementor Pro → Site Settings → Custom CSS
   ============================================================ */

/* Učitava Poppins font s Googlea – potreban za tekst menija i widgeta */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


/* ============================================================
   VARIJABLE – sve važne vrijednosti su ovdje na jednom mjestu.
   Mijenjaj samo ove brojeve, ostatak CSS-a se automatski prilagodi.
   ============================================================ */
:root {
  --ljes-bg-top:        #ffffff;   /* boja pozadine headera dok si NA VRHU stranice (bijela) */
  --ljes-bg-scrolled:   #2D8545;   /* boja pozadine headera kad SKROLAŠ dolje (zelena) */
  --ljes-text-top:      #1a1a1a;   /* boja teksta menija dok si na vrhu (tamno siva/crna) */
  --ljes-text-scrolled: #ffffff;   /* boja teksta menija na zelenom headeru (bijela) */
  --ljes-accent:        #e07b00;   /* naglasna boja – koristi se za underline pointer (narančasta) */

  --ljes-logo-h-top:    120px;     /* visina loga dok si NA VRHU stranice */
  --ljes-logo-h-sm:     80px;      /* visina loga nakon što SKROLAŠ – logo se skupi */

  --ljes-header-h-top:  120px;     /* visina cijelog headera dok si NA VRHU stranice */
  --ljes-header-h-sm:   92px;      /* visina cijelog headera nakon što SKROLAŠ – header se skupi */

  --ljes-ease:          0.38s cubic-bezier(0.4, 0, 0.2, 1); /* brzina i krivulja svih animacija */
  --ljes-shadow-top:    0 2px 16px rgba(0,0,0,0.07);        /* sjena ispod headera na vrhu – jedva vidljiva */
  --ljes-shadow-sm:     0 4px 28px rgba(0,0,0,0.14);        /* sjena ispod headera kad je smanjen – malo jača */
}


/* ============================================================
   HEADER WRAPPER – glavni okvir cijelog headera
   ============================================================ */
#ljes-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ljes-bg-top);
  height: var(--ljes-header-h-top);
  box-shadow: var(--ljes-shadow-top);
  transition:
    background var(--ljes-ease),
    height     var(--ljes-ease),
    box-shadow var(--ljes-ease);
  will-change: background, height;
}

#ljes-header.ljes-scrolled {
  background: var(--ljes-bg-scrolled);
  height:     var(--ljes-header-h-sm);
  box-shadow: var(--ljes-shadow-sm);
}


/* ============================================================
   INNER LAYOUT
   ============================================================ */
.ljes-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 16px;                   /* smanjen gap da stane sve u red */
}


/* ============================================================
   LOGO
   ============================================================ */
.ljes-logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  outline: none;
}

.ljes-logo-link img {
  height: var(--ljes-logo-h-top);
  width: auto;
  display: block;
  transition: height var(--ljes-ease), opacity 0.25s, filter var(--ljes-ease);
}

.ljes-logo-link:hover img {
  opacity: 0.82;
}

#ljes-header.ljes-scrolled .ljes-logo-link img {
  height: var(--ljes-logo-h-sm);
  filter: brightness(0) invert(1);
}


/* ============================================================
   DESKTOP NAVIGACIJA
   ============================================================ */
.ljes-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;                      /* bez gap-a – padding na linkovima je dovoljan */
  flex-shrink: 1;
}

.ljes-nav li {
  position: relative;
}

.ljes-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;             /* originalni font – nije mijenjan */
  font-weight: 500;
  letter-spacing: 0.08em;      /* originalni letter-spacing */
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--ljes-text-top);
  padding: 10px 14px;          /* malo smanjen samo padding (18→14) da stane, font ostaje isti */
  display: block;
  position: relative;
  border-radius: 8px;
  white-space: nowrap;         /* sprječava lomljenje "O NAMA" u dva reda */
  transition: color 0.22s, background 0.22s;
  overflow: hidden;
}

/* ---- Ripple fill ---- */
.ljes-nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.055);
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity   0.25s,
    transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

.ljes-nav a:hover::before,
.ljes-nav a.ljes-active::before {
  opacity: 1;
  transform: scale(1);
}

/* ---- Underline pointer ---- */
.ljes-nav a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 14px;                  /* usklađeno s paddingom */
  right: 14px;
  height: 2.5px;
  background: var(--ljes-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.ljes-nav a:hover::after {
  transform: scaleX(1);
}

.ljes-nav a.ljes-active::after {
  transform: scaleX(1);
}

/* Stilovi navigacije na ZELENOM headeru */
#ljes-header.ljes-scrolled .ljes-nav a {
  color: var(--ljes-text-scrolled);
}
#ljes-header.ljes-scrolled .ljes-nav a::before {
  background: rgba(255,255,255,0.15);
}
#ljes-header.ljes-scrolled .ljes-nav a::after {
  background: #ffffff;
}


/* ============================================================
   WIDGETS – SAT I TEMPERATURA
   ============================================================ */
.ljes-widgets {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.ljes-widget-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;             /* blago smanjen da stane sve */
  font-weight: 500;
  color: var(--ljes-text-top);
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: rgba(0,0,0,0.05);
  border-radius: 20px;
  padding: 5px 11px;
  transition: background 0.25s, color 0.25s;
}

.ljes-widget-pill:hover {
  background: rgba(0,0,0,0.1);
}

#ljes-header.ljes-scrolled .ljes-widget-pill {
  color: #ffffff;
  background: rgba(255,255,255,0.15);
}
#ljes-header.ljes-scrolled .ljes-widget-pill:hover {
  background: rgba(255,255,255,0.25);
}

.ljes-widget-icon {
  font-size: 13px;
  line-height: 1;
}

/* Vertikalna linija koja dijeli widgete */
.ljes-widget-sep {
  width: 1px;
  height: 18px;
  background: rgba(0,0,0,0.15);
  border-radius: 1px;
  margin: 0 2px;
  transition: background 0.25s;
}

#ljes-header.ljes-scrolled .ljes-widget-sep {
  background: rgba(255,255,255,0.3);
}

/* ---- NOVO: Liješnica lokacija u temperature pill-u ---- */
.ljes-widget-location {
  font-weight: 600;            /* boldano – ističe naziv mjesta */
  letter-spacing: 0.03em;
}

/* Točka separator između "Liješnica" i temperature */
.ljes-widget-sep-dot {
  color: var(--ljes-accent);   /* narančasta točka */
  font-weight: 700;
  line-height: 1;
  margin: 0 1px;
}

/* Na zelenoj pozadini točka postaje bijela */
#ljes-header.ljes-scrolled .ljes-widget-sep-dot {
  color: rgba(255,255,255,0.7);
}


/* ============================================================
   HAMBURGER DUGME
   ============================================================ */
.ljes-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: rgba(0,0,0,0.05);
  border: none;
  border-radius: 10px;
  padding: 0;
  transition: background 0.22s, transform 0.18s;
}

.ljes-hamburger:hover {
  background: rgba(0,0,0,0.11);
  transform: scale(1.06);
}

#ljes-header.ljes-scrolled .ljes-hamburger {
  background: rgba(255,255,255,0.15);
}
#ljes-header.ljes-scrolled .ljes-hamburger:hover {
  background: rgba(255,255,255,0.25);
}

.ljes-hamburger span {
  display: block;
  background: #1a1a1a;
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.4,0,0.2,1),
    opacity   0.25s,
    width     0.25s,
    background 0.25s;
}

#ljes-header.ljes-scrolled .ljes-hamburger span {
  background: #ffffff;
}

.ljes-hamburger span:nth-child(1) { width: 22px; height: 2px; }
.ljes-hamburger span:nth-child(2) { width: 16px; height: 2px; }
.ljes-hamburger span:nth-child(3) { width: 22px; height: 2px; }

.ljes-hamburger.ljes-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ljes-hamburger.ljes-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.ljes-hamburger.ljes-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   MOBILNI DRAWER
   ============================================================ */
.ljes-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding-top: var(--ljes-header-h-top);
  z-index: 9998;
  flex-direction: column;
  transform: translateY(-105%);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
}

.ljes-mobile-nav.ljes-open {
  transform: translateY(0);
}

#ljes-header.ljes-scrolled ~ .ljes-mobile-nav {
  padding-top: var(--ljes-header-h-sm);
}

.ljes-mobile-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-decoration: none !important;
  color: #1a1a1a;
  padding: 15px 32px;
  border-bottom: 1px solid #f2ede4;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: background 0.2s, color 0.2s, padding-left 0.25s;
}

.ljes-mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--ljes-accent);
  border-radius: 0 3px 3px 0;
  transition: width 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.ljes-mobile-nav a:hover {
  background: #fffbef;
  color: #b36000;
  padding-left: 40px;
}

.ljes-mobile-nav a:hover::before {
  width: 4px;
}

.ljes-mobile-nav a.ljes-active {
  background: #fffbef;
  color: #b36000;
  font-weight: 600;
}

.ljes-mobile-nav a.ljes-active::before {
  width: 4px !important;
}

.ljes-mobile-widgets {
  display: flex;
  gap: 10px;
  padding: 14px 32px 20px;
  flex-wrap: wrap;
}
.ljes-mobile-widgets .ljes-widget-pill {
  font-size: 13px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .ljes-nav       { display: none; }
  .ljes-widgets   { display: none; }
  .ljes-hamburger { display: flex; }
  .ljes-mobile-nav{ display: flex; }
}

@media (max-width: 480px) {
  .ljes-inner { padding: 0 20px; }
  :root {
    --ljes-header-h-top: 82px;
    --ljes-logo-h-top:   66px;
    --ljes-header-h-sm:  62px;
    --ljes-logo-h-sm:    50px;
  }
}

@media (min-width: 481px) and (max-width: 960px) and (orientation: portrait) {
  :root {
    --ljes-header-h-top: 92px;
    --ljes-logo-h-top:   74px;
    --ljes-header-h-sm:  68px;
    --ljes-logo-h-sm:    56px;
  }
  .ljes-inner { padding: 0 28px; }
}

@media (min-width: 481px) and (max-width: 960px) and (orientation: landscape) {
  :root {
    --ljes-header-h-top: 82px;
    --ljes-logo-h-top:   66px;
    --ljes-header-h-sm:  62px;
    --ljes-logo-h-sm:    52px;
  }
}


/* ============================================================
   ELEMENTOR PAGE OFFSET
   ============================================================ */
.elementor-section.elementor-top-section:first-child,
.e-con.e-parent:first-child,
body.elementor-page > .site-main > article:first-child {
  margin-top: var(--ljes-header-h-top) !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c304439 *//* ============================================================
   LIJEŠNICA – PORTFOLIO GALERIJA CSS  v2.0
   Dodaj u: Site Settings → Custom CSS
   ============================================================ */

/* ============================================================
   WRAP
   ============================================================ */
.lj-gal-wrap {
  font-family: 'Poppins', sans-serif;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px 80px;
  -webkit-font-smoothing: antialiased;
}

.lj-gal-wrap *,
.lj-gal-wrap *::before,
.lj-gal-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================================
   FILTER
   ============================================================ */
.lj-gal-filter {
  display: flex;
  flex-direction: row;       /* UVIJEK horizontalno */
  flex-wrap: wrap;           /* prelom u novi red ako nema mjesta */
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  padding: 20px 28px;
  background: linear-gradient(135deg, #7ded15 0%, #0d7a6e 100%);
  border-radius: 16px;
}

.lj-gal-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  padding: 8px 18px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.18s, box-shadow 0.2s;
}

.lj-gal-btn:hover {
  background: rgba(255,255,255,0.25);
  color: #ffffff;
  border-color: rgba(255,255,255,0.70);
  transform: translateY(-2px);
}

.lj-gal-btn.lj-gal-active {
  background: #ffffff;
  color: #1a5c30;
  border-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ============================================================
   MASONRY GRID
   ============================================================ */
.lj-gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.lj-gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #e8f5eb;
}

.lj-gal-item.lj-gal-tall  { grid-row: span 2; }
.lj-gal-item.lj-gal-wide  { grid-column: span 2; }
.lj-gal-item.lj-gal-hidden { display: none; }

.lj-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.2, 0, 0.2, 1);
}

.lj-gal-item:hover img { transform: scale(1.07); }

/* ============================================================
   OVERLAY
   ============================================================ */
.lj-gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 74, 10, 0.85) 0%,
    rgba(26, 74, 10, 0.35) 45%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.32s ease;
}

.lj-gal-item:hover .lj-gal-overlay { opacity: 1; }

.lj-gal-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 9px;
  align-self: flex-start;
  margin-bottom: 7px;
}

.lj-gal-tag--priroda        { background: rgba(125,237,21,0.22); color: #d4f5a0; }
.lj-gal-tag--historija      { background: rgba(224,123,0,0.25);  color: #ffd49a; }
.lj-gal-tag--kultura        { background: rgba(45,104,255,0.22); color: #b0c8ff; }
.lj-gal-tag--infrastruktura { background: rgba(13,122,110,0.25); color: #a0e8e2; }
.lj-gal-tag--turizam        { background: rgba(255,255,255,0.15);color: #e8ffcc; }
.lj-gal-tag--zajednica      { background: rgba(255,255,255,0.12);color: #ccffdd; }

.lj-gal-caption {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
  margin-bottom: 10px;
}

.lj-gal-zoom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.40);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  align-self: flex-end;
  position: absolute;
  top: 14px;
  right: 14px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  opacity: 0;
  transform: scale(0.8);
}

.lj-gal-item:hover .lj-gal-zoom { opacity: 1; transform: scale(1); }

.lj-gal-zoom:hover {
  background: #2D8545;
  border-color: #2D8545;
  transform: scale(1.1) !important;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lj-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 20, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lj-lightbox.lj-lb-open {
  opacity: 1;
  pointer-events: all;
}

.lj-lb-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 2;
}

.lj-lb-img {
  display: block;
  max-width: 88vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.60);
  object-fit: contain;
  opacity: 0;
  transform: scale(0.96);
}

.lj-lb-caption {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.70);
  letter-spacing: 0.04em;
  text-align: center;
}

.lj-lb-close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: rgba(255,255,255,0.90);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.lj-lb-close:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.60);
  transform: rotate(90deg);
}

.lj-lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.lj-lb-prev { left: 24px; }
.lj-lb-next { right: 24px; }

.lj-lb-prev:hover {
  background: #2D8545;
  border-color: #2D8545;
  transform: translateY(-50%) translateX(-3px);
}

.lj-lb-next:hover {
  background: #2D8545;
  border-color: #2D8545;
  transform: translateY(-50%) translateX(3px);
}

.lj-lb-counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px;
  padding: 7px 18px;
}

/* ============================================================
   ELEMENTOR FIX
   ============================================================ */
.elementor-widget-html:has(.lj-gal-wrap),
.elementor-section:has(.lj-gal-wrap),
.e-con:has(.lj-gal-wrap) {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ============================================================
   RESPONSIVE – TABLET (max 960px)
   ============================================================ */
@media (max-width: 960px) {
  .lj-gal-wrap { padding: 0 24px 64px; }

  .lj-gal-filter {
    padding: 16px 20px;
    gap: 7px;
    border-radius: 14px;
    margin-bottom: 28px;
  }

  .lj-gal-btn {
    font-size: 10px;
    padding: 7px 15px;
  }

  .lj-gal-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 190px;
    gap: 10px;
  }
}

/* ============================================================
   RESPONSIVE – MALI TABLET (max 720px)
   ============================================================ */
@media (max-width: 720px) {
  .lj-gal-wrap { padding: 0 16px 52px; }

  .lj-gal-filter {
    padding: 14px 16px;
    gap: 6px;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .lj-gal-btn {
    font-size: 10px;
    padding: 6px 13px;
    letter-spacing: 0.06em;
  }

  .lj-gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
    gap: 8px;
  }

  /* tall i wide ostaju ali su manji */
  .lj-gal-item.lj-gal-tall { grid-row: span 2; }
  .lj-gal-item.lj-gal-wide { grid-column: span 2; }

  /* Overlay i zoom uvijek vidljivi na touchu */
  .lj-gal-overlay { opacity: 1; }
  .lj-gal-zoom    { opacity: 1; transform: scale(1); width: 32px; height: 32px; top: 10px; right: 10px; }

  .lj-gal-caption { font-size: 11px; margin-bottom: 6px; }
  .lj-gal-tag     { font-size: 8px; padding: 2px 7px; }

  .lj-lb-prev { left: 8px; }
  .lj-lb-next { right: 8px; }
  .lj-lb-nav  { width: 40px; height: 40px; }
}

/* ============================================================
   RESPONSIVE – MOBITEL (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .lj-gal-wrap { padding: 0 12px 44px; }

  /* Filter — horizontalno, scrolla ako treba */
  .lj-gal-filter {
    padding: 12px 14px;
    gap: 6px;
    border-radius: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;        /* gumbi idu u 2 reda ako ne stanu */
    justify-content: flex-start;
  }

  .lj-gal-btn {
    font-size: 9px;
    padding: 6px 12px;
    letter-spacing: 0.05em;
    border-radius: 50px;
  }

  /* Grid — 2 kolone, kompaktno */
  .lj-gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 7px;
  }

  /* wide slike zauzimaju cijeli red */
  .lj-gal-item.lj-gal-wide  { grid-column: span 2; }
  /* tall ostaje 2 reda */
  .lj-gal-item.lj-gal-tall  { grid-row: span 2; }

  /* Overlay uvijek vidljiv na touchu */
  .lj-gal-overlay {
    opacity: 1;
    padding: 12px;
    background: linear-gradient(
      to top,
      rgba(26,74,10,0.90) 0%,
      rgba(26,74,10,0.40) 50%,
      transparent 100%
    );
  }
  .lj-gal-zoom {
    opacity: 1;
    transform: scale(1);
    width: 30px;
    height: 30px;
    top: 8px;
    right: 8px;
  }
  .lj-gal-zoom svg { width: 14px; height: 14px; }

  .lj-gal-caption { font-size: 10px; margin-bottom: 4px; line-height: 1.3; }
  .lj-gal-tag     { font-size: 8px; padding: 2px 6px; margin-bottom: 4px; }

  /* Lightbox */
  .lj-lb-img     { max-width: 96vw; max-height: 72vh; border-radius: 8px; }
  .lj-lb-close   { top: 12px; right: 12px; width: 38px; height: 38px; }
  .lj-lb-caption { font-size: 11px; }
  .lj-lb-counter { font-size: 10px; padding: 5px 14px; bottom: 18px; }
  .lj-lb-prev    { left: 6px; }
  .lj-lb-next    { right: 6px; }
  .lj-lb-nav     { width: 38px; height: 38px; }
}

/* ============================================================
   RESPONSIVE – MALI MOBITEL (max 360px)
   ============================================================ */
@media (max-width: 360px) {
  .lj-gal-wrap { padding: 0 8px 36px; }

  .lj-gal-filter { padding: 10px 10px; gap: 5px; }

  .lj-gal-btn { font-size: 8px; padding: 5px 10px; }

  .lj-gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    gap: 5px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2f21f65 *//* ============================================================
   LIJEŠNICA – FOOTER
   Dodaj u: Site Settings → Custom CSS
   ============================================================ */

.ljes-footer {
  background: #2D8545; /* Promijenjeno sa crne na novu zelenu */
  font-family: 'Poppins', sans-serif;
}

/* ── GORNJI DIO ── */
.ljes-footer-top {
  padding: 80px 0 60px;
}

.ljes-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ── BRAND / LOGO ── */
.ljes-footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  transition: opacity 0.22s;
}

.ljes-footer-logo:hover {
  opacity: 0.8;
}

.ljes-footer-logo img {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.ljes-footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7); /* Malo pojačan kontrast */
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ── SOCIAL IKONE ── */
.ljes-footer-social {
  display: flex;
  gap: 10px;
}

.ljes-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1); /* Povećana vidljivost na zelenoj pozadini */
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.18s;
}

.ljes-social-link:hover {
  background: #ffffff; /* Bijela na hover za bolji kontrast */
  border-color: #ffffff;
  color: #2D8545; /* Zelena ikona na bijeloj pozadini */
  transform: translateY(-3px);
}

/* ── NASLOVI KOLONA ── */
.ljes-footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff; /* Promijenjeno iz zelene u bijelu zbog vidljivosti */
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* ── NAVIGACIJA ── */
.ljes-footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ljes-footer-nav a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}

.ljes-footer-nav a::before {
  content: '→';
  font-size: 12px;
  color: #e07b00;
  opacity: 0;
  transition: opacity 0.2s;
}

.ljes-footer-nav a:hover {
  color: #ffffff;
  gap: 12px;
}

.ljes-footer-nav a:hover::before {
  opacity: 1;
}

/* ── KONTAKT ── */
.ljes-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ljes-footer-contact li {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ljes-footer-contact-icon {
  font-size: 16px;
  line-height: 1.5;
  flex-shrink: 0;
}

.ljes-footer-contact a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.ljes-footer-contact a:hover {
  color: #ffffff; /* Promijenjeno u bijelu na hover */
}

/* ── SEPARATOR ── */
.ljes-footer-sep {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

/* ── DONJI DIO ── */
.ljes-footer-bottom {
  padding: 24px 0;
}

.ljes-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: unset;
  gap: 16px;
  flex-wrap: wrap;
}

.ljes-footer-copy {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}

.ljes-footer-dev {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}

.ljes-footer-dev a {
  color: #ffffff; /* Promijenjeno u bijelu */
  text-decoration: none;
  transition: color 0.2s;
}

.ljes-footer-dev a:hover {
  color: #1a1a1a; /* Promijenjeno u tamnu na hover */
}

/* ── ELEMENTOR FOOTER FULL WIDTH FIX ── */
.elementor-location-footer,
.elementor-location-footer .elementor-section,
.elementor-location-footer .elementor-container,
.elementor-location-footer .e-con,
.elementor-location-footer .e-con-inner,
.elementor-location-footer .elementor-widget-wrap,
.elementor-location-footer .elementor-widget-html {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── RESPONSIVE 960px ── */
@media (max-width: 960px) {
  .ljes-footer-inner {
    padding: 0 28px;
  }
  .ljes-footer-sep {
    padding: 0 28px;
  }
  .ljes-footer-bottom-inner {
    padding: 0 28px;
  }
}

/* ── RESPONSIVE 900px ── */
@media (max-width: 900px) {
  .ljes-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .ljes-footer-brand {
    grid-column: 1 / -1;
  }
}

/* ── RESPONSIVE 600px ── */
@media (max-width: 600px) {
  .ljes-footer-top {
    padding: 60px 0 40px;
  }
  .ljes-footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 28px;
  }
  .ljes-footer-sep {
    padding: 0 28px;
  }
  .ljes-footer-bottom {
    padding: 20px 0;
  }
  .ljes-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 28px;
    gap: 8px;
  }
}

/* ── RESPONSIVE 480px – USKLAĐENO SA HEADEROM ── */
@media (max-width: 480px) {
  .ljes-footer-inner {
    padding: 0 20px;
  }
  .ljes-footer-sep {
    padding: 0 20px;
  }
  .ljes-footer-bottom-inner {
    padding: 0 20px;
  }
  .ljes-footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
  }
}/* End custom CSS */