/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 10 2026 | 01:18:56 */
/* =========================
   COMING SOON PAGE
========================= */

.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f0f; /* adjust if needed */
  color: #f2f2f2;
  text-align: center;
  padding: 24px;
}

.coming-soon__inner {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Logo */
.coming-soon__logo {
  width: 160px;
  height: auto;
  margin-bottom: 12px;
}

/* Headline */
.coming-soon h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

/* Supporting text */
.coming-soon p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
}

/* Social link */
.coming-soon__social {
  margin-top: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f36b2c; /* your orange accent */
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.coming-soon__social:hover {
  opacity: 0.8;
}


