
/* Montserrat Light - weight 300 */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/Montserrat-Light.woff') format('woff');
  font-display: swap;
}

/* Montserrat Regular - weight 400 */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/Montserrat-Regular.woff') format('woff');
  font-display: swap;
}

/* Montserrat Medium - weight 500 */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/Montserrat-Medium.woff') format('woff');
  font-display: swap;
}

/* Montserrat SemiBold - weight 600 */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/Montserrat-SemiBold.woff') format('woff');
  font-display: swap;
}

/* Montserrat Bold - weight 700 */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/Montserrat-Bold.woff') format('woff');
  font-display: swap;
}


html, body {
  margin: 0;
  padding: 0;
    height: 100%;
    -webkit-font-smoothing: antialiased;
  overflow-anchor: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}




body {
color: #282828;
font-family: 'Montserrat', sans-serif;
font-size:1.2em;
font-style: normal;
font-weight: 300;
line-height: 1.2;
margin: 0;
padding: 0;
box-sizing: border-box;
}


html, body { overflow-anchor: none; }
.accordion, .accB, .accO { overflow-anchor: none; }


.logo {
  position: absolute;
  top: 10%;
  left: 18%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  transition: transform 0.2s ease-out;
}


.logo-mobile {
  display: none;
}

.f1{
font-size: 200%;
    grid-column: 4/span 9;
    grid-row: 1;
    line-height: 1.3;
    font-weight: 300
    }
    
 .f2{
font-size: 100%;
    grid-column: 4/span 9;
    grid-row: 1;
    line-height: 1.3;
    font-weight: 300
    }   
    
 .f3{
font-size: 130%;
    grid-column: 4/span 9;
    grid-row: 1;
    line-height: 1.3;
    font-weight: 300
    }  


/* HAMBURGER IKONA */
/* ====================== HAMBURGER ICON ====================== */


/* SKUPNI OVITEK (bela kapsula) */
.hamburger_border {
  position: fixed;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 25px;                /* razmik med jezikom in hamburgerjem */
background: rgba(255, 255, 255, 0.5);
backdrop-filter: blur(26px);
  border-radius: 10px;      /* zaobljeni robovi */
  padding: 15px 20px;       /* notranji odmik */
  z-index: 999999;
}




.hamburger_icon {
  position: static;  /* tudi ne več fixed */
  width: 32px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform .3s ease;
}
.hamburger_icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 4px;
  transition: .35s ease;
}

/* ANIMACIJA hamburger -> X */
.hamburger_icon.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger_icon.active span:nth-child(2) {
  opacity: 0;
}

.hamburger_icon.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ====================== OVERLAY MENU ====================== */
.hamburger_overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999998;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

/* ko je aktiven */
.hamburger_overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* MENI --- centriran */
.hamburger_menu {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 26px;

  transform: translateY(30px);
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}

.hamburger_overlay.active .hamburger_menu {
  opacity: 1;
  transform: translateY(0px);
}

.hamburger_menu a {
  font-size: 38px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .5s ease, transform .5s ease;
}


.hamburger_menu a:hover {
  opacity: .4;
}


/* Fallback close X (ni potreben, ampak ga pusti) */
.hamburger_close {
  position: absolute;
  top: 40px;
  right: 55px;
  font-size: 52px;
  cursor: pointer;
  font-weight: 300;
  line-height: 1;
  color: #000;
  opacity: 0;
}


/* ANIMACIJA POSAMEZNIH LINKOV (stagger) */

/* KO JE MENI AKTIVEN → prikazujejo se en za drugim */
.hamburger_overlay.active .hamburger_menu a {
  opacity: 1;
  transform: translateY(0);
}

/* ZAMIKANJE animacije posameznih linkov */
.hamburger_menu a:nth-child(1) { transition-delay: .15s; }
.hamburger_menu a:nth-child(2) { transition-delay: .25s; }
.hamburger_menu a:nth-child(3) { transition-delay: .35s; }
.hamburger_menu a:nth-child(4) { transition-delay: .45s; }
.hamburger_menu a:nth-child(5) { transition-delay: .55s; }
.hamburger_menu a:nth-child(6) { transition-delay: .65s; }

.hamburger_menu a.on {
  color: #000099;
}
/* ====================== LANGUAGE SWITCHER ====================== */
.hamburger_lang {
  position: static;  /* ni več fixed */
  display: flex;
  gap: 8px;
  font-size: 16px;
}



.hamburger_lang a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: opacity .3s ease;
  margin-right:10px
}

.hamburger_lang a:hover {
  opacity: .4;
}

.hamburger_lang span {
  color: #000;
  opacity: .4;
}

/* HAMBURGER IKONA */




/*INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  */
/*INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  */
/*INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  */
.introContent {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}



.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}


/* Modra maska čez video */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000099;
  opacity: 0.3;
  z-index: -1; /* maska je nad videom, pod ostalo vsebino */
    transition: opacity .4s ease;
}


 .hero-scroll-button{padding:30px 0 0 10px;display:block;cursor:pointer} 
  
