body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0d0d0d;
  color: #f5f5f5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Hero section */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  background-color: #000;
}

.hero-images {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-text {
  position: relative;
  text-align: center;
  padding: 40px;
  background: rgba(0,0,0,0.6);
  border-radius: 10px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;
  margin: auto;
  z-index: 2;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  background-color: #0d0d0d;
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

section.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #e0b84c;
  text-align: center;
}

p {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
}

/* Gallery carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  height: 500px;
  margin-top: 40px;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel img.active {
  opacity: 1;
  position: relative;
}

/* Contact form */
form {
  text-align: center;
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
}

form input, form textarea {
  width: 80%;
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
  font-size: 1em;
  background-color: #2a2a2a;
  color: #f5f5f5;
}

form textarea {
  resize: none;
}

form button {
  background: #e0b84c;
  color: #0d0d0d;
  border: none;
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #c9a43f;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #e0b84c;
}

.modal-content button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #e0b84c;
  border: none;
  color: #0d0d0d;
  font-weight: bold;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2em;
  }

  .carousel {
    height: 300px;
  }

  form input, form textarea {
    width: 95%;
  }
}
.carousel img {
  background-color: #1a1a1a; /* ako slika ne učita */
}
