/* ========================================
   UX Sticky Header Dynamic
   ======================================== */
.ux-sticky-header {
  position: relative;
  width: 100%;
  z-index: 999;
  transition: transform 0.35s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.ux-sticky-header.ux-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.ux-sticky-header.ux-header-hidden {
  transform: translateY(-100%);
}
.ux-sticky-header.ux-header-scrolled {
  background: rgba(255, 255, 255, 0.89);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.hero-viewport {
  position: relative;
  background-color: #121212;
  /* Tinggi ini akan menentukan total durasi scroll */
  background: radial-gradient(circle at center, #1e293b 0%, #121212 70%, #0a0a0a 100%);
}

/* 2. Responsive Sticky Scene */
.sticky-scene {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 20px; /* Padding aman buat mobile */
}

.content-reveal {
  grid-area: 1/1;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.item-card-stack {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.95);
  will-change: transform, opacity;
}

.text-layer {
  grid-area: 1/1;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center; /* Anchor utama di tengah */
  gap: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0;
}

/* Part Kiri: Naik ke atas */
.part-left {
  align-self: flex-start;
  margin-bottom: 10vh; /* Atur seberapa tinggi naiknya */
}

.part-left img {
  height: clamp(120px, 25vw, 220px); /* Lebih masif */
  width: auto;
}

/* Part Kanan: Turun ke bawah */
.part-right {
  align-self: flex-end;
  margin-top: 10vh; /* Atur seberapa jauh turunnya */
}

.part-right img {
  height: clamp(120px, 25vw, 220px); /* Lebih masif */
  width: auto;
  max-width: 100%;
}

.text-layer img {
  /* Gambar akan mengikuti ukuran container-nya */
  height: clamp(60px, 15vw, 120px);
  width: auto;
  object-fit: contain;
  max-width: 100%;
}

/* 4. Fix for small screens (Landscape / iPhone SE) */
@media (max-height: 600px) {
  .item-card-stack .display-1 {
    margin-bottom: 1rem !important;
  }
  .item-card-stack p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; /* Potong teks kalau layar terlalu pendek */
  }
}
article.post pre {
  background-color: #1e1e1e;
  color: #d4d4d4;
  padding: 1.25rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  line-height: 1.6;
  border: 1px solid #333;
  font-family: "Fira Code", "Courier New", monospace;
}
article.post pre code {
  background-color: transparent;
  color: inherit;
  padding: 0;
  font-size: 0.775rem;
  white-space: pre;
  border: none;
}
article.post pre::-webkit-scrollbar {
  height: 6px;
}
article.post pre::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 10px;
}
article.post pre::-webkit-scrollbar-thumb:hover {
  background: #555;
}
article.post pre::-webkit-scrollbar-track {
  background: #1e1e1e;
}
article.post p > code, article.post li > code {
  background-color: #2d2d2d;
  color: #feece9;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.5em;
}

/*# sourceMappingURL=luftinur.css.map */
