.elementor-12 .elementor-element.elementor-element-e6fba95{--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-12 .elementor-element.elementor-element-a0d4a8f{width:100%;max-width:100%;padding:0px 0px 0px 0px;}.elementor-12 .elementor-element.elementor-element-7ca4be5{--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;}.elementor-12 .elementor-element.elementor-element-684ef74{--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-12 .elementor-element.elementor-element-2ec3631{width:100%;max-width:100%;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-a0d4a8f *//* ============================================================
   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-7326e6e *//* ============================================================
   LIJEŠNICA – lijesnica.css  v6.3
   ============================================================

   ╔══════════════════════════════════════════════════════════╗
   ║  SISTEM BOJA — MIJENJAJ SAMO OVAJ BLOK                  ║
   ╚══════════════════════════════════════════════════════════╝

   --clr-grad-a    = Lijeva/gornja boja gradijenta
   --clr-grad-b    = Desna/donja boja gradijenta
   --clr-accent    = Naglasna boja (gumbi, labele, hover)
   --clr-accent-2  = Sekundarna naglasna boja
   --clr-dark      = Tamna pozadina
   --clr-dark-2    = Malo svjetlija tamna
   --clr-light     = Pozadina svijetlih sekcija
   --clr-border    = Boja okvira kartica
   --clr-txt       = Body tekst na svijetloj pozadini
   --clr-txt-inv   = Tekst na tamnoj/obojnoj pozadini
   --clr-blue      = PLAVA BOJA SA SLIKE
   ============================================================ */

:root {
  --clr-grad-a:    #7ded15;
  --clr-grad-b:    #0d7a6e;
  --clr-accent:    #7ded15;
  --clr-accent-2:  #5bc410;
  --clr-dark:      #1a4a0a;
  --clr-dark-2:    #0d3d30;
  --clr-light:     #ffffff;
  --clr-border:    #bbf0d8;
  --clr-txt:       #1a3a1a;
  --clr-txt-inv:   rgba(255,255,255,0.95);
  --clr-blue:      #2D68FF;

  --grad:          linear-gradient(135deg, var(--clr-grad-a) 0%, var(--clr-grad-b) 100%);
  --grad-h:        linear-gradient(135deg, var(--clr-grad-b) 0%, var(--clr-grad-a) 100%);
  --grad-subtle:   linear-gradient(135deg,
                     color-mix(in srgb, var(--clr-grad-a) 12%, transparent) 0%,
                     color-mix(in srgb, var(--clr-grad-b) 12%, transparent) 100%);
  --accent-glow:   0 8px 32px color-mix(in srgb, var(--clr-accent) 40%, transparent);
  --accent-glow-sm:0 4px 16px color-mix(in srgb, var(--clr-accent) 30%, transparent);
}



/* ============================================================
   RESET & WRAP
   ============================================================ */
.lj-site-wrap *,
.lj-site-wrap *::before,
.lj-site-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lj-site-wrap {
  font-family: 'Poppins', sans-serif;
  background: var(--grad);
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   HERO — SPLIT SCREEN
   ============================================================ */
.lj-hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--ljes-header-h-top, 80px) + 20px);
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  align-items: stretch;
  line-height: 0;
}

.lj-hero * {
  line-height: normal;
}

/* ── LIJEVA STRANA ── */
.lj-hero-left {
  background: var(--grad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.lj-hero-left::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
    color-mix(in srgb, #fff 12%, transparent) 0%,
    transparent 70%
  );
  top: -120px;
  right: -100px;
  pointer-events: none;
}

.lj-hero-left::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle,
    color-mix(in srgb, #000 15%, transparent) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: -60px;
  pointer-events: none;
}

.lj-hero-left-inner {
  padding: 40px 48px 64px 48px;
  position: relative;
  z-index: 2;
}

/* Stamp / koordinate */
.lj-stamp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.lj-stamp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  animation: ljPulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
}

@keyframes ljPulse {
  0%,100% { box-shadow: 0 0 0 2px rgba(255,255,255,0.15); }
  50%      { box-shadow: 0 0 0 7px rgba(255,255,255,0.03); }
}

.lj-stamp-sep { color: rgba(255,255,255,0.30); }

.lj-hero-bignum {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.lj-bignum-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
}

.lj-bignum-year {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  font-style: italic;
  color: #ffffff;
  -webkit-text-stroke: 0px transparent;
  text-shadow: 0 2px 24px rgba(0,0,0,0.20);
  line-height: 0.85;
  letter-spacing: -0.02em;
  animation: ljYearIn 1.4s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes ljYearIn {
  from { opacity:0; transform: translateY(36px); }
  to   { opacity:1; transform: translateY(0); }
}

/* Naslov */
.lj-hero-headline {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  animation: ljHeadIn 1.4s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes ljHeadIn {
  from { opacity:0; transform: translateX(-20px); }
  to   { opacity:1; transform: translateX(0); }
}

.lj-hl-line {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.06;
}

.lj-hl-light  { font-weight: 400; color: rgba(255,255,255,0.85); }
.lj-hl-italic { font-weight: 900; font-style: italic; color: #ffffff; }
/* ============================================================
   LIJEŠNICA – JEDAN RED ZA SVE EKRANE (DESKTOP, TABLET & MOB)
   ============================================================ */

/* Glavna baza - drži sve u jednom redu, poravnato ulijevo */
.lj-rotating-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  width: auto;
  max-width: 100%;
  gap: 6px; /* Mali, fiksni razmak između "Mjesto" i teksta */
  margin: 20px 0;
}

.lj-rl-prefix {
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}

.lj-rl-words {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  flex-grow: 1;
  height: 35px; 
  overflow: hidden;
}

.lj-rl-word {
  white-space: nowrap; /* Ne dozvoljava tekstu da se lomi u dva reda */
}

/* Podešavanje za laptope i tablete */
@media (max-width: 1200px) {
  .lj-rotating-line { 
    font-size: 1.1rem; 
  }
  .lj-rl-words { 
    height: 30px ; 
  }
}

/* 📱 Specijalno za MOBITELE (Zadržava jedan red, ali smanjuje font da stane) */
/* 📱 Specijalno za MOBITELE (Zadržava jedan red, ali smanjuje font) */
@media (max-width: 768px) {
  .lj-rotating-line {
    display: flex; /* Vraćamo u flex da bude jedno pored drugog */
    flex-wrap: nowrap; 
    font-size: 1.1rem !important; /* Ovo kontroliše veličinu riječi "Mjesto" */
    gap: 5px !important;
    margin: 15px 0;
  }

  /* 👇 OVO JE NOVO PRAVILO KOJE SMANJUJE SAMO ROTIRAJUĆE RIJEČI 👇 */
  .lj-rl-word {
    font-size: 0.98rem; /* Smanji ili povećaj ovaj broj (npr. 0.85rem ili 0.95rem) dok ne bude idealno */
  }

  .lj-rl-prefix {
    display: inline-block;
  }

  .lj-rl-words {
    display: inline-block;
    height: 24px; /* Malo smanjena visina kutije jer je font manji */
  }

  .lj-hero-headline {
    font-size: 2.2rem;
    line-height: 1.2;
  }
}
/* Rotating words */
.lj-rotating-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;

  margin-bottom: 28px;

  font-size: 17px;
  font-weight: 400;

  color: rgba(255,255,255,0.88);

  overflow: hidden;

  min-height: 38px;

  animation: ljHeadIn 1.4s 0.3s cubic-bezier(0.16,1,0.3,1) both;
}

.lj-rl-prefix {
  flex-shrink: 0;

  font-family: 'Playfair Display', serif; 
  font-weight: 700;              
  color: rgba(255,255,255,0.85);     
}

.lj-rl-words {
  position: relative;
  

  height: 24px;
  overflow: hidden;
  min-width: 280px;

  display: flex;
  align-items: center;
}

.lj-rl-word {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #ffffff;

  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  font-style: italic;

  letter-spacing: 0.2px;

  transition:
    transform 0.6s cubic-bezier(0.16,1,0.3,1),
    opacity 0.4s ease;
  transform: translateY(100%);
  opacity: 0;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.lj-rl-word.active {
  transform: translateY(0);
  opacity: 1;
}

.lj-rl-word.exit {
  transform: translateY(-100%);
  opacity: 0;
}

/* CTA gumbi */
.lj-hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: ljHeadIn 1.4s 0.4s cubic-bezier(0.16,1,0.3,1) both;
}

/* ── HERO DESNA: SLIDESHOW ── */
.lj-hero-right {
  background: var(--grad-h);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  height: 100%;
}

.lj-slideshow {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}

.lj-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16,1,0.3,1);
  transform: scale(1.04);
}

