/* ============================================
   HERO BLOK
   Stranica: index.html
   ============================================ */

.hero {
  background: var(--color-background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px var(--container-padding) 80px;
}

/* ── Avatar ── */
.avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 36px;
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-md);
}

.avatar-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ccc, #bbb);
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #888;
  font-family: var(--font-body);
  text-align: center;
  line-height: 1.4;
  padding: 8px;
}

.avatar-badge {
  position: absolute;
  bottom: -6px;
  right: -12px;
  background: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
}

/* ── Naslovi i tekst ── */
.hero__title {
  margin-bottom: 20px;
  line-height: 1.18;
}

.hero__desc {
  max-width: 460px;
  margin: 0 auto 36px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    padding: 110px var(--container-padding) 64px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px var(--container-padding) 56px;
    min-height: auto;
  }
}
