@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: rgba(205, 198, 198, 0.5);
    color:white;
}
/* HEADER */
/* HEADER - sve u jednoj liniji */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 20px;
  background:rgba(0,0,0,0.9);
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:100;
  box-sizing:border-box;
  flex-wrap:nowrap;           /* <-- ključno */
}

/* LOGO (dozvoli da se smanjuje) */
.left-group{
  flex:0 1 auto;              /* <-- može da se smanji */
  min-width:0;
}

.logo{
  font-weight:bold;
  text-transform:uppercase;
  color:#E0B84F;
  margin:0;
  white-space:nowrap;         /* da ne lomi u 2 reda */
  font-size:clamp(14px, 2.2vw, 24px); /* <-- automatski se smanjuje */
}

.logo span{ color:#ccc; }

/* NAV (centar) */
.main-nav{
  flex:1 1 auto;
  min-width:0;
  display:flex;
  justify-content:center;
}

.main-nav ul{
  list-style:none;
  display:flex;
  align-items:center;
  gap:22px;
  padding:0;
  margin:0;
  white-space:nowrap;
}

.main-nav a{
  text-decoration:none;
  color:#E0B84F;
  font-weight:500;
  font-size:14px;
  transition:color .3s;
}

.main-nav a:hover{ color:#fff; }

/* RIGHT */
.right-group{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.social-icons{
  display:flex;
  align-items:center;
  gap:14px;
}

.social-icons a{
  color:#fff;
  font-size:18px;
  transition:transform .3s, color .3s;
}

.social-icons a:hover{
  transform:scale(1.12);
  color:#E0B84F;
}

/* DROPDOWN */
.mentoring-dropdown{ position:relative; }

.mentoring-dropdown .dropdown-content{
  display:none;
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  background:#111;
  min-width:220px;
  border-radius:8px;
  padding:10px 0;
  z-index:9999;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
}

.mentoring-dropdown.open .dropdown-content{ display:block; }

.dropdown-content li{ padding:6px 14px; }
.dropdown-content a{ color:#fff; font-size:13px; }
.dropdown-content a:hover{ color:#E0B84F; }

/* LANGUAGE (hover) */
.language-selector{ position:relative; cursor:pointer; }
.language-selector i{ color:#fff; font-size:18px; }

.language-dropdown{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  background:#111;
  border:1px solid #333;
  border-radius:8px;
  display:none;
  flex-direction:column;
  padding:6px;
}

.language-selector:hover .language-dropdown{ display:flex; }

.language-dropdown button{
  background:none;
  border:none;
  color:#fff;
  padding:6px 10px;
  cursor:pointer;
  font-size:12px;
  text-align:left;
}
.language-dropdown button:hover{ color:#E0B84F; }


/* MOBILE: ostaje u liniji, samo smanji razmake/font */
@media (max-width:768px){
  header{
    padding:10px 12px;
    gap:3px;
  }
  .logo{
    font-size:14px;
    line-height:1.1;
  }
  
  .logo span{
    display:block;
  }
  .main-nav{ overflow: visible !important; }
  .main-nav ul{ overflow: visible !important; }
  .main-nav ul{ gap:12px; }
  .main-nav a{ font-size:12px; }

  .social-icons{ gap:10px; }
  .social-icons a{ font-size:16px; }

  /* ako baš nema mjesta, nav može malo da "skroluje" umjesto da pada dole */
  .main-nav{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  .main-nav::-webkit-scrollbar{ display:none; }
}


/* --- HERO SEKCIJA --- */
.hero {
    position: relative;
    width: 100%;
    height: 150vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
/*dugme za mijenjanje jezika*/
.language-selector .fa-globe {
  font-size: 20px;
  color: white;
  cursor: pointer;
}

.language-dropdown {
  position: absolute;
  top: 30px;
  right: 0;
  background: black;
  border: 1px solid white;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 10;
}

.language-selector:hover .language-dropdown {
  display: flex;
}

.language-dropdown button {
  background: none;
  border: none;
  color: white;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
  text-align: left;
}

.language-dropdown button:hover {
  background-color: #E0B84F;
}

/* Slika u pozadini */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit:cover;
    filter: grayscale(50%);
    transition: opacity 0.6s ease;
}

/* Tamni sloj preko slike */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(205, 198, 198, 0);
}

/* Glavni tekst u centru */
.hero-content {
    position: absolute;
    top: 12%;
    left: 2%;  /* Pomera tekst ka levom uglu */
    text-align: left; /* Poravnava tekst levo */
    max-width: 30%; /* Sprečava da tekst bude preširok */
    
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 500;
    text-transform: uppercase;
    
}

.hero-content img {
    width: 400px; /* Promeni veličinu po potrebi */
    height: auto;
    margin-left: 0%;
    /* Poboljšava vidljivost ako je logo tamniji */
}


@media (max-width: 768px){
  /* =========================
   HERO – MOBILE ONLY
   ========================= */


  /* 1) Hero kao okvir */
  .hero{
    position: relative;
    overflow: hidden;
    height: 420px; /* po želji 380–520 */
    margin-top: 110px;
  }

  /* 2) Pozadina */
  .hero .background{
    width: 100%;
    height: 420px;        /* ista kao min-height iznad */
    object-fit: cover;
   
    object-position: center top;
    display: block;
  }

  /* 3) Overlay preko slike */
  .hero .overlay{
    position: absolute;
    inset: 0;
    /* ako želiš malo tamnije radi čitljivosti teksta:
    background: rgba(0,0,0,0.25);
    */
    pointer-events: none;
  }

  /* 4) Sadržaj preko slike */
  .hero .hero-content{
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 20px 18px;
    box-sizing: border-box;
  }

  /* 5) LOGO: desno gore, malo spušten */
  .hero .hero-content > img{
    position: absolute;
    right: -5px;
    top: 10px;          /* promijeni npr 50–90px */
    width: 130px;        /* promijeni po želji */
    height: auto;
    margin: 0;
    z-index: 3;
  }

  /* 6) NASLOV: ostaje lijevo, da ne udari u logo */
  .hero .hero-content h1{
    margin: 0;
    position: absolute;
    left: 16px;
    top: 130px;          /* promijeni ako želiš niže/više */
    max-width: 70%;
    font-size: 60px;    /* probaj 44–60 */
    line-height: 0.92;
    letter-spacing: 1px;
    white-space: normal;
  }


}
 

 

 




.social-icons {
    display: flex;
    gap: 15px; /* Dodaje razmak između ikonica */
}

.social-icons a {
    display: inline-block;
    filter: brightness(0) invert(1); /* pretvori sve ikonice u bele */
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
}








.about-section {
    background-color: rgba(205, 198, 198, 0);
    color: #E0B84F;
    padding: 100px 40px;
  }
  
  .about-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-video-container {
    flex: 1 1 600px;
    aspect-ratio: 16 / 9;
    position: relative;
    width: 100%;
    max-width: 100%;
  }
  .video-overlay,
.youtube-embed{
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #000;
}
/* iframe da popuni wrapper */
.youtube-embed iframe{
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}
.video-overlay .host-image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


  .about-text {
    flex: 1 1 400px;
    max-width: 500px;
  }
  
  .about-text h2 {
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #E0B84F;
  }
  
  .about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: black;
  }


  .host-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #E0B84F;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 3;
    line-height: 1.4;
  }





.play-button {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    opacity: 0.8;
    text-shadow: 2px 2px 10px black;
    transition: transform 0.3s;
    z-index: 3;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}






/*finding truth*/

.featured-section {
   

    background-color: rgba(205, 198, 198, 0); /* počinje providno */
    padding: 80px 40px;
    transition: background-color 0.25s linear;
   
}

.featured-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}

.featured-image {
    flex: 1;
    position: relative;
}

.featured-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border: 5px solid white;
}

.signature {
    font-family: 'Caveat', cursive;
    color: #E0B84F;
    font-size: 24px;
    margin-top: 10px;
    text-align: left;
}

.featured-text {
    flex: 1;
    max-width: 600px;
}

.featured-text h2 {
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #E0B84F;
}

.featured-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: black;
}






/* dio sa epizodama*/
.cta-button {
    display: inline-block;
    background: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 2px;
    border-bottom: 2px solid #E0B84F;
    transition: color 0.3s;
}

.cta-button:hover {
    color: #E0B84F;
}



.episodes-section {
    background-color: white;
    padding: 100px 40px;
    color: #E0B84F;
    max-width: 1200px;
    margin: 0 auto;
}

.episodes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.episodes-header h2 {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 2px;
}

.view-more-btn {
    color: #E0B84F;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
}


.watch-btn:hover{
  color: #E0B84F;
}

.episode-thumb {
    flex: 1;
    min-width: 300px;
    aspect-ratio: 16 / 9;
    background-color: whitesmoke;
    position: relative;
}

.episode-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.episode-date {
    font-weight: bold;
    margin-bottom: 8px;
}



.episodes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 60px;
}

.episode-card {
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
    padding: 20px;
    box-shadow: whitesmoke
}

.episode-card.left {
    grid-column: 1 / 2;
}

.episode-card.right {
    grid-column: 2 / 2;
}

.episode-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
}

