/* tablet / small laptop */
@media (max-width: 900px) {
  /* MAINPAGE WIDTH – fixes horizontal scroll + search being off-screen */
  .mainpage {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  header .nav .mainpage {
    width: 100%;
  }
 

  /* old nav flex settings kept (in case you reuse later) */
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-block; }

  .fullpage { width:100%; }


  .news-grid {
    grid-template-columns:1fr;
  }
}











/* phones */
@media (max-width: 600px) {
  h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
  h2 { font-size: clamp(1.25rem, 4vw, 1.75rem); }
  .btn { padding: var(--space-sm) var(--space-md); }

  .mega-inner { grid-template-columns: 1fr; }

  .fullpage { width:100%; }
  .mainpage { width:100%; }

.top-social {
  position: absolute;
  top:0;
  left:0;
  padding:0 !important;
}
.top-lang {
  position: absolute;
  top:25px;
  left:5px;
}
.logo {
  height:100px;
  margin-top:50px;
}
.logo-koala-lumpur {
  height:100px;
}
  .search {
    width: 120px !important;     /* or any fixed width you prefer */
    transition: none !important; /* remove animation */
  }

  .search:focus {
    width: 120px !important;     /* no expansion on focus */
  }


  .splash {
  width:100%;
  height:280px;
  background: #FFF url(../images/kl.jpg) no-repeat;
  background-size: 100%;
  background-position: 0px 0px;
  margin-top:-70px;
  padding:20px;
}

  .info-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    border-left: none;
    padding-left: 0;
    margin-top: 24px;
  }


.header {
 position: absolute !important;
 top:100px !important;
}
  .start-layout {
    flex-direction: column;
  }

  .start-image,
  .start-text {
    max-width: 100%;
  }

  .start-image {
    flex: 0 0 auto;
  }




}