/* style.css - Light Luxury Theme (No Black) */
:root{
  --bg: #f6f4ef;                 /* cream */
  --panel: rgba(255,255,255,0.92);
  --panel2: rgba(255,255,255,0.98);
  --text: #1b1b1b;
  --muted: rgba(27,27,27,0.68);
  --gold: #b9923b;               /* luxury gold */
  --gold2:#d9bf74;
  --line: rgba(0,0,0,0.10);
  --shadow: 0 14px 44px rgba(0,0,0,0.10);
  --radius: 18px;
  --radius2: 26px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

/* Background image + light overlay */
.bg{
  position:fixed;
  inset:0;
  z-index:-2;
  background: var(--bg);
}
.bg-img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: saturate(1.05) contrast(1.03) brightness(1.08);
  transform: scale(1.03);
}
.bg-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1100px 700px at 18% 18%, rgba(185,146,59,0.16), transparent 58%),
    radial-gradient(900px 600px at 85% 10%, rgba(255,255,255,0.65), transparent 60%),
    linear-gradient(180deg, rgba(246,244,239,0.70) 0%, rgba(246,244,239,0.94) 55%, rgba(246,244,239,1) 100%);
  z-index:-1;
}

.container{
  width:min(1120px, 92vw);
  margin:0 auto;
}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  backdrop-filter: blur(14px);
  background: rgba(246,244,239,0.70);
  border-bottom: 1px solid var(--line);
  z-index:20;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo{
  width:44px;
  height:44px;
  border-radius:14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  object-fit:cover;
}
.brand-name{
  font-weight:900;
  letter-spacing:1px;
}
.brand-tag{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}
.nav{
  display:flex;
  gap:16px;
}
.nav a{
  color: var(--muted);
  text-decoration:none;
  font-size:14px;
  padding:10px 12px;
  border-radius:12px;
  transition: 0.2s ease;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,0.55);
  border:1px solid var(--line);
}

/* Hero layout */
.hero{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:26px;
  padding: 34px 0 22px;
}

/* Chip */
.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius: 999px;
  background: rgba(185,146,59,0.14);
  border: 1px solid rgba(185,146,59,0.30);
  color: #7b5b14;
  font-weight:900;
  letter-spacing:1.2px;
  font-size:12px;
}

h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.08;
  letter-spacing:-0.6px;
}
.gold{ color: var(--gold); }

.sub{
  margin: 0 0 16px;
  color: var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width: 56ch;
}

/* Countdown */
.countdown{
  display:flex;
  gap:12px;
  margin: 18px 0 18px;
}
.cd-box{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  min-width: 92px;
  box-shadow: var(--shadow);
  text-align:center;
}
.cd-num{
  font-size:28px;
  font-weight:1000;
  letter-spacing:1px;
}
.cd-lbl{
  margin-top:4px;
  font-size:12px;
  color: var(--muted);
}

/* Notify form */
.notify{
  display:flex;
  gap:10px;
  width: min(520px, 100%);
  margin-top: 6px;
}
.notify input{
  flex:1;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  outline:none;
  background: rgba(255,255,255,0.75);
  color: var(--text);
}
.notify input::placeholder{ color: rgba(27,27,27,0.45); }
.notify button{
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(185,146,59,0.40);
  background: linear-gradient(180deg, rgba(185,146,59,0.22), rgba(185,146,59,0.12));
  color: #2a210c;
  font-weight:1000;
  cursor:pointer;
  transition: 0.2s ease;
}
.notify button:hover{
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(185,146,59,0.30), rgba(185,146,59,0.16));
}
.status{
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  width: min(520px, 100%);
  color: var(--text);
}

/* Social */
.social{
  margin-top: 18px;
  color: var(--muted);
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.social a{
  color: var(--muted);
  text-decoration:none;
}
.social a:hover{ color: var(--text); }
.dot{ opacity:0.55; }

/* Right card */
.hero-right{
  display:flex;
  justify-content:flex-end;
}
.glass-card{
  width:100%;
  background: var(--panel2);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.card-title{
  font-weight:1000;
  font-size:18px;
}
.card-desc{
  margin-top:6px;
  color: var(--muted);
  font-size:14px;
}

/* Gallery */
.gallery{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.g-item{
  position:relative;
  overflow:hidden;
  border-radius: 18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.65);
}
.g-item img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
  transition: 0.25s ease;
}
.g-item:hover img{ transform: scale(1.08); }
.g-cap{
  position:absolute;
  left:10px;
  bottom:10px;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border:1px solid var(--line);
  font-size:12px;
  font-weight:900;
}

/* Features */
.features{
  margin-top: 16px;
  display:grid;
  gap:10px;
}
.f{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
}
.f-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--gold);
  margin-top: 6px;
  box-shadow: 0 0 18px rgba(185,146,59,0.25);
}
.f-title{
  font-weight:1000;
}
.f-sub{
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

/* About */
.about{
  padding: 18px 0 44px;
}
.about-box{
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}
.about-box h2{
  margin: 0 0 8px;
}
.about-box p{
  margin: 0;
  color: var(--muted);
  line-height:1.7;
}

/* Footer */
.footer{
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
  background: rgba(246,244,239,0.80);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  color: var(--muted);
  font-size: 13px;
}
.foot-links{
  display:flex;
  gap:14px;
}
.foot-links a{
  color: var(--muted);
  text-decoration:none;
}
.foot-links a:hover{ color: var(--text); }

@media (max-width: 940px){
  .hero{ grid-template-columns: 1fr; }
  .hero-right{ justify-content:flex-start; }
  .gallery{ grid-template-columns: 1fr; }
  .g-item img{ height: 210px; }
  .nav{ display:none; }
}
