:root {
    --green-black: #1b261d;
    --green-dark: #4a5d4e;
    --green-dark-soft:  #6f7f72;  /* malo svetlejša, umirjena */
    --green: #279B02;
    --green-light: #6fcb4a;
    --green-olive: #8da672;
    --green-soft: #ebf7e9; 
    --yellow: #F6AE01;
    --orange: #b87d4b;
    --orange-brown: #b87d4b;
    --red: #ff5348;
    --cream: #fff7eb;
    --text-dark: #333333;
    --page-bg: #fdfaf5;    
}

body {
    font-size: var(--fs-body);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
}

body ul li:not(.menu-item){
  margin-top: 20px;
  list-style: none;
  position: relative;
  padding-left: 10px;
  margin-bottom: 0.8rem;
}

body ul li:not(.menu-item)::before{
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  margin-left: -25px;
  width: 30px;
  height: 30px;
  background-image: url("images/ikona_next_yellow.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.85;
}

:root{

  --fs-body: clamp(1rem, 0.25vw + 0.95rem, 1.125rem);
  --fs-sm: clamp(0.875rem, 0.2vw + 0.83rem, 1rem);
  --fs-lead: clamp(1.25rem, 0.9vw + 1.08rem, 1.75rem);
  --fs-h1: clamp(1.875rem, 2.2vw + 1.25rem, 3rem);
    
  /* h6 -> h1 */
/*  --fs-h6: clamp(1rem, 0.35vw + 0.95rem, 1.125rem);
  --fs-h5: clamp(1.125rem, 0.6vw + 1.02rem, 1.375rem);
  --fs-h4: clamp(1.25rem, 0.9vw + 1.08rem, 1.75rem);
  --fs-h3: clamp(1.5rem, 1.4vw + 1.15rem, 2.25rem);
  --fs-h2: clamp(1.875rem, 2.2vw + 1.25rem, 3rem);
*/
}

/* uporaba */

h1, h2 {
    font-size: var(--fs-h1);
    font-weight:400;
}


a {
    color: #000;
    font-size: var(--fs-body);
    font-weight:400;
    text-decoration: none;
}


.nadnaslov {
    font-family: 'Pacifico', cursive;
    font-size: var(--fs-lead);
    color: var(--yellow);
}

.podnaslov {
    font-weight: 800;
    letter-spacing:3px;
    text-transform: uppercase;
    color: var(--green-dark);
    font-size: var(--fs-sm);
}

.text-strong-shadow {
    text-shadow:
        0 3px 8px rgba(0,0,0,0.45),
        0 6px 18px rgba(0,0,0,0.35),
        0 10px 28px rgba(0,0,0,0.25);
}

.text-soft-shadow {
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

button, .btn, a.button, .woocommerce a.button, .hero-btn {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
}

.btn-global, .btn-small {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    font-size: clamp(1.0rem, 1.0vw + 0.7rem, 1.2rem);
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    cursor: pointer;
    border-radius: 50px;
    transition: 0.18s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    border-radius: 3px;
    font-weight: 600;
    font-size: clamp(0.8rem, 0.8vw + 0.56rem, 0.96rem);
    margin-top: 20px;
}

.btn-global--yellow {
    color: #fff !important;
    background: linear-gradient(135deg, var(--yellow) 0%, #f7c948 100%);
}

.btn-global--green {
    background: var(--green-olive);
    color: #fff !important;
}

.btn-global--outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-global:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    filter: brightness(1.05);
}

.btn-align {
    gap:2rem
}

/* =========================
   NAVIGACIJA
   ========================= */

/* 3-col layout: BRAND | MENU (center) | LANG */
.nav-3col{
  display: flex;
  align-items: center;
}

.navbar-brand,
.navbar-lang{
  flex: 0 0 auto;
}

#mainNav.navbar-collapse{
  flex: 1 1 auto;
}

#mainNav .navbar-nav{
  margin: 0 auto; /* center menu */
}

