* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Goldman", serif;
    font-weight: 400;
}

header {
    width: 100%;
    height: 80px;
    position: fixed;
    display: flex;
    justify-content: space-around;
    text-align: center;
    align-items: center;
    z-index: 1;
}


.nav {
    width: 100%;
    height: 80px;
    position: fixed;
    display: flex;
    justify-content: space-around;
    text-align: center;
    align-items: center;
    backdrop-filter: blur(1px);
    background: rgb(54,54,54);
    background: linear-gradient(90deg, rgba(54,54,54,1) 0%, rgba(79,78,78,1) 38%, rgba(130,128,128,1) 100%);
    z-index: 1;
    box-shadow: rgba(206, 128, 11, 0.226) 0 50px 100px -20px, rgba(0, 0, 0, 0.3) 0 30px 60px -30px, rgba(10, 37, 64, 0.35) 0 -2px 6px 0 inset;
}



.logo {
    width: 200px;
    height: 70px;
}

.nav-menu {
   width: 607px;
}

.list {
    display: flex;
    justify-content: space-around;
    list-style: none;
}



.list-item a {
    text-decoration: none;
    /* color: #D9641E; */
    /* color: #482F00; */
    color: white;
    font-size: 16px;
    /*font-weight: bold;*/
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
  }

  /* Efekt kad se mišem pređe preko linka */
  .list-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #EA530F; /* Plava boja za podcrtavanje */
    transition: width 0.3s ease;
  }

  /* Promjena boje i proširenje podcrtavanja */
  .list-item a:hover {
    color: #EA530F; /* Crvena boja */
    /* transform: scale(1.1); Povećanje veličine */
  }

  /* Proširivanje podcrtavanja prilikom hovera */
  .list-item a:hover::after {
    width: 100%;
      background-color: #EA530F; /* Crvena boja podcrtavanja */
  }

/* Aktivni link (kada je korisnik na toj stranici) */
.list-item a.active {
    color: #EA530F;
    font-size: 17px;
  }

  /* Osiguranje da aktivni link ostane podcrtan i ne mijenja se na hover */
  .list-item a.active::after {
    width: 100%;
    background-color: #EA530F; /* Crvena boja podcrtavanja */
  }

.drop-menu {
    position: absolute;
    width: 50%;
    height: 700px;
    left: 0;
    top: 0;
    background: rgb(54,54,54);
    background: linear-gradient(90deg, rgb(54, 54, 54) 0%, rgba(79,78,78,1) 38%, rgba(130,128,128,1) 100%);
    display: none;
}

.x {
    display: none;
}

@media only screen and (max-width: 890px) {


    .menu-toggle {
        width: 35px;
        height: 30px;
        position: relative; /* <- VAŽNO! */
        cursor: pointer;
    }

    .bar {
        height: 4px;
        width: 100%;
        background-color: #EA530F;
        position: absolute;
        left: 0;
        transition: 0.4s ease;
        border-radius: 2px;
    }

    .top {
        top: 0;
    }

    .middle {
        top: 50%;
        transform: translateY(-50%);
    }

    .bottom {
        bottom: 0;
    }

    .menu-toggle.active .top {
        transform: rotate(45deg);
        top: 50%;
    }

    .menu-toggle.active .middle {
        opacity: 0;
    }

    .menu-toggle.active .bottom {
        transform: rotate(-45deg);
        top: 50%;
        bottom: auto;
    }


    .nav {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .nav a {
        display: none;
    }

    .drop-menu {
        display: none;
        width: 400px;
    }

    .drop-menu a {
        display: block;
        width: 300px;
        margin: 30px auto auto auto;
    }

    .social {
        display: flex;
        justify-content: space-evenly;
        width: 300px;
        margin: auto;

    }

    .soc-img {
        width: 40px;
    }

    .drop-menu .drop-nav {
        display: block;
        flex-direction: row;
    }
    
    
    .drop-list {
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        height: 300px;
    }
    .x {
        display: block;
        position: absolute;
        left: 15px;
        top: 15px;
        color: yellow;
        z-index: 1;
        width: 50px;
    }

}





