body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: #111;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
}

.nav-links a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}

/* SLIDESHOW */
.slideshow {
  height: 60vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 1s;
}

.slide.active {
  opacity: 1;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px;
}

.card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: black;
  margin-bottom: 20px;
}

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

.card-content {
  padding: 15px;
}

/* POSLEDNJA 3 BEZ MARGINE */
.grid .card:nth-last-child(-n+3) {
  margin-bottom: 0;
}

/* RESPONSIVE GRID */

/* tablet */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px;
  }
}

/* telefon */
@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/* MAPA */
.location-section {
  text-align: center;
  padding: 60px 20px;
  margin-top: -80px;
}

.map-container {
  max-width: 900px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* FOOTER */
.footer {
  background: #111;
  color: white;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  text-align: center;
  padding: 40px;
}

.social-icons a {
  color: white;
  font-size: 26px;
  margin: 0 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.contact-form button {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 10px;
}