.hero-scroll-button:hover svg {
  transform: scale(1.2);
  transition: transform 0.2s ease-in-out;
}

.loader {
  position: fixed;
  inset:0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 9999;
  height: 100vh;
  background: transparent;
}

.stripe {
  position: relative;
  overflow: hidden;
  background: none;
}

.stripe-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  transform-origin: top;
  transform: scaleY(2);
  will-change: transform;
}

/* širine posameznih pasov */
.stripe-30 { flex: 0 0 30%; }
.stripe-25 { flex: 0 0 25%; }
.stripe-20 { flex: 0 0 20%; }
.stripe-15 { flex: 0 0 15%; }
.stripe-10 { flex: 0 0 10%; }


@keyframes closeInner {
  from { transform: scaleY(1); }
  to   { transform: scaleY(0); }
}


.animated-title {
  position: absolute;
  bottom: 5%;
  left: 45%;
  transform: translateX(-50%); /* odstranimo vertikalni -50% */
  text-align: left; /* poravnaj levo */
  color: white;
  z-index: 2;
    line-height:0.9
}

.animated-title .line {
  display: flex;
  justify-content: flex-start; /* črke od leve proti desni */
  font-weight: 500;
  text-transform: uppercase;
  margin: 0.1em 0;
  font-size: 650%;  
  

}

.animated-title .line span {
  display: inline-block; /* ✅ beseda ostane skupaj */
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
}

.animated-title .sub {
  display: block;
  margin:40px 0 0 10px;
  opacity: 0;
  transform: translateY(20px);
}

/* Animacija črk */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  */
/*INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  */
/*INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  INTROCONTENT0  */

/*INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1*/
/*INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1*/

.introContent1 {
  width: 100%; 
  margin: 0 auto;

  background: #fff;
  transition: width 1s ease-out;
    height: 100vh;
}

.introContent1layout{padding: 2rem;}

.introContent1 p { margin-bottom: 2rem; }
.introContent1 h1 { font-size: 1.1rem; margin-bottom: 1rem; }


#animated-text {
  display: inline-block;
  font-size: 500%;
  font-weight: 700;
  line-height: 1.3;
  padding: 200px 0;
  width: 70%;
  white-space: pre-wrap;

}

.animated-text-word {
  display: inline-block;   /* ✅ prepreči lom besed */
  white-space: nowrap;
}

.animated-text-letter {
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}


/*INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1*/
/*INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1 INTROCONTENT1*/

/*INTROCONTENT11 INTROCONTENT11 INTROCONTENT11 INTROCONTENT11 INTROCONTENT1 INTROCONTENT11 INTROCONTENT1*/
/*INTROCONTENT11 INTROCONTENT11 INTROCONTENT11 INTROCONTENT11 INTROCONTENT1 INTROCONTENT11 INTROCONTENT1*/
.content11 {
width:100%; height:100%; position:relative
}
.content11right {
margin-left:40%;width:60%; height:100%; float:left; font-size:200%;background:#fff;position:relative
}

 .hero-scroll-button{padding:30px 0 0 10px;display:block;cursor:pointer} 
  
.hero-scroll-button:hover svg {
  transform: scale(1.2);
  transition: transform 0.2s ease-in-out;
}


/* ✅ LEFT IMAGE FIXED */
.left-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 40%;
  height: 100vh;
  overflow: hidden;
}

/* IMAGE FILLS CONTAINER */
.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BELA ZAVESA - zdaj se odpira od ZGORAJ navzdol */
.left-image .reveal {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  top: 0; /* 🔄 PREJ bottom: 0 */
}

/* ANIMATION - širi od zgoraj navzdol */
@keyframes revealImage {
  from { height: 100%; }
  to   { height: 0%; }
}

.box-tagline{
  position: absolute;
  bottom: 10%;
  left: 10%;
  font-weight: 600;
  width: 70%;
}

.small-tagline {
  font-size: 40%;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.7;
}

.main-headline {
  font-size: 160%;
  font-weight: 600;
  width: 70%;
}



.introContent7-animated-text {
  width: 100%;

  font-weight: 500;
  line-height: 1.1;
  display: block;
  overflow: hidden;
  text-align: left;
  text-transform: uppercase;
}

.introContent7-animated-text .word {
  display: inline-block; /* ✅ beseda ostane skupaj */
  white-space: nowrap;
}

