/* MyMotel – Coming Soon (pure CSS, responsive, 100vh) */

:root{
  --bg: #070A12;
  --card: rgba(255,255,255,.10);
  --card-2: rgba(255,255,255,.06);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --line: rgba(255,255,255,.14);
  --accent: #FFD166; /* warm motel/neon vibe */
  --accent-2: #2EC4B6;
  --shadow: 0 18px 55px rgba(0,0,0,.45);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* Screen-reader only (accessible labels without visual noise) */
.sr-only{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.page{
  /* mobile-safe viewport units (keeps 100vh requirement too) */
  min-height: 100svh;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}

/* Background image layer */
.hero{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02); /* hide edge artifacts */
}

/* Overlay: dark + subtle color wash for readability */
.hero::before{
  content:"";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1200px 700px at 75% 25%, rgba(46,196,182,.22), transparent 60%),
    radial-gradient(900px 600px at 20% 80%, rgba(255,209,102,.18), transparent 55%),
    linear-gradient(0deg, rgba(7,10,18,.78), rgba(7,10,18,.62));
}

/* Top glow accents */
.hero::after{
  content:"";
  position: absolute;
  inset: -30% -30% auto -30%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(255,209,102,.18), transparent 70%);
  filter: blur(10px);
}

.wrap{
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.panel{
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card), var(--card-2));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: clamp(18px, 3.2vw, 30px);
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.brand__logo{
  width: 200px;
  height: auto;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  padding: 8px;
  border: 1px solid rgba(255,255,255,.16);
  object-fit: contain;
}
.brand__name{
  font-weight: 750;
  letter-spacing: .2px;
  font-size: 18px;
  line-height: 1.1;
}
.brand__tag{
  display: block;
  font-weight: 520;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 2px;
}

.headline{
  margin: 0 0 10px 0;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.subhead{
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.6;
  max-width: 60ch;
}

.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 1;
}
.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,209,102,.16);
}
.footer{
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.55);
  font-size: 12.5px;
}

/* Responsive */
@media (max-width: 900px){
  .wrap{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .brand__logo{ width: 100px; }
}

/* Accessibility: reduce motion (none used, but keep safe if added later) */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; }
}