*,
*::before,
*::after { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: system-ui, sans-serif;
  min-height: 100vh;
  color: #111;
  background: #fff; /* čista bela pozadina */
  text-align: center;
  display: block;
  min-height: 100svh;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* faded logo as full background */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/logo.png") no-repeat center center;
  background-size: min(100vmin, 100%);
  opacity: 0.05;
  pointer-events: none;
}

/* Layout */
.page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  width: 100%;
  padding: 1rem;
}
.content {
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.hero img {
  max-width: min(90%, 380px);
  height: auto;
}

/* Animated status "У изради..." with no background behind */
.status {
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 800;
  margin: .25rem 0 0;
  letter-spacing: .02em;
  line-height: 2.5rem;
  position: relative;
  background: none; /* removed background */
  padding: 0;
}
.status::after {
  content: "";
  display: inline-block;
  width: .12em;
  height: 1em;
  margin-left: .12em;
  background: currentColor;
  vertical-align: -0.1em;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.footer {
  margin-top: 2rem;
  font-size: .9rem;
  opacity: .7;
  padding: 1rem 0;
}
.hero-title {
  font-size: clamp(20px, 4.5vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  max-width: 700px;
  margin: 0.5rem auto 0;
  color: #222;
}

body.dark .hero-title {
  color: #f0f0f0;
}

.hero {
  margin-top: -1rem; /* logo bliže vrhu */
}

.hero-title {
  font-size: clamp(18px, 3.5vw, 26px); /* smanjen font */
  margin-top: 0.25rem;
}

.social-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

.social-buttons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.social-buttons a img:hover {
  transform: scale(1.1);
}

