/* RESET I OSNOVNO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.site-header {
  background-color: #111;
  padding: 20px 0;
  border-bottom: 2px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #d4af37;
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin-top: 10px;
}
.main-nav a {
  color: #fff;
  padding: 8px 14px;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 4px;
}
.main-nav a:hover,
.main-nav a.active {
  background-color: #d4af37;
  color: #000;
}

/* HERO WRAPPER SA ŠIROKOM SLIKOM */
.hero-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  display: block;
}
.hero-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
  padding: 20px;
}
.hero-inner h1 {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #d4af37;
}
.hero-inner p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ZLATNO DUGME */
.btn-gold {
  display: inline-block;
  background-color: #d4af37;
  color: #000;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.btn-gold:hover {
  background-color: #b38f20;
  color: #fff;
}

/* CONTENT SEKCIJA */
.content-section {
  padding: 60px 20px;
  background-color: #111;
  max-width: 900px;
  margin: 40px auto;
}
.content-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #d4af37;
  text-align: center;
}
.content-section p,
.content-section ul {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #ddd;
}
.content-section ul {
  list-style: none;
  padding-left: 0;
}
.content-section ul li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}
.content-section ul li::before {
  content: "🎺";
  position: absolute;
  left: 0;
  color: #d4af37;
}

/* CTA SEKCIJA */
.cta-section {
  background-color: #000;
  padding: 50px 20px;
  text-align: center;
}
.cta-section h3 {
  font-size: 1.8em;
  margin-bottom: 25px;
  color: #d4af37;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.btn-viber {
  background-color: #7360f2;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.btn-viber:hover {
  background-color: #5a47d1;
}
.btn-whatsapp {
  background-color: #25d366;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.btn-whatsapp:hover {
  background-color: #1da851;
}

/* FOOTER */
.site-footer {
  background-color: #111;
  padding: 30px 0;
  text-align: center;
  border-top: 2px solid #d4af37;
}
.site-footer p {
  font-size: 0.95em;
  color: #aaa;
}

/* GALERIJA */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* LISTA CENA */
.price-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.price-list li {
  background-color: #222;
  margin-bottom: 12px;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 600;
  border-left: 6px solid #d4af37;
  color: #ddd;
}

/* KONTAKT FORMA I INFO */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0;
  justify-content: center;
  max-width: 900px;
  margin: auto;
}
.contact-form {
  flex: 1 1 350px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form label {
  font-weight: 600;
  color: #d4af37;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  font-size: 1em;
  resize: vertical;
}
.contact-form textarea {
  min-height: 120px;
}
.contact-info {
  flex: 1 1 300px;
  max-width: 400px;
  color: #ddd;
  font-size: 1.1em;
}
.contact-info h2 {
  color: #d4af37;
  margin-bottom: 20px;
}
.contact-info a {
  color: #d4af37;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* VIDEO KONTEJNER - za embedovane video ili <video> tag */
.video-container {
  max-width: 900px;
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.7);
}
.video-container iframe,
.video-container video {
  width: 100%;
  height: 500px;
  display: block;
  border: none;
  border-radius: 12px;
}

/* LISTA GRADOVA */
.city-list {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}
.city-list li a {
  display: block;
  padding: 12px 20px;
  background-color: #222;
  color: #d4af37;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}
.city-list li a:hover {
  background-color: #333;
  color: #fff;
}

/* RESPONZIVNOST */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }
  .site-header {
    justify-content: center;
    text-align: center;
  }
  .content-section,
  .contact-container {
    padding: 20px 10px;
    margin: 20px 10px;
  }
  .video-container iframe,
  .video-container video {
    height: 300px;
  }

  .hero-inner h1 {
    font-size: 1.8em;
  }

  .hero-inner p {
    font-size: 1em;
  }

  .hero-inner .btn-gold {
    font-size: 1em;
    padding: 10px 18px;
  }

  .hero-image {
    max-height: 400px;
  }
}