.introContent7-animated-text .char {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.introContent7-animated-text.visible .char {
  opacity: 1;
  transform: translateY(0);
}



/*INTROCONTENT11 INTROCONTENT11 INTROCONTENT11 INTROCONTENT11 INTROCONTENT1 INTROCONTENT11 INTROCONTENT1*/
/*INTROCONTENT11 INTROCONTENT11 INTROCONTENT11 INTROCONTENT11 INTROCONTENT1 INTROCONTENT11 INTROCONTENT1*/


/*INTROCONTENT12 INTROCONTENT12 INTROCONTENT12 INTROCONTENT12 INTROCONTENT1 INTROCONTENT12 INTROCONTENT12*/
/*INTROCONTENT12 INTROCONTENT12 INTROCONTENT12 INTROCONTENT12 INTROCONTENT1 INTROCONTENT12 INTROCONTENT12*/


/*INTROCONTENT12 INTROCONTENT12 INTROCONTENT12 INTROCONTENT12 INTROCONTENT1 INTROCONTENT12 INTROCONTENT12*/
/*INTROCONTENT12 INTROCONTENT12 INTROCONTENT12 INTROCONTENT12 INTROCONTENT1 INTROCONTENT12 INTROCONTENT12*/

.content12-container {
    width: 100%;
    height: 400px;
    position: relative;
}

.content12 {
    width: 50%;
    margin: 50px 0 0 20%;
    height: 400px;
    float: left;
    font-size: 200%;
    background: #fff;
    position: relative;
}


/*INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2*/
/*INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2*/


.introContent2out {
  width: 100%;
  background: #fff;
}

.introContent2 {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden; /* prepreči izstop slike iz okvirja */
}

.introContent2-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* slika se lepo raztegne čez okvir */
  object-position: center; /* centriranje slike */
  z-index: 0;
  
  -webkit-mask-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 100'>\
  <rect width='100' height='100' fill='black'/>\
  </svg>");
  mask-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 100'>\
  <rect width='100' height='100' fill='black'/>\
  </svg>");

  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;

  -webkit-mask-size: 20vw 80vh;
          mask-size: 20vw 80vh;
}

.introContent2-text {
  position: relative;
  z-index: 1; /* postavi tekst nad sliko */
  color: white;
  font-size: 300%;
  font-weight: 600;
  letter-spacing: 2px;
}


/*INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2*/
/*INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2 INTROCONTENT2*/

/*INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21*/
/*INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21*/

.content21 {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    background: #fff;
}

.content21-wrapper {
    width: 80%;
    margin: 210px 10% 70px 10%;
}

.content21-left {
    width: 40%;
    float: left;
}

.content21-title {
    width: 65%;
    float: right;
    margin-right: 5%;
    display: block;
 font-size: 105%;
  line-height: 1.3;   
  font-weight: 300;
}

.content21-right {
    width: 55%;
    margin-left: 5%;
    float: left;
}
/*INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21*/
/*INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21 INTROCONTENT21*/


/*INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22*/
/*INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22*/

.content22 {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
}

.content22-wrapper {
    width: 80%;
    margin: 100px 10%;
    display: flex;
}

.content22-left {
    width: 50%;
    display: flex;
    align-items: center;
}

.content22-textbox {
    width: 65%;
    margin-left: 15%;
    display: block;
}

.content22-right {
    width: 40%;
    margin-left: 5%;
    position: relative;
}

.content22-image {
    width: 100%;
    display: block;
}

.content22-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}


/*VIDEO*/

.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* notranji video okvir */
.video-popup-content {
  position: relative;
  width: 80%;
  max-width: 900px;
}

/* iframe */
#videoFrame {
  width: 100%;
  height: 500px;
  border-radius: 8px;
}

/* gumb za zaprtje */
.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 45px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}
.video-close:hover {
  opacity: .6;
}

/* ---------- ✅ RESPONSIVE POPUP CSS ---------- */

/* za tablice */
@media (max-width: 1024px) {
  #videoFrame {
    height: 420px;
  }
}

/* za telefone */
@media (max-width: 768px) {

  .video-popup-content {
    width: 92%;
  }

  #videoFrame {
    height: 300px;
  }

  .video-close {
    font-size: 38px;
    top: -35px;
  }
}

/* zelo majhni telefoni (iPhone SE) */
@media (max-width: 480px) {

  .video-popup-content {
    width: 95%;
  }

  #videoFrame {
    height: 220px;
    border-radius: 6px;
  }

  .video-close {
    font-size: 32px;
    top: -30px;
    right: 5px;
  }
}



/*VIDEO*/



/*INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22*/
/*INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22 INTROCONTENT22*/


/*INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3*/
/*INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3*/
/* Kontejner z maksimalno širino */

.introContent3{
  background:#fff;
width: 100%;
padding:100px 0
}

.introContent3inner

 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 0; /* višina zgoraj in spodaj */

}

/* Dve koloni */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px; /* razmik med levim in desnim blokom */
}

.introContent3-text1 {
  font-size: 2.8rem;
  line-height: 1.25;
  color: #282828;
  font-weight: 400;
}

.introContent3-text2 {
  color: #282828;
  font-size: 90%;
  font-weight: 400;
  line-height: 1.6;
  max-width: 460px;
}

/* ✅ Responsive — na mobilnih stacked */
@media (max-width: 860px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .introContent3-text1 {
    font-size: 280%;
  }
}
/*INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3*/
/*INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3 INTROCONTENT3*/

/*INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31*/
/*INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31*/

