* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #272a4a, #050816);
  color: #ffffff;
  min-height: 100vh;
}

/* Header */

.site-header {
  padding: 18px 8%;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #c9d4ff;
}

/* Hero */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 80px 8% 40px; /* više prostora gore, manje dole */
}

.hero {
  min-height: 80vh;
}


/* TEKST BLOK */

.hero-text {
  max-width: 520px;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.8rem;            /* veći naslov */
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-text p {
  font-size: 1.05rem;           /* veći tekst */
  color: #d4dcff;
  margin-bottom: 22px;
}

.hero-subnote {
  font-size: 0.9rem;
  color: #9aa3ff;
  margin-top: 12px;
}

/* DUGME – NIŽE I VIDLJIVIJE */

.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00f6a3, #00c3ff);
  color: #050816;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 246, 163, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  margin-top: 12px;             /* spušta dugme niže od teksta */
  margin-bottom: 6px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 36px rgba(0, 246, 163, 0.65);
}

/* SLIKE */

.hero-image img {
  display: block;
  max-width: 460px;             /* veće slike */
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.75);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 32px 6% 50px;
  }

  .hero-image-left,
  .hero-image-right {
    order: 1;
  }

  .hero-text {
    order: 0;
  }

  .hero-image img {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 26px 5% 40px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font
