/* BODY SA ANIMIRANOM POZADINOM */
body {
  background: linear-gradient(-45deg, #1e1e2f, #1e90ff, #111, #4b0082);
  background-size: 400% 400%;
  animation: gradientAnim 15s ease infinite;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 50px;
  margin: 0;
}

@keyframes gradientAnim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* MENI */
.meni {
  background-color: rgba(17,17,17,0.9);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.meni .logo {
  font-size: 22px;
  font-weight: bold;
  color: #ffd700;
}

.meni ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.meni ul li {
  margin-left: 20px;
  transition: all 0.3s ease;
}

.meni ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.meni ul li a.active {
  color: #ffd700;
  font-weight: bold;
}

.meni ul li a:hover {
  background-color: #ffd700;
  color: black;
  border-radius: 5px;
}

.hamburger {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .meni ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #111;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 0;
  }
  .meni ul.show { display: flex; }
  .meni ul.show li {
    margin: 0;
    text-align: center;
    border-bottom: 1px solid #333;
  }
}

/* DUGMAD */
button {
  font-size: 20px;
  padding: 10px 20px;
  background-color: rgb(0, 136, 255);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 5px;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  background-color: rgb(0, 85, 255);
}

.extra-buttons { 
  margin-top: 15px; 
}

/* KARTICE ZA SADRŽAJ */
.kartica {
  background-color: rgba(0,0,0,0.6);
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kartica:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.6);
}

/* SEKCIJE PROIZVODA I STOF KARATA */
#sekcija-proizvodi, #sekcija-stof {
  display: none;
  background-color: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 15px;
  max-width: 600px;
  margin: 15px auto 0 auto;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
}

.gallery div {
  margin: 10px;
  text-align: center;
}

.gallery img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  cursor:pointer;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.7);
}

/* KONTAKT SEKCIJA */
.kontakt-info {
  margin: 30px auto;
  font-size: 20px;
  max-width: 400px;
}

.kontakt-info i {
  color: #ffd700;
  margin-right: 10px;
}

.kontakt-info a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin: 10px 0;
  transition: all 0.3s ease;
}

.kontakt-info a:hover {
  color: #1e90ff;
  transform: scale(1.1);
}

/* FOOTER */
footer {
  background-color: rgba(17,17,17,0.9);
  color: #fff;
  padding: 20px;
  text-align: center;
  margin-top: 50px;
}

/* LIGHTBOX POVECANJE SLIKA */
#lightbox {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.9);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:10000;
}

#lightbox img {
  max-width:90%;
  max-height:90%;
  border-radius:10px;
  box-shadow:0 0 20px #000;
}

#close {
  position:absolute;
  top:20px;
  right:30px;
  color:white;
  font-size:40px;
  cursor:pointer;
  font-weight:bold;
}
