/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;

    /* Glavni font sajta */
    font-family:"Times New Roman", Times, serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#4A0D0D;
    color:#ff9800;
}

/* NAVBAR */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#111;
    color:white;
    padding:18px 30px;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:bold;
}

.logo span{
    font-size:26px;
    color:white;
}

.logo img{
    width:50px;
    height:50px;
    object-fit:contain;
}

.navbar nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-weight:bold;
    font-size:26px; /* dodato */
    transition:.3s;
}

.navbar nav a:hover{
    color:#ff9800;
}

/* HERO */

.hero{
    text-align:center;
    padding:60px 20px;
}

.hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.hero p{
    color:#ff9800;
    font-size:18px;
}

.hero .datum{
    margin-top:10px;
    margin-bottom:15px;
    font-size:22px;
    font-weight:bold;
    color:#ff9800;
}

/* MENI */

.menu{
    max-width:1100px;
    margin:auto;
    padding:20px;
}

.menu-category{
    margin-bottom:50px;
}

.menu-category h2{
    color:#ff9800;
    font-size:36px;
    margin-bottom:20px;
    padding-bottom:10px;
    border-bottom:3px solid #ff9800;
}

/* STAVKA */

.menu-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
    border-bottom:1px solid #ddd;
}

/*Velicina teksta za jela */
.menu-item span:first-child{
    font-size:24px;
    font-weight:500;
}

/* ZA CENE */

.cena {
    color: #ff9800;
    font-weight: bold;
    white-space: nowrap;
    font-family: "Segoe Script", cursive;
    font-size: 16px;
}

/* FOOTER */

.footer{
    margin-top:60px;
    background:#111;
    color:white;
    text-align:center;
    padding:50px 20px;
}

.footer h2{
    font-size: 32px;
    margin-bottom:20px;
}

.footer p{
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    margin:10px 0;
}

.map{
    width:100%;
    max-width:1000px;
    height:450px;
    margin-top:25px;
    border:none;
    border-radius:12px;
}

#meni{
    scroll-margin-top:80px;
}

#kontakt{
    scroll-margin-top:80px;
}

section{
    scroll-margin-top:80px;
}

/* TELEFONI */

@media(max-width:600px){

    .navbar{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        padding:12px 10px;
    }

    .logo{
        gap:5px;
    }

    .logo img{
        width:45px;
        height:45px;
    }

    .logo span{
        font-size:15px;
        white-space:nowrap;
    }

    .navbar nav{
        display:flex;
        gap:10px;
    }

    .navbar nav a{
        font-size:15px;
        margin-left:0;
    }

}

/* TABLETI */

@media(min-width:601px) and (max-width:1024px){

    .logo span{
        font-size:30px;
    }

    .navbar nav a{
        font-size:28px;
    }

    .menu-category h2{
        font-size:40px;
    }

    .menu-item span:first-child{
        font-size:28px;
        font-weight:600;
    }

    .cena{
        font-size:22px;
    }

    .hero h1{
        font-size:52px;
    }

    .hero p{
        font-size:24px;
    }

    .hero .datum{
        font-size:28px;
    }

}