/* ==================================================
   MARYAM ULTRA PREMIUM
   Non-destructive enhancement
   ================================================== */

:root {
  --glass: rgba(255,255,255,0.08);
  --blur: blur(14px);
}

/* BODY */
body {
  background: linear-gradient(135deg, #05070f, #0b1022);
  color: #eaeaea;
}

/* ===============================
   HEADER
   =============================== */
.navbar,
header {
  background: var(--glass) !important;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* ===============================
   SEARCH BOX
   =============================== */
input[type="search"],
.opac-search input {
  background: rgba(0,0,0,.6);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(212,175,55,.3);
  box-shadow: 0 0 25px rgba(212,175,55,.15);
  color: #fff;
}

input[type="search"]::placeholder {
  color: rgba(255,255,255,.6);
}

/* ===============================
   BUTTON
   =============================== */
button,
.btn {
  border-radius: 14px;
  background: linear-gradient(135deg, #d4af37, #9c7c19);
  border: none;
  color: #000;
  transition: all .35s ease;
}

button:hover,
.btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(212,175,55,.45);
}

/* ===============================
   BOOK / RECORD CARD
   =============================== */
.item,
.record,
.book,
.card {
  background: rgba(255,255,255,.06) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  transition: all .4s ease;
}

.item:hover,
.record:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: radial-gradient(circle at top, #1a1f3c, #05070f);
  color: #aaa;
}

/* ==================================================
   SOCIAL MEDIA HEADER FIX (FINAL – SMALLER)
   ================================================== */

/* wrapper top bar */
.header-top,
.top-bar,
.topbar {
  display: flex;
  align-items: center;
}

/* group icon sosmed */
.header-top .social,
.top-bar .social,
.social-media,
.social-links {
  display: flex !important;
  align-items: center;
  gap: 6px;
}

/* icon link (diperkecil) */
.header-top .social a,
.social-media a,
.social-links a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212,175,55,0.18);
  color: #d4af37 !important;
  line-height: 1;
  transition: all .2s ease;
}

/* hover tetap premium tapi halus */
.header-top .social a:hover,
.social-media a:hover {
  background: linear-gradient(135deg, #d4af37, #9c7c19);
  color: #000 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(212,175,55,.35);
}

/* ukuran icon font */
.header-top .social a i,
.social-media a i {
  font-size: 12px;
}

/* cegah naik-turun */
.header-top * {
  vertical-align: middle !important;
}