/*
Theme Name: Luxven Coming Soon PRO
Theme URI: https://luxvenrealestate.com
Author: Luxven Team
Description: A sleek, luxury coming soon one-pager for real estate brands.
Version: 1.2
Text Domain: luxven-comingsoon-pro
*/
:root{
  --bg:#0a0d12;
  --fg:#f6f8fb;
  --muted:#c7cfdb;
  --gold:#d4af37;
  --accent:#7aa2ff;
  --glass: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.14);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Poppins",system-ui,Segoe UI,Roboto,Arial;
  color:var(--fg);
  background:var(--bg);
}

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:100vh;      /* fallback */
  min-height:100dvh;     /* modern mobile browsers */
  display:flex;
  justify-content:center;  /* center horizontally */
  align-items:center;      /* center vertically */
  text-align:center;
  overflow:hidden;
  padding:20px;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(100% 60% at 50% 10%, rgba(10,13,18,0) 0%, rgba(10,13,18,.35) 55%, rgba(10,13,18,.78) 100%),
    linear-gradient(180deg, rgba(10,13,18,.35), rgba(10,13,18,.85)),
    url('assets/hero.jpg') center/cover no-repeat;
  filter:saturate(1.05) contrast(1.03);
}
.hero video{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:.35; pointer-events:none; mix-blend-mode:luminosity;
}

/* ===== Container & Card ===== */
.container{
  position:relative; z-index:2;
  width:min(1120px,92%);
  margin-inline:auto;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  text-align:center;
}
.brand{
  display:flex; align-items:center; justify-content:center; gap:12px;
  margin-bottom:14px;
  letter-spacing:.08em; text-transform:uppercase;
  font-weight:700; font-size:12px; color:var(--muted);
}
.logo{
  width:24px; height:24px; border-radius:6px;
  background:linear-gradient(135deg,var(--gold),#b89329);
  box-shadow:0 6px 18px rgba(212,175,55,.45);
}
.card{
  background:var(--glass);
  border:1px solid var(--border);
  border-radius:28px;
  padding:clamp(24px,5vw,42px);
  box-shadow:0 10px 40px rgba(0,0,0,.40);
  backdrop-filter:blur(8px);

  /* centering & size */
  width:100%;
  max-width:640px;          /* adjust 560–720 to taste */
  margin-inline:auto;
  text-align:center;
}

/* ===== Typography ===== */
.kicker{
  display:inline-block;
  padding:6px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted);
  margin-bottom:14px;
}
h1{
  font-size:clamp(32px,5.2vw,64px);
  line-height:1.08; margin:10px 0 12px;
  font-weight:800;
}
h1 .gold{ color:var(--gold); }
.lead{
  font-size:clamp(16px,2.2vw,20px);
  color:var(--muted); margin:0 0 20px;
}
.divider{
  width:88px; height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  margin:18px auto 8px; opacity:.9;
}

/* ===== Buttons ===== */
.actions{
  display:flex; gap:12px; flex-wrap:wrap; justify-content:center; margin-top:18px;
}
.btn{
  appearance:none; border:none; cursor:pointer; text-decoration:none; user-select:none;
  display:inline-flex; align-items:center; gap:10px; white-space:nowrap;
  padding:14px 18px; border-radius:14px; font-weight:700; color:var(--fg);
  transition:transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  background:#171c24; border:1px solid var(--border);
}
.btn:hover{ transform:translateY(-1px); }
.btn:active{ transform:translateY(0); }

.btn-wa{
  background:#1d3b2a; border-color:#2d503b;
  box-shadow:0 10px 26px rgba(40,167,69,.25);
}
.btn-wa:hover{ background:#214231; }
.btn-wa svg{ width:18px; height:18px; }

.btn-mail{ background:#1b2531; border-color:#2a3a4a; }
.btn-mail:hover{ background:#212e3d; }

/* ===== Meta & Footer ===== */
.meta{
  margin-top:18px; font-size:13px; color:var(--muted);
}
.footer{
  position:absolute; inset-inline:0; bottom:16px; text-align:center;
  font-size:12px; color:#aab6c6;
  text-shadow:0 1px 2px rgba(0,0,0,.4);
  padding:0 10px;
}

/* ===== Countdown ===== */
.countdown{
  display:flex;              /* visible */
  margin:16px auto 0;
  gap:10px;
  justify-content:center;
}
.cd{
  min-width:72px; padding:10px;
  border-radius:12px; background:#11161d; border:1px solid var(--border);
}
.cd b{ font-size:22px; display:block; }
.cd span{ font-size:12px; color:var(--muted); }

/* ===== Responsive ===== */
@media (max-width:520px){
  .actions .btn{ width:100%; justify-content:center; }
}
