*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#111;
    color:white;
}



header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 40px;
    height:110px;
    background:black;
    position: fixed;
  top: 0;
  left: 0;
  width: 100%;

}

nav{
    display:flex;
    align-items:center;
    gap:40px;
}

ul{
    display:flex;
    gap:30px;
    list-style:none;
}

a{
    text-decoration:none;
    color:white;
    font-weight:bold;
}

.search input{
    padding:8px 12px;
    border:none;
    border-radius:20px;
}



.hero{
    height:900px;
    background:url(img/hero.jpg) center/cover no-repeat;
    display:flex;
    justify-content:flex-end;
    align-items:flex-start;
    padding:120px 80px;
}

.tekst{
    text-align: center;
    padding:40px;
    max-width:420px;
    color:#C9A24D;
}

.tekst h2{
    font-size:38px;
    margin-bottom:20px;
}

.tekst p{
    margin-bottom:25px;
    line-height:1.5;
}

.tekst button{
    padding:14px 32px;
    background:#C9A24D;
    border:none;
    font-weight:bold;
    cursor:pointer;
}



section{
    padding:80px 40px;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
    color:#C9A24D;
    font-size:36px;
}



.filter{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:40px;
}

.filter label{
    cursor:pointer;
}



.menu-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#1c1c1c;
    padding:20px;
    text-align:center;
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card h3{
    margin:15px 0;
    color:#C9A24D;
}



.akcije{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.akcija{
    background:#1c1c1c;
    text-align:center;
    padding-bottom:20px;
}

.akcija img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.akcija h3{
    color:#C9A24D;
    margin:20px 0 10px;
}



.dostava{
    display:flex;
    justify-content:center;
}

.dostava form{
    width:400px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.dostava input{
    padding:12px;
    border:none;
}

.dostava button{
    padding:12px;
    background:#C9A24D;
    border:none;
    font-weight:bold;
    cursor:pointer;
}



.gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery img{
    width:100%;
    height:250px;
    object-fit:cover;
}



footer{
    background:black;
    text-align:center;
    padding:30px;
}
    
  
/* HAMBURGER STIL */
.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;     
        top: 110px;         
        left: 0;
        width: 100%;
        background: #111;
        z-index: 3000;
    }

    .nav-menu.open {
        display: block;
    }

    .nav-menu ul {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .nav-menu ul li {
        text-align: center;
        padding: 15px 0;
        border-top: 1px solid #333;
    }
}


.scroll{
     position: fixed;
  bottom: 10px;   
  right: 10px;  
  padding: 15px 20px;
  background-color: #C9A24D;
  color: white;
}


.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox-content {
    background: white;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}



 .modal {
        display: none; /* skriva modal dok se ne aktivira */
        position: fixed; /* pokriva cijeli ekran */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7); /* poluprozirna crna pozadina */
        justify-content: center;
        align-items: center;
      }
      .modal img {
        max-width: 20%;
        max-height: 100%;
        border-radius: 10px;
        box-shadow: 0 0 15px #000;
      }



#burgeri-content p{
	color: black;
}



@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* mobitel */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;

    }
    
    .akcije{
        grid-template-columns: 1fr;
    }
}


@media (max-width: 980px) {
    .gallery{
        grid-template-columns: 2fr;
    }
    
    
    
}


