/* ===== HEADER BASE ===== */
.header {
  background: linear-gradient(to right, #f6d365, #fda085);
  color: #012b55;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.gold-logo {
   width: 100px;
  height: 40px;
 
}



.header-title a {
  color: #655b5b;
  font-family: monospace;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #012b55;
  cursor: pointer;
}
.nav-list { display: flex; align-items: center; gap: 1.5rem; }

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .header-nav {
    display: none;
    width: 100%;
    background-color: #ede021;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }
  .header-nav.active { display: block; animation: fadeIn 0.3s ease-in-out; }
  .nav-list { flex-direction: column; gap: 1rem; padding: 1rem 0; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== ACCOUNT SIDEBAR ===== */
.account-sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 320px;
  height: 100%;
  background: #fff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease-in-out;
  z-index: 2000;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.account-sidebar.active { right: 0; }

.sidebar-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 1500;
}
.sidebar-overlay.active { display: block; }

/* ===== SIDEBAR CONTENT ===== */
.account-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.close-btn {
  cursor: pointer;
  font-size: 1.5rem;
  color: #555;
}
.account-user .avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.account-links {
  list-style: none;
  padding: 0;
}
.account-links li {
  border-bottom: 1px solid #f0f0f0;
}
.account-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.account-links a i {
  font-size: 1.2rem;
  color: #444;
}
.account-links a:hover {
  color: #007b83;
}
.btn-logout {
  margin-top: auto;
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
  border: none;
  color: white;
  padding: 10px;
  border-radius: 30px;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
}
.btn-account {
  background: none;
  border: none;
  color: black;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.user-icon {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .account-sidebar { width: 80%; }
}
