/* ======================
   GLOBAL
====================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#0d0d0d; /* crna */
    min-height:100vh;
    color:white;
}

/* ======================
   HEADER
====================== */
header{
    background:#000;
    padding:15px 20px;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:2px solid #ff3b3f;
}

.header-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:55px;
}

/* NAV */
.nav-left, .nav-right{
    display:flex;
    gap:15px;
}

.nav-left a,
.nav-right a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.nav-left a:hover,
.nav-right a:hover{
    color:#ff3b3f;
}

/* ======================
   HAMBURGER
====================== */
.menu-toggle{
    display:none;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    width:28px;
    height:3px;
    background:white;
    margin:6px 0;
    transition:0.3s;
}

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}
.menu-toggle.active span:nth-child(2){
    opacity:0;
}
.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}

/* ======================
   LAYOUT
====================== */
.container{
    max-width:1200px;
    margin:20px auto;
    padding:0 15px;

    display:grid;
    grid-template-columns:260px 1fr;
    gap:20px;
}

/* ======================
   SIDEBAR
====================== */
.sidebar{
    background:#111;
    padding:15px;
    border-radius:12px;
    height:fit-content;
    box-shadow:0 10px 25px rgba(0,0,0,0.5);
    border:1px solid #222;
}

.sidebar h3{
    margin-bottom:10px;
    color:#ff3b3f;
}

.sidebar a{
    display:block;
    padding:10px;
    margin-bottom:6px;
    background:#1a1a1a;
    border-radius:6px;
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.sidebar a:hover{
    background:#ff3b3f;
}

/* ======================
   FIRME GRID
====================== */
.products{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:20px;
}

/* CARD */
.card{
    background:#111;
    border-radius:14px;
    overflow:hidden;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(0,0,0,0.5);
    border:1px solid #222;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.7);
}

/* IMAGE */
.card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

/* INFO */
.info{
    padding:12px;
}

.info h3{
    margin-bottom:6px;
}

/* BADGE */
.badge{
    display:inline-block;
    background:#ca1b1e; 
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:bold;
    margin-bottom:8px;
}

/* ======================
   FOOTER
====================== */
footer{
    margin-top:40px;
    padding:30px;
    background:#000;
    text-align:center;
    border-top:2px solid #ff3b3f;
}

.note{
    margin-top:10px;
    padding:8px 10px;
    background:#1a1a1a;
    border-left:3px solid #ff3b3f;
    border-radius:6px;
    font-size:13px;
    color:#ddd;
    line-height:1.4;
    transition:0.3s;
}

/* mali hover efekat */
.card:hover .note{
    border-left:3px solid #fff;
}

.city-title{
    color:white;
    font-size:28px;
    margin-bottom:25px;
    padding-bottom:10px;
    border-bottom:2px solid #ff3b3f;
}


    
/* ======================
   MOBILE
====================== */
@media(max-width:768px){

    .container{
        grid-template-columns:1fr;
    }

    .menu-toggle{
        display:block;
    }

    .header-container{
        flex-direction:column;
        align-items:center;
        gap:10px;
        position:relative;
    }

    .nav-left,
    .nav-right{
        display:none;
        flex-direction:column;
        width:100%;
        text-align:center;
        background:#000;
        border-radius:10px;
        overflow:hidden;
    }

    .nav-left.active,
    .nav-right.active{
        display:flex;
    }

    .nav-left a,
    .nav-right a{
        padding:12px;
        border-top:1px solid #222;
    }

    .logo img{
        height:45px;
    }
}