/* linki */
.custom-dark-navbar .navbar-nav > li > a,
.custom-dark-navbar .navbar-nav > .menu-item > a,
.custom-dark-navbar .dropdown-menu > li > a{
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: var(--fs-sm);
  display: block;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.custom-dark-navbar .navbar-nav > li > a,
.custom-dark-navbar .navbar-nav > .menu-item > a{
  color: rgba(255,255,255,0.85);
  padding: 0.75rem 1rem;
}

.custom-dark-navbar .navbar-nav > li > a:hover,
.custom-dark-navbar .navbar-nav > li:hover > a{
  color: var(--yellow);
  transform: translateY(-1px);
}

.custom-dark-navbar .navbar-nav .current-menu-item > a,
.custom-dark-navbar .navbar-nav .current_page_item > a{
  color: var(--yellow);
  font-weight: 600;
}

/* dropdown */
.custom-dark-navbar .dropdown-menu{
  background: #222;
  border: none;
  min-width: 240px;
  padding: 0.5rem 0 !important;
}

.custom-dark-navbar .dropdown-menu > li > a{
  color: #fff;
  padding: 1rem 1.3rem;
}

.custom-dark-navbar .dropdown-menu > li > a:hover{
  background: #333;
  color: var(--yellow);
}

/* brand + toggler */
.custom-dark-navbar .navbar-brand{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
}

.custom-dark-navbar {
  background: rgba(15, 15, 15, 0.70);
  backdrop-filter: blur(12px);
  padding: 0.2rem 0;
}

.navbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

/* okvir gumba */
.navbar .navbar-toggler{
  border: 1px solid rgba(255,255,255,.45);
  border-radius: .6rem;
  padding: .45rem .6rem;
  background: rgba(255,255,255,.06);
  box-shadow: none !important;
}

/* hover */
.navbar .navbar-toggler:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.65);
}

/* odstrani focus ring + shadow (BS5) */
.navbar .navbar-toggler:focus,
.navbar .navbar-toggler:focus-visible{
  outline: none !important;
  box-shadow: none !important;
}

/* ikona (hamburger) â€“ svetlo siva/bela */
.navbar .navbar-toggler-icon{
  background-image: none;           /* izklopi BS default svg */
  width: 1.5rem;
  height: 1.1rem;
  position: relative;
}

.navbar .navbar-toggler-icon::before,
.navbar .navbar-toggler-icon::after,
.navbar .navbar-toggler-icon span{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
}

.navbar .navbar-toggler-icon::before{ top: 0; }
.navbar .navbar-toggler-icon span{ top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.75); }
.navbar .navbar-toggler-icon::after{ bottom: 0; }

/* LANG */
.navbar-lang{
  margin-left: 1rem;
  display: flex;
  gap: 0.8rem;
}

.navbar-lang .lang{
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s ease;
}

.navbar-lang .lang:hover,
.navbar-lang .lang.active{
  color: var(--yellow);
}

/* mobile */
@media (max-width: 991.98px){
  #mainNav .navbar-nav{ margin: 0; }
  .navbar-lang{ display:none !important; }
}


@media (min-width: 992px) {

    .custom-dark-navbar .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
        display: block;          /* tukaj je ok, ker je position:absolute in ne dela lufta */
    }

    /* hover odpre dropdown + fade */
    .custom-dark-navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* parent link lepĹˇi na hover */
    .custom-dark-navbar .dropdown:hover > a {
        color: var(--yellow) !important;
    }

    .custom-dark-navbar .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}













.padding {
    padding-top:100px;
    padding-bottom:100px;
}


/* Osnovno stanje za vse, kar se animira */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* "Staggered" zamiki za galerijo in kartice */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Dodatna finessa: Ce želiš še bolj mehak "zoom-in" efekt namesto dviga */
.gallery-card.animate-on-scroll {
    transform: scale(0.9) translateY(20px);
}

.gallery-card.animate-on-scroll.is-visible {
    transform: scale(1) translateY(0);
}

