/* ===== IMMERSIVE MOBILE SCROLL SETUP ===== */
html {
  /* Allow html itself to scroll — required on iOS Safari */
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.925rem;
  /* Reduced base font size */
  /* Natural document height — grows with content */
  min-height: 100vh;
  /* Allow vertical scroll so chrome-collapse can trigger */
  overflow-x: hidden;
  overflow-y: auto;
  /* Prevents overscroll elastic bounce fighting the collapse */
  overscroll-behavior-y: none;
}

/* ===== HIDE SCROLLBARS FOR PC/LAPTOP & TABLET VIEWS ===== */
@media (min-width: 768px) {
  /* Hide scrollbars globally on all elements for PC and tablet to maintain premium visual aesthetic */
  * {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
  }
  
  *::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
}

