/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100%;
  background: #fff;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  background: #202A44;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

nav .logo {
  display: flex;
  align-items: center;
  margin: 0 24px;
}

.logo .menu-icon {
  color: #fff;
  font-size: 24px;
  margin-right: 14px;
  cursor: pointer;
}



.logo .logo-name img,
.logo .main-logo-name img {
  height: 69px; /* Sesuaikan angka ini jika ingin logonya lebih besar/kecil */
  width: auto; /* Menjaga proporsi gambar agar tidak gepeng */
  object-fit: contain;
}

.logo .main-logo-name:hover {
  text-decoration: none;
}

/* ===== SIDEBAR ===== */
nav .sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  width: 260px;
  padding: 20px 0;
  background-color: #202A44;
  box-shadow: 0 5px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

nav.open .sidebar {
  left: 0;
}

.sidebar .sidebar-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 16px;
}

.sidebar-content .list {
  list-style: none;
}

.list .nav-link {
  display: flex;
  align-items: center;
  margin: 8px 0;
  padding: 14px 12px;
  border-radius: 8px;
  text-decoration: none;
}

.lists .nav-link:hover {
  background-color: #fff;
}

.nav-link .icon {
  margin-right: 14px;
  font-size: 20px;
  color: #fff;
}

.nav-link .link {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

.lists .nav-link:hover .icon,
.lists .nav-link:hover .link {
  color: #202A44;
}

/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  top: 0;
  left: -100%;
  height: 1000vh;
  width: 200%;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  background: rgba(0, 0, 0, 0.3);
}

nav.open ~ .overlay {
  opacity: 1;
  left: 260px;
  pointer-events: auto;
}

/* ===== BOTTOM CONTENT (DARK MODE LINK SEKARANG JADI LINK BIASA) ===== */
.bottom-cotent .nav-link:hover {
  background-color: #fff;
}

.bottom-cotent .nav-link:hover .icon,
.bottom-cotent .nav-link:hover .link {
  color: #202A44;
}