.content31 {
    width: 100%;
    float: left;
    background: #fff;
    display: flex;
}

.content31-wrapper {
    width: 80%;
    margin: 200px 10%;
}

.content31-left {
    width: 40%;
    float: left;
}

.content31-img {
    width: 100%;
    display: block;
}

.content31-textbox {
    width: 65%;
    float: right;
    margin-right: 5%;
}

.content31-right {
    width: 55%;
    margin: 0 0 0 5%;
    float: left;
}




.accordion {
  position: relative;
  padding: 40px 0;
  border-top: 1px solid #E3E0DE;
}

.accordion:last-child {
  border-bottom: 1px solid #E3E0DE;
}

/* Header + icon */
.accB {
  display: flex;
  align-items: center;
  justify-content: space-between; /* ikona desno */
  cursor: pointer;
}

.accordion__icon {
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;                /* na začetku vidna */
}

/* Animacija contenta */
.accO {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: block;
}



.accordion.open .accordion__icon {
  opacity: 0;
}
/*INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31*/
/*INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31 INTROCONTENT31*/



/*INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32*/
/*INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32*/
/* MAIN WRAPPER */
.content32 {
    width: 100%;
    float: left;
    background: #fff;
    display: flex;
}

.content32-wrapper {
    width: 60%;
    margin: 0 20%;
}

/* COMPANY CARD */
.content32-companycard {
    width: 100%;
    display: flex;
    justify-content: center;

}

.content32-companycard-wrapper {
    width: 70%;
    max-width: 900px;
    margin-top: 20px;
}

.content32-companycard-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.content32-row {
    display: flex;
}

.content32-col1 {
    width: 190px;
    font-weight: bold;
    color: #333;
}

.content32-col2 {
    flex: 1;
}


/*INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32*/
/*INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32 INTROCONTENT32*/




/*INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4*/
/*INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4*/


 .introContent4section {
    height:410px;
    display:flex;
    overflow:hidden;
     width:100%;
     background:#fff
  }

  /* LEFT (text + wipe layer) */
  .introContent4 {
    width:70%;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    background:white;
    color:black;
    overflow:hidden;
    transition:color .25s linear;   
  }

  .introContent4.dark {
    color:white;
  }

  .introContent4content {
    max-width:600px;
    text-align:center;
    z-index:2;
  }

  .introContent4content h1 { font-size:500%}
  .introContent4content p { font-size:100%; margin-top:20px; }

  /* ✅ WIPE — NEW NAME */
  .introContent4wipe {
    position:absolute;
    inset:0;
    background:#1b1b1b;
    transform-origin:left;
    transform:scaleX(0);
      transition: none !important;  /* zelo pomembno */
    z-index:1;
      will-change: transform;
  }




  /* RIGHT (IMAGE) */
  .introContent4right {
    width:30%;
    height:410px;
    position:relative;
    overflow:hidden;
  }

  .introContent4right img {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;

    transform:translateX(-100%);
    opacity:0;

    transition:
      transform .55s cubic-bezier(0.16, 1, 0.3, 1),
      opacity .45s ease;
  }

/*INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4*/
/*INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4 INTROCONTENT4*/

/*INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41*/
/*INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41*/
.content41 {
    width: 100%;
    float: left;
    background: #E3E0DE;
    display: flex;
}

.content41-inner {
    width: 50%;
    margin: 150px 25%;
    text-align: center;
}
/*INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41*/
/*INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41 INTROCONTENT41*/



/*INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42*/
/*INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42*/

.content42 {
    width: 100%;
    float: left;
    background: #fff;
    display: flex;
}

.content42-wrapper {
    width: 50%;
    margin: 100px 25%;
    text-align: center;
}

.content42-cert-row {
    width: 100%;
    display: flex;
    justify-content: center;
}

