/* ================================================
   Dubinsko čišćenje Zuka — Coming Soon
   style.css
   ================================================ */

/* --- Reset & base --- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #0D1B35;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* Subtle radial background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(43, 95, 172, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(43, 95, 172, 0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* --- Layout --- */
.container-main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

/* --- Logo --- */
.logo-wrap {
  margin-bottom: 3rem;
}

.logo-sofa {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  display: block;
}

.logo-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: #5B8FD4;
  text-transform: uppercase;
  margin-top: 4px;
}

/* --- Divider --- */
.divider {
  width: 48px;
  height: 2px;
  background: #F0C844;
  margin: 2.5rem auto;
  border-radius: 2px;
}

/* --- Headline --- */
.headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 7vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  max-width: 640px;
  margin: 0 auto 1.25rem;
}

.headline em {
  font-style: normal;
  color: #F0C844;
}

.subline {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: #6B7A99;
  max-width: 420px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* --- Badges --- */
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(43, 95, 172, 0.18);
  border: 0.5px solid rgba(91, 143, 212, 0.35);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.82rem;
  color: #EAF0FA;
  letter-spacing: 0.01em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F0C844;
  flex-shrink: 0;
}

/* --- Contact card --- */
.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(91, 143, 212, 0.25);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  max-width: 400px;
  width: 100%;
  margin: 0 auto 3rem;
}

.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5B8FD4;
  margin-bottom: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item:hover {
  color: #F0C844;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 18px;
  height: 18px;
  color: #5B8FD4;
  flex-shrink: 0;
}

/* --- WhatsApp button --- */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.btn-wa:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-wa:active {
  transform: translateY(0);
}

/* --- Live status --- */
.live-status {
  font-size: 0.8rem;
  color: #5B8FD4;
}

/* --- Footer --- */
.footer-line {
  margin-top: 4rem;
  font-size: 0.75rem;
  color: rgba(107, 122, 153, 0.55);
}

/* --- Animations --- */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F0C844;
  animation: pulse-dot 2s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@media (prefers-reduced-motion: reduce) {
  .live-dot {
    animation: none;
  }
}