/* Page base */
body{
  margin:0;
  font-family:"Poppins",sans-serif;
  background:#ffffff;
  color:#000;
  text-align:center;
}

header{ padding:80px 20px 20px; }

/* LOGO row */
.logo{
  font-size:5rem;          /* matches your screenshot */
  font-weight:800;
  letter-spacing:5px;
  color:#000;
  display:inline-flex;
  align-items:center;
  gap:8px;                 /* space before the paw */
  margin:0 0 20px;
}

/* Wrap just the I so we can anchor the bindu */
.i-wrap{
  position:relative;
  display:inline-block;
  line-height:1;           /* keeps bindu math stable */
}

/* Red bindu — perfectly centered above the I */
.bindu{
  position:absolute;
  width:10px;              /* size of dot */
  height:10px;
  background:#e63946;      /* red */
  border-radius:50%;
  left:50%;
  transform:translateX(-50%);
  top:-16px;               /* vertical: move up/down 1px if needed */
}

/* Paw — same feel as before */
.paw{
  font-size:2 rem;        /* bump to 1.7–1.8rem if you want larger */
  transform:rotate(-10deg);
  line-height:1;
}

/* Gold divider (no center dot) */
.divider{
  width:80%;
  height:2px;
  background:#d4af37;
  margin:14px auto 0;
}

/* Coming Soon section + footer (unchanged) */
#coming-soon{ margin:120px 0 0; }
#coming-soon h2{ font-size:2.5rem; letter-spacing:3px; margin:0 0 10px; }
#coming-soon p{ color:#333; font-size:1.05rem; }
footer{ margin:160px 0 20px; color:#666; font-size:.9rem; }
