* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}
h1 {
  font-size: 65px;
  font-family: "Pinyon Script", cursive;
  font-weight: lighter;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  padding: 80px;
  background-image: url(./masl3op.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
nav a {
  text-decoration: none;
  list-style: none;
  color: black;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  height: 100px;
  background-image: url(./masl3op.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.gallery {
  display: flex;
  position: relative;
  align-items: center;
  width: 1000px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* ISPRAVLJENO: Stil za trenutno aktivnu sliku (vidljiva) */
.slide-aktivno {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.slide img,
.slide-aktivno img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
