/* ================= Coming Soon Full Page ================= */
*{margin:0;padding:0;box-sizing:border-box}

:root{
  --ink: #ffffff;
  --ink-dim: rgba(255,255,255,.78);
  --maxw: 1100px;
}

html, body{
  height: 100%;
}

body{
  background: #000 url("/image/d") no-repeat center center fixed;
  background-size: cover;       /* makes the bg fill full screen */
  color: var(--ink);
  font-family:'Outfit',sans-serif; 
  overflow:hidden;
}


/* ===== Section Wrapper ===== */
.comingsoon{
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: clip;
  isolation: isolate;
}

/* ===== Stationary Background Image ===== */
.cs-bg{
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(720px, 86vw);
  height: auto;
  object-fit: contain;
  opacity: .92;
  filter: brightness(.9) contrast(1.1);
  z-index: 0;
  pointer-events: none;
}

/* Soft blending into background */
.comingsoon::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(70% 50% at 50% 25%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(120% 70% at 50% 110%, rgba(0,0,0,.65), transparent 40%),
    radial-gradient(150% 90% at 50% -20%, rgba(0,0,0,.65), transparent 40%);
  z-index: 0;
}

/* ===== Text Block ===== */
.cs-inner{
  position: relative;
  z-index: 1;
  width: min(var(--maxw), 92vw);
  text-align: center;
  padding: clamp(16px, 4vw, 32px);
}

/* ===== Line 1: Coming Soon ===== */
.title-top{
  font-weight: 400; 
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: .3px;
  margin-bottom: clamp(6px, 1.2vw, 10px);
  opacity: 0;
  transform: translateY(8px);
  animation: cs-fade .7s ease forwards;
  animation-delay: .15s;
}

/* ===== Line 2: Date ===== */
.title-date{
  font-weight: 600; /* using your allowed weights */
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
  margin-bottom: clamp(10px, 2vw, 16px);
  opacity: 0;
  transform: translateY(10px);
  animation: cs-fade .7s ease forwards;
  animation-delay: .55s;
}

/* ===== Line 3: Description ===== */
.cs-3{
  font-weight: 300; /* smooth + elegant */
  font-size: clamp(13px, 2.2vw, 18px);
  color: var(--ink-dim);
  opacity: 0;
  transform: translateY(10px);
  animation: cs-fade .7s ease forwards;
  animation-delay: .95s;
}

/* ===== Fade Animation ===== */
@keyframes cs-fade{
  to { opacity:1; transform:translateY(0); }
}

/* Reduce Motion Preference */
@media (prefers-reduced-motion: reduce){
  .cs-line{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Larger desktops */
@media (min-width:1440px){
  .cs-bg{ width:min(820px, 60vw); }
}

/* Ultra-wide */
@media (min-width:2000px){
  .cs-bg{ width:min(980px, 50vw); }
}