.content42-cert-list {
    width: 80%;
    padding: 5% 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.content42-cert {
    width: 22%;
    max-width: 260px;
    height: auto;
    display: block;
}

.content42-image {
    width: 100%;
    height: auto;
    float: left;
    display: block;
}

   .card-container {
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    @media (min-width: 900px) {
      .card-container { flex-direction: row; gap: 80px; align-items: flex-start; }
      .card-section { flex: 2; }
      .card-aside { flex: 1; }
    }

    .card {
      margin-bottom: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid #eee;
    }

    .card:last-child { border-bottom: none; }

    .card h2 {
      font-size: 100%;
      text-transform: uppercase;
      margin: 0 0 15px;
      letter-spacing: 0.5px;
    }

    .card h3 {
      font-size: 100%;
      margin: 0 0 4px;
    }



    .card .details {
      font-size: 95%;
      line-height: 1.5;
    }

    .card .footer-note {
      color: #555;
      font-size: 90%;
      margin-top: 10px;
    }
    
     a {
      color: #000;
      text-decoration: underline;
    }

    a:hover {
      text-decoration: none;
    }   
    
    .details svg{width:30px;height:auto}
   

/*INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42*/
/*INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42 INTROCONTENT42*/



/*INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5*/
/*INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5*/
 
  .introContent5 {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
  }

  .introContent5__img {
    position: absolute;
    width: 160%;
    height: 170%;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    will-change: transform;
  }

  .introContent5__info {
    position: absolute;
    left: 10%;
    bottom: 60px;

    background: white;
    padding: 60px 80px;
    width: 50vw;
    max-width: 900px;

    border-radius: 18px;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
  }

  .introContent5__left {
    flex: 1;
    font-size: 200%;
    font-weight: 700;
    line-height: 1.1;
  }

  .introContent5__right {
    flex: 1;
    font-size: 100%;
    line-height: 1.6;
    color: #333;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .introContent5__info {
      flex-direction: column;
      width: 80vw;
      padding: 40px;
    }
    .introContent5__left {
      font-size: 160%;
    }
  }
/*INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5*/
/*INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5 INTROCONTENT5*/

/*INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 */
/*INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 */
.content-51 {
    width: 100%;
    float: left;
    background: #fff;
    display: flex;
}

.content-51-wrapper {
    width: 80%;
    margin: 0 10%;
}

.content-51-left {
    width: 40%;
    float: left;
}

.content-51-right {
    width: 55%;
    margin-left: 5%;
    float: left;
}

.content-51-textbox {
    width: 65%;
    float: right;
    margin: 200px 0 0 5%;
}


/* PARALLAX SCENA */
.parallax {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* PLASTI KI SE PREMIKAJO (premika JS) */
.parallax-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

/* layering */
.parallax-layer-top    { z-index: 2; }
.parallax-layer-bottom { z-index: 1; }

/* NATANČNA POZICIJA SLIK (brez transform!) */
.parallax-img-top {
  width: 530px;
  height: 530px;
  object-fit: cover;
  position: relative;
  left: -60px;   /* horizontalni zamik */
  top: 500px;    /* vertikalni zamik */
}

.parallax-img-bottom {
  width: 400px;
  height: 400px;
  object-fit: cover;
  position: relative;
  left: 100px;   /* horizontalni zamik */
  top: 200px;    /* vertikalni zamik */
}


/*INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 */
/*INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 INTROCONTENT51 */



/*INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6*/
/*INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6*/

/* SECTION */

.introContent6_inner{
  width: 60%;
  min-height: auto;
  padding: 200px 0;  /* ✅ manj paddinga, brez praznega prostora */
  margin: 0 20%;
  display: block;         /* ✅ flex ni potreben, povzroča vertikalni space */
}


.introContent6_heroSection {
  width: 100%;
  background:#fff
}

.introContent6_container {
  display: flex;
  flex-direction: column;

}

/* HEADLINE (scroll animacija črk) */


.introContent6_char {
  display: inline-block;
  color: #E9E9E9;    /* start color (siva) */
  transition: color 0.15s linear;
}

/* DESNI OPIS + LINK */
.introContent6_side {
  width: 30%;
  margin-left: auto;      /* ✅ porine na desno brez premika navzdol */
  margin-top: 40px;       /* ✅ manjši odmik od naslova */
  text-align: left;
}

.introContent6_side p {
  font-size: 100%;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 30px;
}

.introContent6_space {
  display: inline-block;
  width: .25em; /* lahko spremeniš širino spacinga */
}

.introContent6_link {
  display: inline-block;
  text-decoration: none;
  font-size: 87%;
  letter-spacing: 0.05em;
  color: #000000;
  font-weight: 600;
  position: relative;
}

.introContent6_link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 42px;
  height: 2px;
  background: #1d3b36;
  transition: width .3s ease;
}

.introContent6_link:hover::after {
  width: 100%;
}

.introContent6_headline {
  width: 100%;
  font-size: 310%;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0em;

word-break: keep-all; overflow-wrap: normal;


.background-video {
  transition: opacity .4s ease;
}
}

/*INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6*/
/*INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6 INTROCONTENT6*/
 
 
 
 
 

/* FOOTER */
/*INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8*/
/*INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8*/


.introContent8-footer-container {
  width: 100%;
  background: #E1E1E1;
 padding: 50px 0; 
 float:left;
 margin:0 auto
}

.introContent8-footer-pad {
  padding:100px 10%

}

/* row: logo left - nav right */
.introContent8-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.introContent8-logo img {
  width: 150px;
  height: auto;
}

/* Navigation */
.introContent8-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.introContent8-nav a {
  text-decoration: none;
  color: #222;
  font-size: 14px;
}

/* CTA button */
.introContent8-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  border: 1px solid #222;
  text-decoration: none;
  color: #222;
  transition: color .3s ease;
}

/* Animation layer */
.introContent8-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #333;
  z-index: -1;
  clip-path: inset(100% 0 0 0);
  transition: clip-path .45s cubic-bezier(.4, 0, .2, 1);
  border-radius: inherit;
}