.exp-card.animate-on-scroll {
    opacity: 0;
    /* Uporabimo scale, vendar pazimo, da ga hover ne zlomi */
    transform: scale(0.95) translateZ(0); 
    transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.2, 1, 0.3, 1), flex 1.2s cubic-bezier(0.25, 1, 0.3, 1);
    will-change: opacity, transform, flex;
}

/* 2. Stanje ko je vidno */
.exp-card.animate-on-scroll.is-visible {
    opacity: 1;
    transform: scale(1) translateZ(0);
}






/* ============================
   GALERIJA IN SLIKE
   ============================ */

/* Skupen kontejner za kartico */
.gallery-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    overflow: hidden;
    background: #1a1a1a;
    margin-bottom: 20px;
    text-decoration: none;
}

.gallery-card img, 
.gallery-photo {
    image-orientation: from-image; /* Popravi orientacijo po podatkih slike */
    /* Dodatno: prepreci popacenje, ce brskalnik zamenja širino in višino */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), filter 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.photo-count-badge {
    background-color: var(--yellow) !important;
    color:#FFF !important;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block; /* Zagotovi, da je široka le toliko kot tekst */
    width: fit-content;    /* Dodatna varovalka za širino */
    margin-bottom: 8px;
}

/* Zoom gumb (Single) in Pušcica (Archive) - enak stil */
.card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 3;
}

/* Archive specificen overlay za naslov */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.gallery-card:hover .card-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* 5 stolpcev */
@media (min-width: 1200px) {
    .col-xl-custom { flex: 0 0 20%; max-width: 20%; }
}

/* Mobile 2 v vrsti popravki */
@media (max-width: 576px) {
    .card-icon { display: none; } /* Na telefonu skrijemo ikone na sredini */
    .card-overlay h2 { font-size: 1rem !important; }
}













/* ============================
   HOME PAGE START
   ============================ */

.dual-content-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    background-image: linear-gradient(rgba(40,35,25,0.85), rgba(40,35,25,0.85)), var(--bg-url);
}

@media (min-width: 1200px) {
    .dual-content-section {
        min-width: 1600px !important;
    }
}

.dual-content-wrapper {
    max-width: 90%;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .btn-group-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .btn-group-wrapper .btn-global {
        width: 100%;
        max-width: 280px;
    }
    
    .dual-content-section {
        background-attachment: scroll;
        padding: 60px 0;
    }
}

@media (min-width: 1200px) {
    .col-xl-custom { 
        flex: 0 0 20%; 
        max-width: 20%; 
    }
}

