* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.background-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100vh;
  background-image: url('moja-fotka-desktop.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: fadeInBg 2s ease-in-out forwards;
  opacity: 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .hero-image {
    background-image: url('moja-fotka-mob.jpg');
    background-size: contain;
  }
}

.countdown-bottom {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-family: 'Share Tech Mono', monospace;
  z-index: 999;
}

/* === SOCIAL ICONS WITH LABELS === */
.social-row {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  align-items: center;
  z-index: 999;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-item span {
  color: white;
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  opacity: 1; /* više nije transparentan */
}

.social-item:hover span {
  opacity: 1;
}

.social-item img {
  width: 24px;
  height: 24px;
  display: block;
  opacity: 1 !important;
  filter: none !important;
}

/* Puls efekt */
.active-pulse {
  transform: scale(1.3);
  opacity: 1;
}

/* Fade-in pozadine */
@keyframes fadeInBg {
  to { opacity: 1; }
}

audio {
  display: none;
}

footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: white;
  font-family: 'Share Tech Mono', monospace;
  z-index: 999;
}