.episode-thumb iframe {
    width: 100%;
    height: 100%;
}

.episode-info h3 {
    font-size: 22px;
    margin: 10px 0;
}

.episode-desc {
    color: #666;
    margin-bottom: 20px;
}

.watch-btn {
    background-color: rgba(205, 198, 198, 0.5);
    color: white;
    padding: 12px 20px;
    display: inline-block;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 1px;
}

.watch-btn span {
    color: #E0B84F;
    margin-right: 10px;
}

@media (max-width: 768px){

  .episodes-header{
    display: flex;
    flex-direction: column;      /* umjesto u redu – ide jedan ispod drugog */
    align-items: flex-start;     /* poravnato lijevo */
    gap: 8px;                    /* razmak između PODCAST i VIEW MORE */
  }

  .view-more-btn{
    margin-top: 6px;             /* dodatni mali razmak */
    font-size: 16px;             /* po želji malo manje */
    letter-spacing: 2px;
  }

}
 
  
  
  
  
 
  
  


    /*za ekrane*/
    img, iframe {
        max-width: 100%;
        height: auto;
      }






/* === FOOTER INSTAGRAM SECTION === */

.footer-instagram-section {
  padding: 70px 40px;
  background-color: #f7efe4; /* promijeni boju po želji */
}

/* 3 kolone */
.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

