/* Amzzify Coming Soon — HTML/CSS only */

:root{
  --bg: #181f33;
  --card: rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.55);
  --shadow: 0 18px 60px rgba(0,0,0,0.45);
  --radius: 20px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: radial-gradient(900px 420px at 50% 20%, rgba(255,255,255,0.08), transparent 60%),
              radial-gradient(900px 420px at 20% 80%, rgba(90,170,255,0.10), transparent 55%),
              var(--bg);
  color: var(--text);
  font-family: "Google Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page{
  min-height:100vh;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 22px;
  padding: 28px 18px 90px;
  position:relative;
}

.card{
  width:min(720px, 100%);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3.2vw, 34px);
  text-align:center;
  backdrop-filter: blur(10px);
}

.logo-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 14px;
}

.logo{
  width: min(340px, 74vw);
  height:auto;
  display:block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.35));
}

h1{
  margin: 10px 0 6px;
  font-size: clamp(28px, 4.3vw, 44px);
  letter-spacing: -0.02em;
}

.sub{
  margin: 0 auto 18px;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
}

.contact{
  margin: 18px auto 10px;
  display:flex;
  align-items:stretch;
  justify-content:center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.contact-item{
  min-width: 220px;
  display:flex;
  flex-direction:column;
  gap:6px;
  padding: 6px 10px;
}

.label{
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted2);
}

.value{
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.value:hover{ text-decoration: underline; }

.divider{
  width: 1px;
  background: rgba(255,255,255,0.12);
  border-radius: 1px;
}
@media (max-width: 560px){
  .divider{ display:none; }
  .contact-item{ min-width: 100%; }
}

.tiny{
  margin: 10px 0 0;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
}

/* Floating badges */
.floatbtn{
  position: fixed;
  bottom: 18px;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration:none;
  color: #0b0f1c;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  transform: translateZ(0);
  transition: transform .15s ease, filter .15s ease;
  user-select:none;
}
.floatbtn:hover{ transform: translateY(-2px); filter: brightness(1.04); }
.floatbtn:active{ transform: translateY(0px) scale(0.99); }

.floatbtn-left{ left: 18px; background: rgba(255,255,255,0.92); color: #0b0f1c; }
.floatbtn-right{ right: 18px; background: rgba(255,255,255,0.92); color: #0b0f1c; }

.floatbtn-icon{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  color: #ffffff;
}

/* Instagram gradient pill */
.fab-left .floatbtn-icon{
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* WhatsApp green */
.fab-right .floatbtn-icon{
  background: #25D366;
}

/* Responsive: collapse text labels */
@media (max-width: 460px){
  .floatbtn-text{ display:none; }
  .floatbtn{ padding: 10px; }
}



/* Bottom social icons */
.social-row{
  display:flex;
  justify-content:center;
  gap:18px;
  margin: 18px 0 10px;
}
.social-row a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background: rgba(255,255,255,0.12);
  color:#fff;
  font-size:18px;
  transition: all .2s ease;
}
.social-row a:hover{
  background:#fff;
  color:#181f33;
  transform: translateY(-2px);
}


/* Social icons outside card */
.social-row.outside{
  margin-top: 22px;
}

/* Override: Social icons clarity on dark background */
.social-row.outside{
  margin-top: 10px;
  margin-bottom: 6px;
}
.social-row.outside a{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
}
.social-row.outside a:hover{
  background: rgba(255,255,255,0.95);
  color: #181f33;
  border-color: rgba(255,255,255,0.85);
}
.social-ico{
  display:grid;
  place-items:center;
}


/* Brand-accurate colors for floating badges (keep icons crisp & consistent) */
.floatbtn-left .floatbtn-icon{
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #ffffff;
}
.floatbtn-right .floatbtn-icon{
  background: #25D366;
  color: #ffffff;
}

