/* ===============================
   HUMANISM – CULTURAL SIDEBAR
   =============================== */

.humanism-cultural-btn {
  display: block;
  padding: 14px 16px;
  margin-bottom: 7px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #f7f2e8 !important;

  /* WARNA UTAMA (SELARAS BANNER) */
  background: linear-gradient(
    135deg,
    #4b3621,
    #6a4a2f
  );

  border-radius: 6px;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  transition: all 0.45s ease;
}

/* ORNAMEN BUDAYA HALUS */
.humanism-cultural-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 2px,
      transparent 2px,
      transparent 6px
    );
  opacity: 0.6;
  z-index: 0;
}

/* AKSEN EMAS SAAT HOVER */
.humanism-cultural-btn::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(196,154,90,0.9),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 0;
}

/* HOVER EFFECT */
.humanism-cultural-btn:hover::after {
  left: 100%;
}

.humanism-cultural-btn:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(75,54,33,0.45);
}

/* FOCUS (AKSESIBILITAS) */
.humanism-cultural-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(196,154,90,0.45);
}
