/* --- MAIN MENU BLOCK STYLE --- */
.menu-block {
  width: 240px;
  margin: 0 auto;
  font-family: 'Cuprum', sans-serif !important;
}

/* Header */
.menu-block .header {
  background-color: #92851E !important; /* Gold */
  color: #ffffff !important;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  border: 1px solid #ffffff;
  border-radius: 0;
  margin-bottom: 8px;
}

/* Menu Links */
.menu-block a {
  display: block;
  background-color: #1e3a5f !important; /* Dark blue */
  color: #ffffff !important;
  text-decoration: none !important;
  text-align: center;
  border: 1px solid #a68b2f;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 6px;
  transition: all 0.3s ease !important;
  font-size: small !important;
}

/* Hover effect */
.menu-block a:hover {
  background-color: #2a4e7b !important; /* lighter blue on hover */
  color: #f5e79e !important; /* light gold */
  transform: scale(1.03);
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

/* Keep link color consistent */
.menu-block a:visited {
  color: #ffffff !important;
}


/* --- MAXIMIZE BANNER DISPLAY --- */
.pkp_site_name_wrapper {
  width: 100% !important;        /* Kontainer header maksimal */
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.pkp_site_name .is_img img {
  width: 100% !important;       /* Gambar mengikuti lebar kontainer */
  max-width: 1200px !important; /* Maksimal lebar sesuai upload */
  height: auto !important;      /* Proporsional */
  display: block !important;
  margin: 0 auto !important;    /* Tengah horizontal */
}