.lj-slide.active  { opacity: 1; transform: scale(1); z-index: 2; }
.lj-slide.exiting { opacity: 0; transform: scale(0.97); z-index: 1; }

.lj-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  height: 100%;
}

.lj-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.40) 40%,
    rgba(0,0,0,0.05) 100%
  );
  height: 100%;
}

/* ── SLIDE FOOTER ── */
.lj-slide-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 40px 28px 0px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.55) 55%,
    transparent 100%
  );
  margin-bottom: 0;
}

.lj-slide-content { margin-bottom: 14px; }

.lj-slide-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lj-slide-tag::before {
  content: '';
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--clr-accent);
  flex-shrink: 0;
}

.lj-slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.lj-slide-text {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 280px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.lj-slide-sep {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 12px;
}

.lj-slide-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.lj-slide-arrows { display: flex; align-items: center; gap: 6px; }

.lj-slide-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, border-color 0.22s, transform 0.18s;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.lj-slide-arrow:hover {
  background: var(--grad);
  border-color: transparent;
  transform: scale(1.10);
  box-shadow: var(--accent-glow-sm);
}

.lj-slide-arrow svg { width: 13px; height: 13px; }

.lj-slide-nav { display: flex; align-items: center; gap: 7px; }

.lj-slide-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}

