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

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; }
}


body {
    background-color:rgba(181, 181, 181, 0.5);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .podcast-section {
    padding: 80px 40px;
  }
  
  .podcast-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    flex-wrap: wrap;
    border-bottom: 2px solid #E0B84F;
    padding-bottom: 40px;
  }
  
  .podcast-video {
    flex: 1 1 500px;
    aspect-ratio: 16 / 9;
  }
  
  .podcast-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    box-shadow: 0 0 10px #deb651(255, 0, 0, 0.4);
  }
  
  .podcast-info {
    flex: 1 1 400px;
  }
  
  .podcast-info h3 {
    font-size: 24px;
    color: #E0B84F;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .podcast-info .date {
    color: #E0B84F;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .podcast-info .description {
    font-size: 16px;
    color: whitesmoke;
    line-height: 1.6;
  }
  
  @media screen and (max-width: 768px) {
    .podcast-wrapper {
      flex-direction: column;
    }
    .podcast-video {
      flex: 1 1 auto;
      width: 100%;      /* zauzmi celu širinu ekrana */
      max-width: 100%;  /* nemoj da se sužava */
    }
    .podcast-video iframe {
      width: 100%;
      height: 100%;
    }
    .podcast-info {
      width: 100%;
    }
  }








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




  /*email*/
  
.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;
}





  .description-box {
    position: relative;
    overflow: hidden;
    max-height: none;
    padding-bottom: 0;
  }
  .description{
    display: -webkit-box;
    -webkit-line-clamp: 8;      /* <-- kol’ko redova želiš da se vidi */
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: keep-all;       /* ne lomi riječi na pola */
    hyphens: auto;
  }

  .description-box.expanded .description {
    -webkit-line-clamp: unset;
  }

  .description-box.expanded {
    max-height: 2000px; /* dovoljno prostora kad se otvori */
    padding-bottom: 0;
  }
  .description-box.expanded::after {
    display: none;
  }
  .read-more-btn {
    display: inline-block;
    margin-top: 10px;
    background: none;
    border: 2px solid #E0B84F;
    color: #fff;
    padding: 6px 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s ease;
  }
  .description-box, .read-more-btn{
    position: relative;
    z-index: 3;
  }
 
  
  .read-more-btn:hover {
    background: #E0B84F;
    color: black;
    transform: scale(1.05);
  }

  .description-box::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 48px;  /* iznad dugmeta */
    height: 48px;
    background: linear-gradient(to bottom, rgba(207, 210, 132, 0), rgb(157, 154, 133));
    pointer-events: none;
  }
 



.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;
}
