/* navbar */
@media (max-width: 768px) {
    .text-logo .sub-text{
        font-size: 14px;
    }
    .header .header-social-links a {
        font-size: 15px;
    }

    .page-title {
        padding-top: 5px;
        padding-bottom: 0px;
    }

    .avatar-sm{
        margin-left: 300px;
    }

    .realtime-clock {
        color: white;
        padding: 5px 10px;
        width: 100%; /* atau width: 300px; untuk lebar tetap */
        display: block; /* penting agar lebar berlaku */
        text-align: center; /* opsional, agar teks di tengah */
        font-weight: bold;
        border-radius: 5px; /* opsional */
    }

   .header .hsl-dekstop{
        display: none !important;
    }

    .hsl-mobile{
        display: block !important;
     }

     .header .icon-header{
        display: none !important;
     }

     .header .marque-mobile
     {
        display: block !important;
     }
     .header .marque-dekstop
     {
        display: none !important;
     }

     
  }
  

  /* marquee */
  .marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee h5 {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 10s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* zoom iklan */
.fullscreen-zoom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.fullscreen-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.close-zoom {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.d-none {
    display: none;
}