.lj-slide-dot.active {
  background: var(--clr-accent);
  transform: scale(1.3);
  width: 20px;
  border-radius: 4px;
}

.lj-slide-counter {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  padding: 5px 11px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
}

.lj-slide-counter span {
  color: var(--clr-accent);
  font-weight: 700;
}

.lj-slide-progress-bar { height: 2px; background: rgba(255,255,255,0.06); flex-shrink: 0; }

.lj-slide-progress-fill {
  height: 100%;
  background: var(--grad);
  transition: width 0.5s ease;
}

/* ============================================================
   DVIJE PREMIUM TRAKE
   ============================================================ */
.lj-trake-wrap {
  display: flex;
  flex-direction: column;
  background: transparent;
  margin-top: -1px !important;
  position: relative;
  z-index: 20;
}

.lj-trake-container {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.lj-traka {
  display: flex;
  align-items: stretch;
  height: 50px;
  overflow: hidden;
  position: relative;
  border: none !important;
}

.lj-traka--gold { background: var(--grad); }

.lj-traka--dark {
  background: var(--grad-h);
  border-top: none !important;
}

.lj-traka-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 16px 0 18px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.lj-traka--gold .lj-traka-label {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.lj-traka--gold .lj-traka-label::after {
  content: '';
  position: absolute;
  right: -10px; top: 0; bottom: 0;
  width: 10px;
  background: rgba(0,0,0,0.35);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.lj-traka--dark .lj-traka-label {
  background: var(--grad);
  color: #ffffff;
  border-right: none;
  gap: 8px;
  padding-right: 18px;
}

.lj-traka--dark .lj-traka-label::after {
  content: '';
  position: absolute;
  right: -10px; top: 0; bottom: 0;
  width: 10px;
  background: var(--clr-grad-b);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.lj-live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  animation: ljBlink 1.2s ease-in-out infinite;
}

@keyframes ljBlink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.3; transform: scale(0.7); }
}

.lj-traka-scroll {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.lj-traka--gold .lj-traka-scroll::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--clr-grad-b));
  z-index: 2;
  pointer-events: none;
}

