* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "KyivType Sans", "Inter", sans-serif;
  color: #000;
}

.container {
  text-align: center;
  opacity: 0;
}

.logo {
  max-width: 180px;
  margin-bottom: 24px;
}

.soon {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-transform: lowercase;
  color: #c9a24d; /* zlatno */
}

.contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-title {
  color: #c9a24d; /* zlatno */
  font-weight: 400;
}

.contact-info {
  color: #000; /* crno */
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.contact-info:hover {
  opacity: 0.6;
}

.divider {
  opacity: 0.5;
}

/* Fade-in */
.fade-in.show {
  opacity: 1;
  transition: opacity 1.2s ease;
}

/* Mobile responsive: vertikalno */
@media (max-width: 767px) {
  .contact {
    flex-direction: column;
    gap: 6px;
  }

  .divider {
    display: none; /* uklonimo “|” */
  }
}
