﻿/*################################################### CEO MENI #######################################################*/

.nav{
    -webkit-transform: translate3d(0,0,0);
    top: 0;
    height: 106px;
    z-index: 1;
    position: sticky;
    background-color: white;
    align-items: center;
    justify-content: center;
}

/*################################################### LOGO ###########################################################*/

.nav img{
    height: 78px;
    max-width: 233px;
    padding-right: 100px;
}

/*################################################### MENI BEZ BROJA TELEFONA I LOGOTIPA #############################*/

.nav-links ul{
    padding: 0;
    margin: 0;
}

/*################################################### ELEMENTI MENIJA ################################################*/

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding-right: 30px;
    padding-left: 30px;
    position: relative;
}

.nav-links ul li a{
    color: #444444;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.nav-links ul li::after{
    content: "";
    width: 0;
    height: 2.8px;
    background: #ff6b00;
    display: block;
    transition: 0.16s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.nav-links ul li a:hover {
    color: #ff6b00;
}

/*################################################### PHONE NUMBER ###################################################*/

.phone_number p{
    color: #444444;
    margin: 0;
    font-family: "Century Gothic", sans-serif;
    font-size: 26px;
    font-weight: 720;
    padding-left: 100px;

}

/*################################################### MENU BUTTON ####################################################*/

.navigation{
    position: absolute;
}

#menuToggle
{
    display: none; /*Staviti none u zavistnosti od toga da li zelis da imas burger meni na desktop prikazu*/

    position: relative;

    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
}

#menuToggle a
{
    text-decoration: none;
    color: #444444;

    transition: color 0.3s ease;
}

#menuToggle a:hover
{
    color: tomato;
}


#menuToggle input
{
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    cursor: pointer;
    right: 0;

    opacity: 0; /* Sakriji ovo. */
    z-index: 2; /* I stavi ga unutar hamburgera. */

    -webkit-touch-callout: none;
}

/*
 * Hamburger
 */
#menuToggle span
{
    display: block;
    width: 33px;
    height: 4px;
    top: 6px;
    right: 0;
    margin-bottom: 6px;
    position: relative;
    background: #444444;
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0;

    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child
{
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
    transform-origin: 0% 100%;
}

/*
 * Pretvori sve crtice hamburgera u X znak.
 */
#menuToggle input:checked ~ span
{
    opacity: 1;
    transform: rotate(45deg) translate(-1px, 1px);
    background: #444444;
}

/*
 * Sakriji središnju crtu.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Poslednja crta treba da ide u drugu stranu.
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
    transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Napravi absolute positioned
 * u gornjem levom uglu ekrana.
 */
#menu
{
    position: absolute;
    float: left;
    width: 180px;
    margin: -100px 0 0 -50px;
    padding-top: 34px;
    padding-left: 40px;
    padding-bottom: 22px;
    top: 84px;
    left: -88px;
    background: #ededed;
    border-radius: 24px;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* Da bi se zaustavilo flickerovanjeof teksta u Safari-u. */

    transform-origin: 0% 0%;
    transform: translate(200%,0);

    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
    padding-top: 24px ;
    font-size: 20px;
    text-align: left;

}

/*
 * Da klizi sa leva na desno.
 */
#menuToggle input:checked ~ ul
{
    transform: none;
}

#menuToggle
{
    transform: none;
}