.introContent8-btn:hover::before {
  clip-path: inset(0 0 0 0);
}

.introContent8-btn:hover {
  color: #fff;
}

/* copyright + privacy */
.introContent8-footer-info {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
  color: #666;
  font-size: 13px;
}

.introContent8-footer-info a {
  text-decoration: none;
  color: #666;
}

/* animated headline */
.introContent8-animated-text {
  width: 100%;
  font-size: 312%;
  font-weight:500;
  line-height: 1;
  margin-bottom: 2rem;
  display: inline-block;
  overflow: hidden;
  text-align:left;
    text-transform: uppercase;
    letter-spacing: -2px;
    color:#333
}

.introContent8-animated-text span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.introContent8-animated-text.visible span {
  opacity: 1;
  transform: translateY(0px);
}
/*INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8*/
/*INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8 INTROCONTENT8*/
/* FOOTER */




/*INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10*/
/*INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10*/
/*INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10*/

/* ================= GRID ================= */
.introContent10-grid div[class*=introContent10-item] {
  background: #000099;
  box-shadow: inset 0 0 0 1px #ddd;
  padding: 15px;
  float: left;
  position: relative;
  overflow: hidden;
  
}

.introContent10-gridcf{
  content: "";
  display: block;
  clear: both;
}



.introContent10-grid{background:#000099;z-index:0}


/* MOBILNA OSNOVNA POSTAVITEV */
.introContent10-item-small,
.introContent10-item-large {
  width: 100%;
  overflow: hidden;
}

.introContent10-height-small { height: 320px; }
.introContent10-height-large { height: 320px; }

/* TABLET */
@media (min-width: 640px) {
  .introContent10-item-small { width: 50%; }
  .introContent10-item-large { width: 50%; }
  .introContent10-height-large { height: 320px; }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .introContent10-item-small { width: 33.3%; }
  .introContent10-item-large { width: 66.6%; }
  .introContent10-height-large { height: 640px; }
}

/* ================= IMAGE ================= */
.introContent10-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.introContent10-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= OVERLAY ================= */
.introContent10-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  text-align: center;
  transition: all .8s;
 cursor: pointer;
  /* center gumb vedno */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* NASLOV IN OPIS */
.introContent10-overlay h3 {
  font-size: 150%;
  color: #fff;
  font-weight: bold;
  margin: 130px 0 20px;
  text-transform: uppercase;
}
.introContent10-overlay p.introContent10-desc {
  width: 60%;
  margin: 0 auto 25px;
  line-height: 22px;
  color: #fff;
}

/* ANIMACIJE – default: vse skrito */
.introContent10-overlay * {
  opacity: 0;
  transition: all .8s;
}

/* Naslov se prikaže prej */
.introContent10-overlay h3 { opacity: 1; }

/* HOVER */
.introContent10-overlay:hover {
  background: rgba(0, 0, 153, 0.7);
}
.introContent10-overlay:hover * {
  opacity: .7;
}
.introContent10-overlay:hover h3 {
  margin-top: 70px;
  opacity: 1;
}

/* ================= BUTTON ================= */

/* ================= BUTTON ================= */
.introContent10-btn {
  margin: 0 auto;
  width: 55px;
  height: 55px;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  outline: none;
  position: relative;
  overflow: hidden;

  /* Animacija pozicije */
  transform: translateY(25px);
   transition: transform .35s ease, background-size .3s ease, filter .3s ease;

  /* SVG IKONA */
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M12 5v14M5 12h14' stroke='white' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 32px;

  /* BOOTSTRAP-LIKE RADIUS RESET */
  -webkit-tap-highlight-color: transparent;
}

/* Gumb pride gor */
.introContent10-overlay:hover .introContent10-btn {
  transform: translateY(0);
}

/* ================= BORDER ANIMACIJA ================= */
.introContent10-btn:hover {
  border-color: white;
  transform: translateY(0) rotate(90deg);
  background-size: 40px;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.9));
}

@keyframes borderPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ================= ROTACIJA IKONE ================= */
.introContent10-btn:hover {
  background-size: 40px; /* enlarge */
  transform: translateY(0) rotate(90deg); /* rotate */
}

.introContent10-btn:active {
  transform: translateY(0) scale(0.9) rotate(180deg);
}

/* ================= RIPPLE EFEKT ================= */
.introContent10-btn::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  transform: scale(0);
  opacity: 0;
}

.introContent10-btn:active::after {
  transform: scale(12);
  opacity: 0;
  animation: ripple .5s ease-out;
}

@keyframes ripple {
  0%   { transform: scale(0); opacity: 0.5; }
  100% { transform: scale(12); opacity: 0; }
}


/* ================= LIGHTBOX ================= */
.introContent10-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.introContent10-lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 6px;
  opacity: 0;
  transition: opacity .4s ease;
}

.introContent10-lightbox-img.show {
  opacity: 1;
}

.introContent10-caption {
  color: white;
  font-size: 112%;
  opacity: .9;
  margin-top: 15px;
}

