/* Coming Soon page */

.coming-soon-page {
  --cs-cream: #f8f5f1;
  background: var(--cs-cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.coming-soon-header {
  padding: 8px 16px 0;
  animation: hero-in 0.9s var(--ease) both;
}

.coming-soon-page .nfb-head .hero-nav-list {
  background: var(--cs-cream);
}

.coming-soon-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.coming-soon-hero {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
  min-height: clamp(420px, 62vh, 720px);
  padding: clamp(48px, 8vw, 96px) 24px;
  overflow: hidden;
}

.coming-soon-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(108, 122, 63, 0.12), transparent 70%),
    radial-gradient(ellipse 45% 40% at 18% 80%, rgba(166, 122, 86, 0.1), transparent 65%),
    radial-gradient(ellipse 40% 35% at 88% 18%, rgba(157, 155, 117, 0.14), transparent 60%);
  animation: cs-atmosphere 8s ease-in-out infinite alternate;
}

.coming-soon-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
}

.coming-soon-brand {
  margin: 0 0 18px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--olive);
  animation: cs-rise 0.9s var(--ease) both;
}

.coming-soon-title {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  color: var(--ink);
  animation: cs-rise 0.9s var(--ease) 0.12s both;
}

.coming-soon-sub{
  color: var(--olive);
}

.coming-soon-lead {
  margin: 20px auto 0;
  max-width: 420px;
  font-family: "Lato", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: var(--slate);
  animation: cs-rise 0.9s var(--ease) 0.22s both;
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  animation: cs-rise 0.9s var(--ease) 0.34s both;
}

.btn-coming-primary,
.btn-coming-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  transition: filter 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-coming-primary {
  background: var(--olive);
  color: var(--cream);
  border: 1px solid var(--olive);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.18);
}

.btn-coming-primary:hover {
  filter: brightness(1.08);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-coming-primary:hover i {
  transform: rotate(45deg);
  transition: transform 0.45s ease;
}

.btn-coming-outline {
  background: transparent;
  color: var(--copper);
  border: 1px solid var(--copper);
}

.btn-coming-outline:hover {
  background: var(--copper);
  color: var(--cream);
}

@keyframes cs-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cs-atmosphere {
  from {
    opacity: 0.85;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (max-width: 1199.98px) {
  .coming-soon-header .sedna_head {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 575.98px) {
  .coming-soon-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-coming-primary,
  .btn-coming-outline {
    justify-content: center;
  }
}