.lj-traka--dark .lj-traka-scroll::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--clr-grad-a));
  z-index: 2;
  pointer-events: none;
}

.lj-traka-inner {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  height: 100%;
  padding-left: 20px;
}

.lj-traka--gold .lj-traka-inner {
  animation: ljTrakaSc 24s linear infinite;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.85);
}

.lj-traka--dark .lj-traka-inner {
  animation: ljTrakaSc 36s linear infinite;
  font-size: 12px;
  font-weight: 500;
  color: rgba(0,0,0,0.85);
  letter-spacing: 0.01em;
  text-transform: none;
}

@keyframes ljTrakaSc {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.lj-tx {
  display: inline-flex;
  align-items: center;
  margin: 0 14px;
  color: rgba(0,0,0,0.30);
  font-size: 5px;
}

.lj-traka--dark .lj-tx {
  color: rgba(0,0,0,0.30);
  font-size: 5px;
}

.lj-news-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.lj-news-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.60);
  margin-right: 4px;
}

.lj-gold-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lj-gold-icon { font-size: 12px; opacity: 0.75; }

/* ============================================================
   MANIFESTO
   ============================================================ */
.lj-manifesto {
  background: #ffffff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.lj-manifesto::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
    color-mix(in srgb, var(--clr-grad-a) 10%, transparent) 0%,
    transparent 70%
  );
  top: -200px; left: -150px;
  pointer-events: none;
}

.lj-manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 36px 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.lj-manifesto-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lj-manifesto-label::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: rgba(0,0,0,0.35);
}

.lj-manifesto-text { grid-row: 2; }

.lj-mline {
  font-family: 'Playfair Display', serif;
  line-height: 0.95;
  display: block;
}

.lj-mline--big {
  font-size: clamp(52px, 8.5vw, 110px);
  font-weight: 900;
  font-style: italic;
  color: #1a3a1a;
}

.lj-mline--outlined {
  font-size: clamp(52px, 8.5vw, 110px);
  font-weight: 900;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 2px var(--clr-accent);
}

.lj-manifesto-body {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 12px;
  max-width: 300px;
}

.lj-manifesto-body p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(0,0,0,0.35);
  line-height: 1.9;
  margin-bottom: 26px;
}

.lj-manifesto-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--clr-accent-2);
  transition: gap 0.2s, color 0.2s;
}

.lj-manifesto-link:hover { color: #1a3a1a; }
.lj-manifesto-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.lj-manifesto-link:hover svg { transform: translateX(5px); }

/* ============================================================
   TRIPTIH
   ============================================================ */
.lj-triptih {
  background: var(--grad);
  padding: 100px 0;
  overflow: hidden;
}

.lj-triptih-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 60px;
}

.lj-triptih-header {
  text-align: center;
  margin-bottom: 52px;
}

.lj-triptih-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.lj-triptih-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lj-tcard {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}

.lj-tcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.lj-tcard-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.lj-tcard-bg--1 {
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&auto=format&fit=crop');
}
.lj-tcard-bg--2 {
  background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=800&auto=format&fit=crop');
}
.lj-tcard-bg--3 {
  background-image: url('https://images.unsplash.com/photo-1521914485658-b2c62b4a7bc8?w=800&auto=format&fit=crop');
}

.lj-tcard:hover .lj-tcard-bg { transform: scale(1.07); }

.lj-tcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.08) 33%,
    rgba(0,0,0,0.70) 68%,
    rgba(0,0,0,0.96) 100%
  );
  transition: background 0.4s;
}

.lj-tcard--mid .lj-tcard-overlay {
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--clr-grad-b) 40%, rgba(0,0,0,0.3)) 0%,
    color-mix(in srgb, var(--clr-grad-a) 15%, rgba(0,0,0,0.1)) 35%,
    rgba(0,0,0,0.75) 68%,
    rgba(0,0,0,0.97) 100%
  );
}