/* FEATURED */
.featured{
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.featured-inner{
    min-height: 100vh;
}

.featured-center{
    width: 60%;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

@media (max-width: 768px){
    .featured, .featured-inner, .featured-center {
        min-height: 70vh;
    }

    .featured-center {
        width: 90%;
    }
}

/* =========================
   INFOBAR
   ========================= */
.zurej-infobar{
    position: absolute;
    left: 0;
    right:0;
    bottom:50px;
    width: 70%;
    margin: 0 auto;
    padding: 13px 0;
    border-radius: 999px;
    background: rgba(10,14,10,.55);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* separatorji */
.zurej-infobar .col-md-3 + .col-md-3{
    border-left: 1px solid rgba(255,255,255,.2);
}

/* info tekst */
.infobar-text{
  color:#fff;
  padding: 10px 8px;
  text-align: left;
}

.infobar-text h5{
  margin: 0;
  font-size: 1rem;
}

.infobar-text strong{
  font-size: 1.1rem;
}

/* item */
.infobar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  color: #fff;
  text-decoration: none;
}

/* tekst */
.infobar-content{
  text-align: left;
}

.infobar-content span{
  display: block;
  font-size: .95rem;
  opacity: .85;
}

.infobar-content a,
.infobar-content strong{
  display: block;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

/* mobile */
@media (max-width: 991.98px){
  .zurej-infobar{
    display:none;
  }
}


/* =========================
   IKONICE
   ========================= */

.icon-group {
    display: flex;
    gap: 15px;
}

.icon-organic {
    width: 50px;
    height: 50px;
    border-radius: 35% 65% 61% 39% / 41% 35% 65% 59%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green-olive);
    color: var(--cream);
    border: 2px solid var(--green-dark);
    box-shadow: 5px 5px 15px rgba(74, 93, 58, 0.30);
    transition: transform .35s cubic-bezier(.175,.885,.32,1.275), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

a.icon-organic:hover{
    transform: translateY(-8px) rotate(-5deg);
    background: #fff;
    color: var(--green-dark);
    border-color: var(--green-dark);
    box-shadow: 10px 10px 20px rgba(0,0,0,.35);
}


.featured-stack-section {
    background-image: url('images/bg_content.png');
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* Tvoja fiksna širina, ki velja le na desktopu */
@media (min-width: 1200px) {
    .featured-stack-section {
        min-width: 1600px !important;
    }
}

.content-inner {
    width: 100%; /* Prilagodljivo znotraj stolpca */
}

/* IMAGE STACK LOGIKA */
.image-stack {
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.image-stack__big {
    width: 80%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
    z-index: 1;
}

.image-stack__small {
    position: absolute;
    width: 40%;
    border-radius: 12px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
    z-index: 5;
}

/* Pozicioniranje slik */
.stack-left { justify-content: flex-end; }
.stack-left .image-stack__small { left: 0; }

.stack-right { justify-content: flex-start; }
.stack-right .image-stack__small { right: 0; }

.image-stack img {
    width: 100%;
    display: block;
}

/* MOBILE PODPORA */
@media (max-width: 768px) {
    .featured-stack-section {
        min-width: auto !important; /* Odstranimo fiksno širino na mobilcih */
    }
    
    .image-stack {
        justify-content: center !important;
        padding: 20px 0;
    }

    .image-stack__big {
        width: 100%;
    }

    /* .image-stack__small se skrije preko d-none d-md-block v HTML */

    .content-inner--left {
        text-align: center !important;
        padding-right: 0 !important;
    }
    
    .text-md-end {
        text-align: center !important;
    }
}

.experience-cards-section {
    padding: 100px 0;
    background: linear-gradient(rgba(15,17,16,0.94), rgba(15,17,16,0.88)), url('<?php echo get_stylesheet_directory_uri(); ?>/images/bg_zurej_header.jpg');
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

.exp-wrapper {
    display: flex;
    height: 400px;
    gap: 12px;
    padding: 0 40px;
    max-width: 90%;
    margin: 0 auto;
}

.exp-card {
    position: relative;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 1s cubic-bezier(0.2, 1, 0.2, 1);
}

.exp-card:hover { flex: 6; }

.exp-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease;
}

.exp-card:hover .exp-card-bg {
    transform: scale(1.1);
}

.exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
}

.exp-info-closed { transition: opacity 0.4s ease; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.exp-tag { color: var(--yellow); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.exp-info-closed h3 { color: #fff; font-size: 1.2rem; margin: 5px 0 0; white-space: nowrap; }

.exp-info-open {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 70%;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.6s ease 0.3s;
}

.exp-card:hover .exp-info-closed { opacity: 0; }
.exp-card:hover .exp-info-open { opacity: 1; visibility: visible; transform: translateY(0); }

.exp-number { font-size: 7rem; font-weight: 900; color: rgba(255,255,255,0.3); line-height: 0.8; }
.exp-text-block h3 { color: #fff; font-size: 1.8rem; margin-bottom: 5px; }
.exp-text-block p { color: rgba(255,255,255,0.8); line-height: 1.4; margin-bottom: 15px; font-size: 1.1rem; }
.exp-cta { color: var(--yellow); text-decoration: none; font-weight: 700; padding-bottom: 2px; font-size: 1rem; text-transform: uppercase;}

/* MOBILE */
@media (max-width: 991px) {
    .exp-wrapper { flex-direction: column; height: auto; padding: 0 20px; }
    .exp-card { height: 130px; flex: none !important; }
    .exp-card:hover { height: 400px; }
    .exp-info-open { width: calc(100% - 60px); }
    .exp-number { display: none; }
}


/* ============================
   HOME PAGE END
   ============================ */






















































































/* ===============================
   SINGLE PAGE
================================ */



/* zgornji split / slika */
.single-cover {
  height: 700px;
  overflow: hidden;
  position: relative;
}

.single-cover-media {
  background: #111;
  position: relative;
}

.single-cover-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1);
}

.single-cover-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.4), transparent);
}

/* watermark */
.single-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  height: 80%;
  opacity: 0.15;
  color: #6b8254;
  pointer-events: none;
}

/* bela “školjka” */
.single-shell {
  margin-top: -80px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 30px 0 0 0;
  z-index: 10;
  position: relative;
  box-shadow: -20px 0 40px -20px rgba(0,0,0,0.08);
  margin-left: 15%;
  padding-right: 0 !important;
}

/* vsebina */
.single-body {
  max-width: 750px;
  padding-left: 0;
}

/* responsive */
@media (max-width: 992px) {
  .single-shell {
    margin-left: 0;
    border-radius: 0;
  }

  .single-body {
    max-width: 100%;
  }
}


/* ===============================
   CONTENT TOP (prej split-hero)
================================ */

.content-top {
  margin-top: 80px;
  position: relative;
  height: 600px;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
}

/* 50/50 background */
.content-top__bg{
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.content-top__half{
  position: relative;
  overflow: hidden;
}

/* LEFT – IMAGE */
.content-top__half--image{
  background: #111;
}

.content-top__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.05);
}

.content-top__half--image::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 30% 40%, rgba(0,0,0,.15), rgba(0,0,0,.55));
}