.introContent10-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 50px;
  color: white;
  cursor: pointer;
}

.introContent10-prev,
.introContent10-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: white;
  transform: translateY(-50%);
  user-select: none;
  opacity: .7;
}

.introContent10-prev:hover,
.introContent10-next:hover {
  opacity: 1;
}

.introContent10-prev { left: 50px; }
.introContent10-next { right: 50px; }


/*INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10*/
/*INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10*/
/*INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10 INTROCONTENT10*/


/*********************************************/
/***   RESPONSIVE – TABLET (max-width:1024) ***/
/*********************************************/
@media (max-width: 1080px) {

  body {
    font-size: 1.05em;
  }

  /* Hero title */
  .animated-title .line {
    font-size: 420%;
  }

  .animated-title .sub {
    font-size: 90%;
  }

  /* Hamburger */
  .hamburger_border {
    top: 20px;
    right: 20px;
    padding: 12px 16px;
  }

  /* introContent1 */
  #animated-text {
    font-size: 300%;
    width: 80%;
  }

  /* introContent11 (slika levo, tekst desno) */
  .left-image { width: 45%; z-index:0}
  .content11right { width: 55%; margin-left: 45%; font-size: 150%; }

  /* introContent2 */
  .introContent2-text {
    font-size: 230%;
  }

  /* content21 */
  .content21-wrapper { width: 90%; margin: 120px 5% 60px; }
  .content21-left, .content21-right { width: 100%; float: none; }
  .content21-right { margin-left: 0; margin-top: 30px; }
  

.content12-container {
    width: 100%;
    height: auto;
    position: relative;
}

.content12 {
    width: 100%;
    margin: 200px 0 0 0;
    height: auto;
    float: left;
    font-size: 150%;
    background: #fff;
    position: relative;
}

  /* content22 */
  .content22-wrapper {
    flex-direction: column;
    width: 90%;
    margin: 60px 5%;
  }
  .content22-left, .content22-right {
    width: 100%;
    margin-left: 0;
  }
  .content22-textbox {
    width: 85%;
    margin: 0 auto 30px;
  }

  /* introContent3 */
  .introContent3-text1 { font-size: 200%; }

  /* content31 */
  .content31-wrapper { width: 90%; margin: 120px 5%; }
  .content31-left { width: 100%; float: left; margin: 0; }
 	.content31-right { width: 100%; float: left; margin: 0 }  
  .content31-textbox { width: 100%; margin: 20px 0; }

  /* content32 */
  .content32-wrapper { width: 80%; margin: 0 10%; }
  .content32-companycard-wrapper { width: 100%; }

  /* introContent4 */
  .introContent4content h1 { font-size: 340%; }
  .introContent4content p { font-size: 90%; }
  .introContent4section { height: 350px; }

  /* content42 */
  .content42-wrapper { width: 80%; margin: 80px 10%; }
  .content42-cert-list { gap: 20px; }

  /* introContent5 */
  .introContent5__info {
    width: 70vw;
    padding: 40px 50px;
    gap: 25px;
  }
  .introContent5__left { font-size: 150%; }

  /* parallax */
  .parallax-img-top { width: 380px; height: 380px; top: 300px; }
  .parallax-img-bottom { width: 300px; height: 300px; top: 140px; }

  /* introContent6 */
  .introContent6_inner { width: 80%; margin: 0 10%; }
  .introContent6_headline { font-size: 240%; }
  .introContent6_side { width: 50%; }


}

/*********************************************/
/***   RESPONSIVE – PHONE (max-width:768)   ***/
/*********************************************/



@media (max-width: 810px) {

  body {
    font-size: 1em;
    line-height: 1.3;
  }

  .hamburger_border {
    gap: 15px;
    padding: 10px 12px;
  }

.logo {
  position: absolute;
  top: 10%;
  left: 25%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  transition: transform 0.2s ease-out;
}


  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: block;
  }


.hero-scroll-button{
    display: none;
  }

  /* Hero */
  .animated-title {
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .animated-title .line {
    justify-content: center;
    font-size: 260%;
  }

  .animated-title .sub {
    font-size: 70%;
    margin: 20px auto 0;
  }

  /* introContent1 */
  #animated-text {
    font-size: 200%;
    width: 100%;
    padding: 100px 0;
  }


.introContent1 {
  width: 100%; 
  margin: 0 auto;

  background: #fff;
  transition: width 1s ease-out;
    height: auto;
}



/* 

  .left-image { position: relative; width: 90%; height: 50vh; margin:230px 0 0 0}
  .content11right { width: 100%; margin-left: 0; height: auto; padding: 40px 0; }

  .introContent2-text { font-size: 180%; }

.box-tagline{
  position: absolute;
  top: 50%;
  left: 5%;
  font-weight: 600;
  width: 90%;
}

*/



  /* Ugasnemo absolute, vse gre v normalen flow */
  .box-tagline {
    position: static !important;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 40px 20px 0;
    text-align: left;
  }

  .main-headline {
    font-size: 130% !important;
    width: 100%;
  }

  .small-tagline {
    font-size: 55%;
  }

  /* content11right se mora razširiti full width */