.lj-tcard:hover .lj-tcard-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.38) 0%,
    rgba(0,0,0,0.12) 30%,
    rgba(0,0,0,0.75) 65%,
    rgba(0,0,0,0.97) 100%
  );
}

.lj-tcard-year {
  position: absolute;
  top: 26px; left: 26px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 900;
  font-style: italic;
  color: rgba(255,255,255,0.20);
  z-index: 3;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
  transition: color 0.4s;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.lj-tcard:hover .lj-tcard-year {
  color: color-mix(in srgb, var(--clr-accent) 50%, transparent);
}

.lj-tcard-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 34px 30px;
  z-index: 3;
}

.lj-tcard-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.lj-tcard-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 22px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.lj-tcard-link--white {
  background: rgba(255,255,255,0.95);
  color: var(--clr-grad-a);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

.lj-tcard-link--white:hover {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.70);
}

/* ============================================================
   HORIZONTALNI TIMELINE
   ============================================================ */
.lj-htimeline {
  background: #ffffff;
  padding: 80px 0;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--clr-accent) 35%, transparent) transparent;
  position: relative;
}

.lj-htimeline::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad);
  opacity: 0.35;
}

.lj-htimeline-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  padding: 0 60px;
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lj-htimeline-label::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: rgba(0,0,0,0.45);
}

.lj-htimeline-track {
  display: flex;
  align-items: flex-start;
  padding: 0 60px;
  min-width: max-content;
  position: relative;
}

.lj-htimeline-line {
  position: absolute;
  top: 8px;
  left: 60px; right: 60px;
  height: 1px;
  background: var(--grad);
  opacity: 0.45;
}

.lj-ht-item {
  flex-shrink: 0;
  width: 220px;
  padding-top: 32px;
  padding-right: 40px;
  position: relative;
}

.lj-ht-item--alt { padding-top: 80px; }

.lj-ht-dot {
  position: absolute;
  top: 0; left: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid color-mix(in srgb, var(--clr-accent) 60%, transparent);
  transform: translateY(3px);
}

.lj-ht-dot--gold {
  background: var(--grad);
  border-color: transparent;
  box-shadow: var(--accent-glow-sm);
}

.lj-ht-year {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-accent-2);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.lj-ht-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a3a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.lj-ht-text {
  font-size: 12px;
  font-weight: 300;
  color: rgba(0,0,0,0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ============================================================
   FULL-WIDTH CITAT
   ============================================================ */
.lj-citat {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  text-align: center;
}

.lj-citat-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.lj-citat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--clr-grad-a) 75%, #000) 0%,
    color-mix(in srgb, var(--clr-grad-b) 70%, #000) 100%
  );
  opacity: 0.92;
}

.lj-citat-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.lj-citat-quotemarks {
  font-family: 'Playfair Display', serif;
  font-size: 180px;
  line-height: 0.5;
  color: rgba(255,255,255,0.06);
  display: block;
  margin-bottom: 16px;
  user-select: none;
}

.lj-citat-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 28px;
}

.lj-citat-text em { color: rgba(255,255,255,0.80); }

.lj-citat-source {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  font-style: normal;
}

.lj-citat-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.40);
  text-transform: uppercase;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.lj-final-cta {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.lj-final-cta::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--clr-grad-a) 5%, transparent);
  top: -300px; right: -200px;
  pointer-events: none;
}

.lj-final-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.lj-final-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.50);
  margin-bottom: 12px;
}

.lj-final-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: #1a3a1a;
  line-height: 1.1;
}

.lj-final-title em { font-style: italic; }

.lj-final-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   GUMBI
   ============================================================ */

/* ── PRIMARNI ── */
.lj-btn-dark,
.lj-cta-main,
.lj-tcard-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: var(--clr-accent-2);
  border: 2px solid transparent;
  padding: 13px 28px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px color-mix(in srgb, var(--clr-accent-2) 40%, transparent);
  cursor: pointer;
}

.lj-btn-dark:hover,
.lj-cta-main:hover,
.lj-tcard-link:hover {
  background: var(--clr-grad-b);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--clr-accent-2) 50%, transparent);
  border: 2px solid transparent;
}