/* RIGHT – SOLID + WATERMARK */
.content-top__half--solid{
  position: relative;
  background: #fff;
  overflow: hidden;
}

.content-watermark{
  position: absolute;
  inset: 0;
  margin: auto;

  height: 80%;
  width: auto;

  transform: rotate(-18deg);
  transform-origin: center;

  color: #6f9f6a;
  opacity: 0.18;
  pointer-events: none;
}

@media (max-width: 860px){
  .content-watermark{ display:none; }
}

/* CONTENT LAYER */
.content-top__inner{
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* KICKER */
.content-kicker{
  max-width: 45%;
  margin-left: auto;
  margin-bottom: .75rem;

  display: inline-flex;
  align-items: flex-start;
  gap: .45rem;

  font-size: .75rem;
  letter-spacing: .28em;
  text-transform: uppercase;

  color: #2f4b2f;
  opacity: .85;
}

/* TITLE */
.content-title{
  margin-top: 1rem;
  max-width: 45%;
  margin-left: auto;

  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 1;
  letter-spacing: -.04em;

  color: rgba(30,30,30,1);
}

/* ===============================
   CONTENT SHELL (prej content-wrapper)
================================ */

.content-shell{
  max-width: 1200px;
  margin: -80px auto 0 auto;

  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-radius: 28px 28px 0 0;
  padding: 80px 50px;

  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}

.content-side__box{
  top: 110px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-left: 3px solid #6b8254;
  padding-left: 15px;
}

.content-side__title{
  display:block;
  opacity:.85;
}

/* BODY TEXT */
.content-body{
  min-width: 0;
}

.content-body__text{
  font-size: 1.2rem;
  line-height: 1.8;
  color: #1a1a1a;
}

/* Drop cap (trend) */
.content-body__text p:first-of-type::first-letter{
  font-size: 5rem;
  font-weight: 900;
  float: left;
  margin-right: 15px;
  line-height: 1;
  color: #6b8254;
}

/* ===============================
   CONTENT GALLERY – 1 / 2 / 3
================================ */

.content-gallery{
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

/* 1 slika = 100% */
.content-gallery--cols-1{
  grid-template-columns: 1fr;
}

/* 2 sliki = 50% + 50% */
.content-gallery--cols-2{
  grid-template-columns: repeat(2, 1fr);
}

/* 3 slike = 33.33% + 33.33% + 33.33% */
.content-gallery--cols-3{
  grid-template-columns: repeat(3, 1fr);
}

.content-gallery__item{
  margin: 0;
}

.content-gallery__item img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* MOBILE – vedno 1 stolpec */
@media (max-width: 768px){
  .content-gallery{
    grid-template-columns: 1fr !important;
  }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 860px){
  .content-top{
    height: 420px;
    min-height: 420px;
  }

  .content-top__bg{
    grid-template-columns: 1fr;
  }

  .content-top__half--solid{
    display: none;
  }

  .content-title{
    max-width: 100%;
    margin-left: 0;
    color: #fff;
  }

  .content-kicker{
    max-width: 100%;
    margin-left: 0;
    color: rgba(255,255,255,.9);
  }

  .content-shell{
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 0;
  }

  .content-side{
    display: none;
  }
}













































































.zurej-grid,
.zurej-masonry{
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
}

.zurej-grid{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1200px){
  .zurej-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px){
  .zurej-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px){
  .zurej-grid{
    grid-template-columns: 1fr;
  }
}

.zurej-masonry{
  column-count: 4;
  column-gap: 16px;
}

@media (max-width: 1200px){
  .zurej-masonry{
    column-count: 3;
  }
}

@media (max-width: 768px){
  .zurej-masonry{
    column-count: 2;
  }
}

@media (max-width: 576px){
  .zurej-masonry{
    column-count: 1;
  }
}

.zurej-grid-item,
.zurej-masonry-item{
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.zurej-masonry-item{
  break-inside: avoid;
  margin-bottom: 16px;
}

.zurej-grid-item img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.zurej-masonry-item img{
  width: 100%;
  height: auto;
  display: block;
}

.zurej-grid-item a,
.zurej-masonry-item a{
  display: block;
  text-decoration: none;
  color: inherit;
}

.zurej-masonry--few{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  align-items: stretch;
}

.zurej-masonry--few .zurej-masonry-item{
  width: min(360px, 100%);
  aspect-ratio: 4 / 3;
  display: flex;
  margin: 0;
}

.zurej-masonry--few .zurej-masonry-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zurej-masonry--few .zurej-masonry-item:only-child{
  width: min(520px, 100%);
}

@media (prefers-reduced-motion: no-preference){
  .zurej-grid-item,
  .zurej-masonry-item{
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .zurej-grid-item img,
  .zurej-masonry-item img{
    transition: transform .25s ease;
  }

  .zurej-grid-item:hover,
  .zurej-masonry-item:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,.16);
  }

  .zurej-grid-item:hover img,
  .zurej-masonry-item:hover img{
    transform: scale(1.03);
  }
}

@media (max-width: 768px){

  .zurej-grid,
  .zurej-masonry{
    max-width: 95%;
  }
}


























@media (max-width: 767.98px){
  .offer-card-wrap{
    margin-bottom: 30px;
    padding: 0px;
  }
    .navbar-brand img {
        max-width: 200px;
    }
}

@media (max-width: 991.98px){
    .padding {
        padding-top:40px;
        padding-bottom: 40px;
    }
    .zurej-hero-cta, .zurej-cta-bar {
        display: none !important;
    }
    .featured-center {
        width: 100%;
    }
    
    .btn-align {
        gap:0.5rem
    }
    .btn-global {
        padding: 0.6rem 0.5rem;
    }
    .image-stack {
        margin-bottom: 40px;
    }
    .container, .container-fluid {
        padding-left:30px!important;
        padding-right:30px!important;
    }
    
    .content-inner {
      width: 100%;
    }

    .content-box {
        width: 100%;
      margin: 40px 0px;
      padding: 20px;
    }
    .feautured--reverse-mobile .left-align{
        order: 2;
    }

    .feautured--reverse-mobile .image-stack{
        order: 1;
    }
    .content-inner--left {
      text-align: left !important;
      padding-right: 0px;
    }
    .left-align {
      justify-content: flex-start;
      text-align: start;
    }
}





















































