/* Reset */
body {
  margin: 0;
  background-color: #000;
  font-family: Arial, sans-serif;
}

/* NAVBAR CUSTOM */
.navbar-custom {
  background-color: #000 !important;
  padding: 12px 22px;
}

.navbar-custom .navbar-brand {
  color: #FFD700;
  font-weight: bold;
}

.navbar-custom .nav-link {
  color: #FFD700 !important;
  font-weight: bold;
  margin-right: 20px;
}

.navbar-custom .nav-link:hover {
  color: #fff !important;
}

/* Tombol Sign In */
.navbar-custom .btn-warning {
  background-color: #FFD700 !important;
  color: #000 !important;
  border: 1px solid #FFD700;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 5px;
  font-size: 16px;
}

.navbar-custom .btn-warning:hover {
  background-color: #e6c200 !important;
}

/* Hamburger */
.navbar-custom .navbar-toggler {
  border: none;
}
.navbar-custom .navbar-toggler .bi-list {
  font-size: 28px;
  color: #FFD700;
}

/* Profile picture (desktop) */
.navbar-custom .navbar-right img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #FFD700;
  margin-right: 10px;
}

/* DROPDOWN CUSTOM */
.navbar-custom .dropdown {
  display: none;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: #2c2f33;
  border-radius: 8px;
  width: 260px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 100;
  text-align: center;
  padding: 20px;
}

.navbar-custom .navbar-right:hover .dropdown {
  display: block;
}

.navbar-custom .dropdown img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 3px solid #FFD700;
  margin-bottom: 10px;
}

.navbar-custom .dropdown .username {
  font-weight: bold;
  font-size: 17px;
  color: white;
}

.navbar-custom .dropdown .email {
  font-size: 13px;
  color: #ccc;
  margin-top: 2px;
  margin-bottom: 12px;
  word-break: break-word;
}

.navbar-custom .dropdown a {
  display: block;
  padding: 8px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  border-radius: 5px;
  transition: background-color 0.2s;
}

.navbar-custom .dropdown a:hover {
  background-color: #444;
}

.navbar-custom .dropdown .signout {
  color: #ff4444;
  font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .navbar-custom .nav-link {
    margin: 4px 0;
  }
}
