/* ===== RESET & GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== LINKOVI - FULL BROWSER SUPPORT ===== */
a:link, a:visited {
  color: #fff;           /* stalno bijeli linkovi */
  text-decoration: none; /* uklanja podcrtavanje */
  transition: color 0.3s ease;
}

a:hover, a:active {
  color: #ffcc00;        /* hover/klik boja */
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.navbar img {
  height: 60px;
}

/* Desktop linkovi */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  transition: all 0.3s ease;
}

.nav-links li a {
  font-weight: 500;
}

.nav-links li a:hover,
.nav-links .active {
  color: #ffcc00; /* hover/active u navigaciji */
}

/* Hamburger (☰) */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle.open {
  transform: rotate(90deg);
}

/* ===== MOBILNA VERZIJA ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    text-align: center;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 15px 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn:hover {
  background: white;
  color: black;
}

/* ===== SMALL HERO (unutarnje stranice) ===== */
.small-hero {
  position: relative;
  height: 45vh;
  overflow: hidden;
}

.small-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.small-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.small-hero .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.small-hero .hero-text h1 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  color: #fff;
}

/* ===== CONTENT BLOCKS ===== */
.content {
  padding: 100px 15%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

.block {
  flex: 1 1 400px;
}

.block h2 {
  color: #fff;
  margin-bottom: 15px;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  padding: 150px 10%;
  text-align: center;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 30px auto;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: none;
  background: #222;
  color: #fff;
}

.contact-form button {
  padding: 10px;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #aaa;
}

/* ===== VIDEO GALLERY ===== */
.video-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.video-gallery video {
  width: 320px;
  border-radius: 6px;
}

/* ===== FOOTER ===== */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #ccc;
  margin-top: 60px;
}

footer a:link, footer a:visited {
  color: #fff;           /* bijeli footer linkovi stalno */
  text-decoration: none;
}

footer a:hover, footer a:active {
  color: #ffcc00;        /* hover/klik efekt */
}

/* ===== NASLOVI ===== */
h1, h2, h3, .hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  font-weight: 400;
  text-transform: uppercase;
}

/* Navigacija, paragrafi, gumbi */
body, p, li, button, input, textarea {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}