* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

.bg {
  width: 100%;
  min-height: 100vh;

  background-image: url("hikavia.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  /* Bolje ponašanje na mobilnim */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔥 FIX za mobile viewport (Safari/Chrome) */
@supports (-webkit-touch-callout: none) {
  .bg {
    min-height: -webkit-fill-available;
  }
}