/* ── TIMELINE GUMB ── */
.lj-ht-btn,
.lj-ht-btn--nowrap {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: var(--clr-accent-2);
  border: 2px solid transparent;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--clr-accent-2) 35%, transparent);
  cursor: pointer;
}

.lj-ht-btn:hover,
.lj-ht-btn--nowrap:hover {
  background: var(--clr-grad-b);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--clr-accent-2) 45%, transparent);
  border: 2px solid transparent;
}

/* Arrow */
.lj-cta-arrow {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.lj-cta-main:hover .lj-cta-arrow { transform: translateX(4px); }

.lj-tcard-link svg { width: 13px; height: 13px; transition: transform 0.2s; flex-shrink: 0; }
.lj-tcard-link:hover svg { transform: translateX(4px); }

/* ── SEKUNDARNI (OUTLINE) ── */
.lj-btn-outline-dark,
.lj-cta-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.70);
  padding: 13px 28px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.lj-btn-outline-dark:hover,
.lj-cta-link:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.90);
}

/* ── GHOST ── */
.lj-btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a3a1a;
  background: transparent;
  border: 2px solid #1a3a1a;
  padding: 13px 24px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}

.lj-btn-ghost-dark:hover {
  background: #1a3a1a;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ============================================================
   LOKALNE ISPRAVKE GUMBI
   ============================================================ */

/* 1. HERO: ISTRAŽI LIJEŠNICU */
.lj-hero-cta .lj-btn-dark,
.lj-hero-cta .lj-cta-main {
  background: transparent !important;
  border: 2px solid #ffffff !important;
  box-shadow: none !important;
  color: #ffffff !important;
}
.lj-hero-cta .lj-btn-dark:hover,
.lj-hero-cta .lj-cta-main:hover {
  background: rgba(255,255,255,0.15) !important;
}

/* 2. HERO: DEŠAVANJA */
.lj-hero-cta .lj-btn-outline-dark,
.lj-hero-cta .lj-cta-link {
  background: var(--clr-blue) !important;
  border: 2px solid var(--clr-blue) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px color-mix(in srgb, var(--clr-blue) 40%, transparent) !important;
}
.lj-hero-cta .lj-btn-outline-dark:hover,
.lj-hero-cta .lj-cta-link:hover {
  background: color-mix(in srgb, var(--clr-blue) 80%, #000) !important;
  border-color: color-mix(in srgb, var(--clr-blue) 80%, #000) !important;
}

/* 3. FINAL CTA: O NAMA */
.lj-final-right .lj-btn-outline-dark,
.lj-final-right .lj-cta-link {
  background: var(--clr-blue) !important;
  border: 2px solid var(--clr-blue) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px color-mix(in srgb, var(--clr-blue) 40%, transparent) !important;
}
.lj-final-right .lj-btn-outline-dark:hover,
.lj-final-right .lj-cta-link:hover {
  background: color-mix(in srgb, var(--clr-blue) 80%, #000) !important;
  border-color: color-mix(in srgb, var(--clr-blue) 80%, #000) !important;
}

/* ============================================================
   ELEMENTOR FIX
   ============================================================ */
.elementor-widget-html:has(.lj-site-wrap),
.elementor-section:has(.lj-site-wrap),
.e-con:has(.lj-site-wrap),
.lj-site-wrap {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}

.e-con-inner:has(.lj-site-wrap) {
  padding: 0 !important;
  margin: 0 !important;
  gap: 0 !important;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
.lj-htimeline::-webkit-scrollbar { height: 3px; }
.lj-htimeline::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); }
.lj-htimeline::-webkit-scrollbar-thumb { background: var(--grad); border-radius: 2px; }


/* ============================================================
   RESPONSIVE — TABLET (max 960px)
   ============================================================ */
@media (max-width: 960px) {

  /* HERO */
  .lj-hero {
    grid-template-columns: 1fr;
    height: auto;
    padding-top: calc(var(--ljes-header-h-top, 80px));
  }
  .lj-hero-left { min-height: 54vh; }
  .lj-hero-right { height: 48vh; min-height: 300px; }
  .lj-hero-left-inner { padding: 40px 32px 56px; }

  /* TRAKE */
  .lj-trake-wrap { flex-direction: column; }

  /* MANIFESTO */
  .lj-manifesto { padding: 80px 0; }
  .lj-manifesto-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 24px 0;
    padding: 0 40px;
  }
  .lj-manifesto-label { grid-column: 1; grid-row: 1; }
  .lj-manifesto-text  { grid-column: 1; grid-row: 2; }
  .lj-manifesto-body  { grid-column: 1; grid-row: 3; max-width: 100%; padding-bottom: 0; }

  .lj-mline--big,
  .lj-mline--outlined { font-size: clamp(48px, 11vw, 90px); }

  /* TRIPTIH */
  .lj-triptih-inner { padding: 0 32px; }
  .lj-triptih-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .lj-tcard { min-height: 360px; }
  .lj-tcard:hover { transform: none; }

  /* TIMELINE — vertikalni layout */
  .lj-htimeline {
    overflow-x: hidden;
    padding: 64px 0;
  }
  .lj-htimeline-label {
    padding: 0 40px;
    margin-bottom: 40px;
  }
  .lj-htimeline-track {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 40px 0 52px;
    min-width: unset;
    gap: 0;
  }
  .lj-htimeline-line {
    top: 0;
    bottom: 0;
    left: 52px;
    right: auto;
    width: 1px;
    height: 100%;
  }
  .lj-ht-item {
    width: 100%;
    padding-top: 0;
    padding-right: 0;
    padding-left: 28px;
    padding-bottom: 36px;
    flex-shrink: unset;
  }
  .lj-ht-item--alt {
    padding-top: 0;
    padding-left: 28px;
  }
  .lj-ht-dot {
    top: 3px;
    left: -34px;
    transform: none;
  }
  .lj-ht-year   { font-size: 14px; margin-bottom: 6px; }
  .lj-ht-title  { font-size: 16px; margin-bottom: 6px; }
  .lj-ht-text   { font-size: 13px; margin-bottom: 14px; max-width: 480px; }
  .lj-ht-btn,
  .lj-ht-btn--nowrap { white-space: normal; }

  /* FINAL CTA */
  .lj-final-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 32px;
  }
  .lj-final-right { justify-content: center; }
}


/* ============================================================
   RESPONSIVE — MOBITEL (max 600px)
   ============================================================ */
@media (max-width: 600px) {

  /* HERO */
  .lj-hero { padding-top: 70px; }
  .lj-hero-left { min-height: 58vh; }
  .lj-hero-left-inner { padding: 32px 18px 52px; }
  .lj-bignum-year { font-size: 52px; }
  .lj-hl-line { font-size: 28px; }
  .lj-rotating-line { font-size: 12px; }
  .lj-hero-cta { gap: 14px; }
  .lj-cta-main { font-size: 11px; padding: 11px 20px; }
  .lj-cta-link { font-size: 11px; }
  .lj-hero-right { height: 44vh; min-height: 260px; }
  .lj-slide-footer { padding: 32px 16px 14px; }
  .lj-slide-title { font-size: 16px; }
  .lj-slide-text { font-size: 10px; max-width: 220px; }
  .lj-slide-arrow { width: 30px; height: 30px; }

  /* TRAKE */
  .lj-traka { height: 44px; }
  .lj-traka-label { padding: 0 12px; font-size: 8px; }

  /* MANIFESTO */
  .lj-manifesto { padding: 56px 0; }
  .lj-manifesto-inner { padding: 0 20px; gap: 18px 0; }
  .lj-mline--big,
  .lj-mline--outlined { font-size: clamp(36px, 12vw, 56px); line-height: 0.92; }
  .lj-manifesto-body p { font-size: 14px; line-height: 1.8; }
  .lj-manifesto-link { font-size: 11px; margin-top: 4px; }

  /* TRIPTIH */
  .lj-triptih { padding: 64px 0; }
  .lj-triptih-inner { padding: 0 18px; }
  .lj-tcard { min-height: 320px; }
  .lj-tcard-body { padding: 24px 20px; }
  .lj-tcard-title { font-size: 24px; }
  .lj-tcard-text { font-size: 12px; }
  .lj-tcard-link { font-size: 10px; padding: 9px 18px; }

  /* TIMELINE — vertikalni layout */
  .lj-htimeline { padding: 48px 0; overflow-x: hidden; }
  .lj-htimeline-label { padding: 0 20px; margin-bottom: 32px; }
  .lj-htimeline-track {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px 0 44px;
    min-width: unset;
    gap: 0;
  }
  .lj-htimeline-line {
    top: 0;
    bottom: 0;
    left: 44px;
    right: auto;
    width: 1px;
    height: 100%;
  }
  .lj-ht-item {
    width: 100%;
    padding-top: 0;
    padding-right: 0;
    padding-left: 24px;
    padding-bottom: 28px;
    flex-shrink: unset;
  }
  .lj-ht-item--alt {
    padding-top: 0;
    padding-left: 24px;
  }
  .lj-ht-dot {
    top: 3px;
    left: -30px;
    width: 10px;
    height: 10px;
    transform: none;
  }
  .lj-ht-year   { font-size: 12px; margin-bottom: 4px; }
  .lj-ht-title  { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
  .lj-ht-text   { font-size: 12px; line-height: 1.65; margin-bottom: 12px; }
  .lj-ht-btn,
  .lj-ht-btn--nowrap { font-size: 10px; padding: 9px 18px; white-space: normal; }

  /* CITAT */
  .lj-citat { padding: 90px 0; }
  .lj-citat-bg { background-attachment: scroll; }
  .lj-citat-inner { padding: 0 20px; }
  .lj-citat-quotemarks { font-size: 100px; }
  .lj-citat-text { font-size: 28px; }

  /* FINAL CTA */
  .lj-final-cta { padding: 60px 0; }
  .lj-final-cta-inner { padding: 0 18px; gap: 32px; }
  .lj-final-title { font-size: 30px; }
  .lj-final-right { flex-direction: column; align-items: center; width: 100%; }
  .lj-btn-dark,
  .lj-btn-outline-dark,
  .lj-btn-outline-light,
  .lj-btn-ghost-dark {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 13px 20px;
  }
}


/* ============================================================
   RESPONSIVE — MALI MOBITEL (max 380px)
   ============================================================ */
@media (max-width: 380px) {

  /* HERO */
  .lj-hero-left-inner { padding: 28px 14px 44px; }
  .lj-bignum-year { font-size: 44px; }
  .lj-hl-line { font-size: 24px; }
  .lj-stamp { font-size: 9px; gap: 6px; }

  /* MANIFESTO */
  .lj-manifesto-inner { padding: 0 14px; }
  .lj-mline--big,
  .lj-mline--outlined { font-size: 34px; }

  /* TRIPTIH */
  .lj-triptih-inner { padding: 0 14px; }

  /* TIMELINE */
  .lj-htimeline-label { padding: 0 14px; }
  .lj-htimeline-track {
    padding: 0 14px 0 38px;
  }
  .lj-htimeline-line {
    left: 38px;
  }
  .lj-ht-item,
  .lj-ht-item--alt {
    padding-left: 20px;
    padding-bottom: 24px;
  }
  .lj-ht-dot {
    left: -26px;
  }
  
  /* Centriranje i guranje grba kralja Ostoje na sredinu */
.lj-citat-bg {
  background-position: 33% center !important; /* Smjestit će grb tačno na sredinu ekrana */
  background-size: cover !important;
}

/* Osiguranje da i na mobitelu grb ostane u fokusu */
@media (max-width: 768px) {
  .lj-citat-bg {
    background-position: 35% center !important;
  }
}

  /* FINAL CTA */
  .lj-final-cta-inner { padding: 0 14px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2ec3631 *//* ============================================================
   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 */