/* Custom UI styles will go here */
/* ===== GLOBAL UI BASE ===== */

body {
  background-color: #0b0f19;
  color: #e5e7eb;
}

a {
  text-decoration: none;
}

.container-ui {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Sticky CTA spacing fix */
body {
  padding-bottom: 90px;
}

/* ===== HIDE DEFAULT WP HEADER (TT5) ===== */
header.wp-block-template-part,
header.site-header {
  display: none !important;
}

/* ===== CUSTOM HEADER STYLE ===== */
#custom-header {
  background: transparent;
}

#custom-header.scrolled {
  background: rgba(11, 15, 25, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Offset for fixed header */
#custom-home-ui {
  padding-top: 90px;
}

/* ===== HIDE DEFAULT WP FOOTER ===== */
footer.wp-block-template-part,
footer.site-footer {
  display: none !important;
}


/* ===== TYPOGRAPHY SYSTEM ===== */

body {
  font-family: 'Inter', 'Hind Siliguri', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

/* Bangla text clarity */
p {
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  p {
    font-size: 1rem;
  }
}

/* ===== COLOR POLISH ===== */

.text-muted {
  color: #9ca3af;
}

.card-soft {
  background: rgba(18, 24, 38, 0.85);
  backdrop-filter: blur(6px);
}

/* Button hover smoothness */
a, button {
  transition: all 0.2s ease;
}


/* ===== MOBILE POLISH ===== */

@media (max-width: 640px) {

  #custom-header .container-ui {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .container-ui {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}


/* ===== FORCE HIDE SITE TITLE & TAGLINE (TT5) ===== */
#headerimg, div#footer {
    display: none;
}