.left-image { 
  position: relative; 
  width: 90%; 
  height: 50vh; 
  margin:230px 0 0 0;
}

.content11right {
    margin-left: 0 !important;
    width: 100% !important;
    float: none !important;

    /* Ključno: naj se ne razteza čez sliko */
    margin-top: 20px !important;  
    height: auto !important;      /* ← naj se prilagodi glede na besedilo */
  }

  .box-tagline {
    position: relative !important;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 20px;
  }

  .main-headline {
    font-size: 130%;
  }




  /* content21 */
    .content21{margin-top:0}
  .content21-wrapper { margin: 80px 5%; }
  .content21-title { width: 100%; margin:0 0 20px 0; }
  .content21-left img { width: 100%; }

  /* content22 */
  .content22{margin-top:0}
  
  .content22-textbox { width: 100%; margin: 0; }
  .content22-right { width: 100%; margin-top: 20px; }

  /* introContent3 */
  .introContent3inner { padding: 20px 10%; }
  .introContent3-text1 { font-size: 180%; }

  /* content31 */
  .content31-wrapper { margin: 60px 5%; }
  .content31-textbox { width: 100%; margin: 20px 0; }

  /* content32 */
  .content32-wrapper { width: 90%; margin: 0 5%; }
  .content32-col1 { width: 110px; }

  /* introContent4 */
  .introContent4section { height: auto; flex-direction: column; }
  .introContent4 { width: 100%; padding: 60px 0; }
  .introContent4right { width: 100%; height: 250px; }

  .content42{margin-top:0}

  /* content42 */
  .content42-cert-list {
    flex-wrap: wrap;
    gap: 30px;
  }
  .content42-cert { width: 44%; }


  .introContent5__info {
    width: 90vw;
    left: 5%;
    bottom: 30px;
    padding: 25px 30px;
  }
  .introContent5__left { font-size: 130%; }
  .introContent5__right { font-size: 90%; }

	
  /* introContent5 */
  
 .content-51-wrapper {
    width: 90%;
    margin: 0 5%;
} 


.content-51-left {
    width: 50%;
    float: left;
}

.content-51-right {
    width: 45%;
    float: left;
}


.content-51-textbox {
    width: 90%;
    float: right;
    margin: 60% 0 0 0;
}

    /* introContent5 */



  /* introContent6 */
  .introContent6_inner { width: 90%; margin: 0 5%; padding: 120px 0; }
  .introContent6_headline { font-size: 160%; }
  .introContent6_side { width: 100%; margin-top: 30px; }

  /* footer */
  .introContent8-footer-pad { padding: 50px 5%; }
  .introContent8-nav ul { flex-direction: column; gap: 20px; }
  .introContent8-animated-text { font-size: 180%; }
  
  /* footer */
  .introContent8-footer-row {
  display:block;
    flex-direction: column;
    gap: 0;
  }  
  
 /* wrapper padding */
  .introContent8-footer-pad {
    padding: 50px 5%;
  }

  /* postavitev v stolpec */
  .introContent8-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  /* logo */
  .introContent8-logo img {
    width: 120px;
  }

  /* NAV meni – stolpec */
  .introContent8-nav ul {
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
  }

  .introContent8-nav a {
    font-size: 15px;
  }

  /* CTA button – full width optional */
  .introContent8-btn {
    margin-top: 10px;
    float:left
  }

  /* animated headline */
  .introContent8-animated-text {
    font-size: 180%;
    letter-spacing: -1px;
  }

  /* copyright/info */
  .introContent8-footer-info {
    justify-content: flex-start;
    font-size: 11px;
    margin-top: 40px;
  }


  
}



@media (max-width: 600px) {
.logo {
  position: absolute;
  top: 15%;
  left: 40%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  transition: transform 0.2s ease-out;
}


  /* introContent5 */


.content-51 {
    width: 100%;
    float: left;
    display: block;
}


  
 .content-51-wrapper {
    width: 100%;
    margin: 100px 0;
} 


.content-51-left {
    width: 100%;
    float: left;
    
    
}

.content-51-right {
    width: 90%;
    float: left;

}


.content-51-textbox {
    width: 100%;
    float: left;
    margin: 30px 0 100px;
}


.parallax {
  position: relative;
  height: auto;
  overflow: hidden;
}

.parallax-layer {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  will-change: auto;
}

.parallax-img-top {
  width: 90%;
  height: auto;
  margin:0;
  object-fit: cover;
  position: relative;
  left: 0;   /* horizontalni zamik */
  top: 0;    /* vertikalni zamik */
}

.parallax-img-bottom {
  width: 90%;
  height: auto;
    margin:0;
  object-fit: cover;
  position: relative;
  left: 0;   /* horizontalni zamik */
  top: 0;    /* vertikalni zamik */
}
    /* introContent5 */
    
    
}


