body, html {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.coming-soon {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* 1️⃣ Blur pozadina - samo boje i atmosfera */
.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('background.jpg') center center / cover no-repeat;
  filter: blur(5px) brightness(0.35);
  transform: scale(1.2);
  z-index: -2;
  animation: fadeIn 1.2s ease-out forwards;
}

/* 2️⃣ Glavna slika - čista, centrirana */
.main-image {
  position: absolute;
  inset: 0;
  background: url('background.jpg') center center no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0;
  animation: zoomIn 2s ease-out 0.5s forwards;
}

.content {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  /*background: rgba(0, 0, 0, 0.35);*/
  padding: 1rem 2rem;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  /*backdrop-filter: blur(6px);*/
  /*box-shadow: 0 2px 15px rgba(0,0,0,0.3);*/
  opacity: 0;
  animation: fadeDown 1.5s ease-out 1s forwards;
}

/* Nova animacija – umesto fadeUp */
@keyframes fadeDown {
  from { opacity: 0; transform: translate(-50%, -20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* Tekstualne nijanse */
.content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.content p {
  font-size: 1rem;
  color: #ddd;
  margin: 0;
}

/* Animacije */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

/* Nova animacija za tekst */
@keyframes fadeDown {
  from { opacity: 0; transform: translate(-50%, -20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}


/* 📱 Mobilni prikaz */
@media (max-width: 768px) {
  .coming-soon::before {
    filter: blur(25px) brightness(0.4);
  }

  .main-image {
    background-size: cover;
    opacity: 0.9;
  }

  .content {
    background: rgba(0, 0, 0, 0.65);
    top: 2%;
  }
  .content h1 {
    font-size: 1.4rem;
  }
}

/* Efekat plutanja slike */
@keyframes floatEffect {
  0%   { transform: translateY(0px) scale(1); }
  50%  { transform: translateY(-15px) scale(1.02); }
  100% { transform: translateY(0px) scale(1); }
}

/* Primeni na centralnu sliku */
.main-image {
  position: absolute;
  inset: 0;
  background: url('background.jpg') center center no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0;
  animation: zoomIn 2s ease-out 0.5s forwards, floatEffect 6s ease-in-out infinite;
}