/* LEFT NAV */
.mission-section {
  padding: 60px 40px;
  display: flex;
  justify-content: flex-start; /* lijeva strana */
}

.mission-content {
  max-width: 300px;
}

.mission-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: left;
  color: #e8720a;;
}

.underline {
  width: 60px;
  height: 4px;
  background-color: #E4C59A; /* nijansa kao na slici */
  margin: 10px 0 25px 0;
}

.mission-intro,
.mission-footer {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.mission-list li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 16px;
  color: #333;
}

.icon {
  font-size: 22px;
  font-weight: bold;
  margin-right: 12px;
}

/* Strelice u bojama sa slike */
.arrow-blue { color: #5D8DAA; }
.arrow-orange { color: #E37849; }
.arrow-teal { color: #7BA39D; }
.arrow-gold { color: #D8A14A; }

/* CENTER INSTAGRAM GRID */

.footer-instagram h3 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #E0B84F;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 20px;
  border: 3px solid #e4c27d; /* okvir */
  max-width: 500px;
}

.insta-grid img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

/* RIGHT PROFILE */

.footer-profile {
  max-width: 260px;
  text-align: center;
  
}

.profile-img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.footer-profile h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #e8720a;
}

.footer-profile p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* SOCIAL ICONS */

.footer-social {
  margin-top: 20px;
  text-align: center;
}

.footer-social a {
  color: #333;
  font-size: 22px;
  margin: 0 10px;
  text-decoration: none;
}

.footer-social a:hover {
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-columns {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-nav {
      text-align: center;
  }

  .footer-profile {
      text-align: center;
  }
}



.contact-float{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.contact-main img{
  width: 60px;        /* VELIČINA – možeš promijeniti */
  height: 60px;
  border-radius: 50%; /* pravi krug */
  object-fit: cover;
  border: 2px solid white; /* eventualni okvir */
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-options{
  display: none;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.contact-option{
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
}




/*mentoring*/

      .mentoring-section {
        padding: 80px 40px;
        background: #f7efe4;
    }
    
    .mentoring-title {
        text-align: center;
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 40px;
        color:  #e8720a;
    }
    
    /* GENERAL SLIDE STYLING */
    .mentoring-slider {
        position:relative;
    }
    
    .slide {
        display: none;
        align-items: stretch;
        gap: 0;
    }
    
    .slide.active {
        display: flex;
    }
    
    /* BLUE BOX BASE */
    .blue-box {
        background: #B8D6C5;
        padding: 60px 60px;
        color: white;
        flex: 1;
        position:relative;
    }
    
    
    
    /* NUMBER BACKGROUND */
    .big-number {
        font-size: 100px;
        font-weight: 600;
        opacity: 0.15;
        position: absolute;
        top: 10px;
        left: 30px;
        line-height: 0.8;
    }
    
    .blue-box h3 {
        font-size: 22px;
        margin-top: 70px;
        margin-bottom: 20px;
    }
    
    .blue-box p {
        line-height: 1.8;
        max-width: 420px;
    }
    
    /* SIDE IMAGE */
    .side-image {
        width: 50%;
        object-fit: cover;
        border-radius: 0;
    }
    
    .layout-1 {
      flex-direction: row;
     
      border-radius: 10px;
  }
    /* SLIDE 2 (REVERSE LAYOUT) */
    .layout-2 {
        flex-direction: row-reverse;
       
        border-radius: 10px;
    }
    
    /* SLIDE 3 (TEXT ABOVE, IMAGE BELOW) */
    .layout-3 {
        flex-direction: row;
        
        border-radius: 10px;
    }
    .layout-4 {
      flex-direction: row-reverse;
        border-radius: 10px;
  }
   
    /* NEXT BUTTON */
    .next-btn {
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        background: #E0B84F;
        border: none;
        opacity: 0.75;
        padding: 16px 22px;
        border-radius: 6px;
        font-size: 20px;
        cursor: pointer;
        font-weight: bold;
    }
    
    .next-btn:hover {
        opacity: 0.85;
    }
    
  
     
  /* Dugme u prvom slajdu – narandžasto, ovalno */
.layout-1 .mentoring-option-btn {
  display: inline-block;
  margin-top: 30px;
  background: #D8A14A;   /* narandžasta */
  color: white;
  padding: 14px 32px;
  border-radius: 40px;   /* ovalno */
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s ease;
}

.layout-1 .mentoring-option-btn:hover {
  background: #cf7b34;  /* malo tamnija */
  transform: scale(1.05);
}

.layout-2 .mentoring-option-btn {
  display: inline-block;
  margin-top: 30px;
  background: #D8A14A;   /* narandžasta */
  color: white;
  padding: 14px 32px;
  border-radius: 40px;   /* ovalno */
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s ease;
}

.layout-2 .mentoring-option-btn:hover {
  background: #cf7b34;  /* malo tamnija */
  transform: scale(1.05);
}
.layout-3 .mentoring-option-btn {
  display: inline-block;
  margin-top: 30px;
  background: #D8A14A;   /* narandžasta */
  color: white;
  padding: 14px 32px;
  border-radius: 40px;   /* ovalno */
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s ease;
}

.layout-3 .mentoring-option-btn:hover {
  background: #cf7b34;  /* malo tamnija */
  transform: scale(1.05);
}

.layout-4 .mentoring-option-btn {
  display: inline-block;
  margin-top: 30px;
  background: #D8A14A;   /* narandžasta */
  color: white;
  padding: 14px 32px;
  border-radius: 40px;   /* ovalno */
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s ease;
}

.layout-4 .mentoring-option-btn:hover {
  background: #cf7b34;  /* malo tamnija */
  transform: scale(1.05);
}



.fixed-email {
  position: fixed;
  bottom: 20px;
  right: 100px;
  background-color: rgba(255, 255, 0, 0.3);
  color: black;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 999;
  box-shadow: 0 0 8px 2#E0B84F(255, 255, 0, 0.3);
}

.fixed-email a {
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.fixed-email a:hover {
  color: #e0b84f;
}

/* =========================
   MENTORING slider – MOBILE (text top, image bottom)
   ========================= */
   /* =========================
   MENTORING slider – MOBILE (slika gore, tekst dole)
   ========================= */
@media (max-width: 768px) {

  html, body { overflow-x: hidden; }

  .mentoring-section{
    padding: 24px 14px;
  }

 /* svaki slajd ista visina */
 .mentoring-slider .slide.active{
  min-height: 600px;   /* možeš 500–600 po želji */
  height: auto;
}

/* slika zauzima npr 45% slajda */
.mentoring-slider .side-image{
  height: 400px;
  width: 100%;
  object-fit: cover;   /* popuni prostor bez deformacije */
  flex-shrink: 0;
  object-position: center;
}

/* tekst zauzima ostatak */
.mentoring-slider .blue-box{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;  /* centriraj tekst vertikalno */
  padding: 18px 16px; /* malo manje da sve stane */
}





  .mentoring-title{
    font-size: 34px;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 16px;
  }

  .mentoring-slider{
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden; /* spriječi “bježanje” */
  }

  /* slajd ostaje flex, ali ide u kolonu */
  .mentoring-slider .slide.active{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* ✅ SLIKA UVIJEK PRVA (gore) */
  .mentoring-slider .slide .side-image{
    order: 1;
    width: 100%;
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
  }

  /* ✅ TEKST UVIJEK DRUGI (dole) */
  .mentoring-slider .slide .blue-box{
    order: 2;
    width: 100% !important;
    max-width: 100% !important;
    padding: 22px 18px;
    box-sizing: border-box;
    position: relative;
  
  }

  .mentoring-slider .big-number{
    font-size: 60px;
    line-height: 1;
    opacity: 0.18;
    top: 8px;
    left: 18px;
  }

  .mentoring-slider .blue-box h3{
    font-size: 24px;
    margin-top: 56px;  /* jer big-number uzima prostor */
    margin-bottom: 12px;
  }

  .mentoring-slider .blue-box p{
    font-size: 16px;
    line-height: 1.55;
    max-width: 100%; /* da ne sužava */
  }

  .mentoring-option-btn{
    display: inline-flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    box-sizing: border-box;
    margin-top: 16px;
  }

  /* strelica desno na sredini (kao desktop osjećaj) */
 

    .mentoring-slider .next-btn{
      position: absolute;
      right: -15px;
  
      /* 300px je visina slike, + pola visine blue-boxa */
      top: calc(300px + 160px);
      transform: translateY(-50%);
      color:#cf7b34;
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
      border-radius: 0 !important;
      font-size: 26px;
    }
  
  }
  


/* manji telefoni */
@media (max-width: 400px){
  .mentoring-title{ font-size: 30px; }
  .mentoring-slider .side-image{ height: 190px; }
  .mentoring-slider .big-number{ font-size: 78px; }
  .mentoring-slider .blue-box h3{ font-size: 22px; }
}