
/* Navigation Bar */
.navbar {
  background-color: var(--nav-bg);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #050019;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container img {
  height: 40px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #dfdfdf;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--hover-color);
  cursor: pointer;
}

.nav-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a,
.dropdown-toggle {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 8px;
  transition: color 0.25s ease;
  cursor: pointer;
}

.nav-links a:hover,
.dropdown-toggle:hover {
  color: var(--hover-color);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1e1e1e;
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
  min-width: 180px;
  display: none;
  flex-direction: column;
  z-index: 10;
}

.dropdown-menu li a {
  padding: 10px 15px;
  color: #a0a8b5;
  border-bottom: 1px solid #2c2c2c;
  display: block;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background-color: #272727;
  color: var(--hover-color);
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.extra-links {
  display: flex;
  gap: 1rem;
  margin-left: 1rem;
}

.extra-links a {
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.extra-links a:hover {
  color: var(--hover-color);
  border-color: var(--hover-color);
  background-color: #1a1a1a;
}

/* Mobile Drawer on RIGHT side */
/* Mobile Drawer - RIGHT Side */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background-color: #050019;
  /* updated background */
  padding: 2rem 1rem;
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;

  /* Classic modern border */
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  border-radius: 10px 0 0 10px;
}


.mobile-drawer.active {
  right: 0;
  /* Show from right side */
}


.drawer-section {
  border-top: 1px solid #333;
  padding-top: 1rem;
}

.drawer-section h4 {
  color: var(--hover-color);
  margin-bottom: 0.5rem;
}

.drawer-section a {
  display: block;
  color: #ddd;
  text-decoration: none;
  padding: 6px 0;
}

.drawer-section a:hover {
  color: var(--hover-color);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links,
  .extra-links {
    display: none;
  }
}

.content {
  padding: 6rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  color: #e0e0e0;
}

h1 {
  margin-bottom: 1.5rem;
  color: #ffffff;
}
