@font-face {
    font-family: 'TT_Prosto_Sans_Trial_Light'; 
    src: url('../fonts/TT_Prosto_Sans_Trial_Light.otf') format('opentype'); 
    font-weight: normal; 
    font-style: normal;
}

.navbar {
    top: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    z-index: 6;
    background-color: #708564;
    position: fixed;
    top: 0;
    left: 0;
    height: 70px; /* Početna visina headera */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }

  .navbar.hidden {
    transform: translateY(-100%); /* Pomeri header izvan ekrana kada se skroluje dole */
}

  .navbar-links{
    display: flex;
    flex-direction: row;
    gap: 50px;
  }
  
  .navbar p {
    font-size: 22px;
    color: rgb(255, 255, 255);
    font-family: 'TT_Prosto_Sans_Trial_Light', sans-serif;
  }
  
  .navbar a{
    text-decoration: none;
    cursor: default;
  }
  
  .navbar p:hover{
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.8);
  }
  
  .navbar p:not(:hover){
    transform: scale(1);
    transition: transform 0.2s ease-in-out;
  }

  .highlight{
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.8);
}

/* Hamburger meni osnovni stil */
.hamburger {
  display: none;
  align-items: end;
  cursor: pointer;
  z-index: 10;
  margin-right: 20px;
  margin: auto 25px auto 0;  
}

#oNama{
  display: none;
}

.close-btn {
  top: 10px;
  right: 10px;
  margin: 15px 25px 0 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  display: flex;
  justify-content: end;
  z-index: 12;
  
}

.hamburger i {
  font-size: 40px; /* Povećajte vrednost po želji */
  color: white;    /* Opcionalno, promenite boju */
  margin: auto 0;
}

/* Sidebar osnovni stil */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background-color: #181a1b;
  box-shadow: none;
  transition: right 0.3s ease, box-shadow 0.3s ease;
  z-index: 11;
  font-family: 'TT_Prosto_Sans_Trial_Light', sans-serif;
}

.sidebar.open {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column; /* Senka se pojavljuje samo kad je otvoreno */
}

.sidebar ul {
  list-style: none;
  padding: 20px;
  margin: 0;
  text-align: left;
}

.sidebar ul li {
  padding: 15px 0;
  border-bottom: 1px solid #708564;
}

.sidebar ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}

/* Overlay (zatamnjeni deo ekrana) */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 8;
}

/* Stil za male ekrane */
@media screen and (max-width: 1000px) {
  .navbar{
      justify-content: space-between;
      align-items: center;
  }
  .navbar-links {
    display: none !important; /* Sakrij navigacione linkove */
  }

  .hamburger {
    display: flex; /* Prikazi hamburger ikonu */
  }

  #oNama{
    display: block;
    margin: 0 0 0 20px;
    color: white;
    font-family: 'TT_Prosto_Sans_Trial_Light', sans-serif;
  }
}
