/* ===== Opšti stilovi ===== */
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden; /* sprečava horizontalni scroll */
}

/* ===== CTA TOP ===== */
.cta-top {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 10px;
}
.cta-top a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #333;
  color: #fff;
}
.navbar .nav-links {
  display: flex;
  gap: 15px;
}
.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
}
.navbar .cta-btn {
  background: #ffcc00;
  color: #000;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.menu-toggle {
  display: none;
  font-size: 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 999; /* da uvek bude iznad */
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}
.hero-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.3s;
}
.hero-text h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}
.hero-text p {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
.hero-text .btn {
  background-color: gold;
  color: #000;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.8s;
}
.hero-text .btn:hover {
  background-color: #ffcc00;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ABOUT I GALERIJA ===== */
.about, .gallery {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  align-items: center;
  gap: 20px;
}
.about .image img, .gallery .image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ===== CTA SEKCIA ===== */
.cta {
  text-align: center;
  padding: 50px 20px;
  background: #ffcc00;
}
.cta .btn {
  background-color: #222;
  color: #ffcc00;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}
.cta .btn:hover {
  background-color: #000;
}

/* ===== RECENZIJE ===== */
.reviews {
  padding: 40px 20px;
  background: #f7f7f7;
  text-align: center;
}
.reviews h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #ffcc00;
}
.reviews blockquote {
  margin: 15px auto;
  padding: 15px 20px;
  border-left: 4px solid #ffcc00;
  max-width: 700px;
  font-style: italic;
  background: #fff;
  border-radius: 6px;
}

/* ===== BLOG ===== */
.blog {
  padding: 40px 20px;
}
.blog-article {
  margin-bottom: 40px;
}
.blog-article img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}
.blog-article h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.blog-article p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #fff;
}
.footer nav a {
  margin: 0 10px;
  color: #ffcc00;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width:768px){
  .navbar .nav-links{
    display:none;
    flex-direction:column;
    background:#333;
    position:absolute;
    top:60px;
    right:0;
    width:200px;
    padding:10px;
  }
  .navbar .nav-links.show{
    display:flex;
  }
  .menu-toggle{
    display:block;
  }
  .about, .gallery{
    flex-direction:column;
  }
  .hero-text h1 { font-size: 2rem; }
  .hero-text p { font-size: 1.2rem; }
  .hero-text .btn { font-size: 1rem; padding: 10px 20px; }
}
