body { margin: 0; font-family: Arial, sans-serif; }

header {
  background: #f4b41a;
  color: #000;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-size: 22px; font-weight: bold; }

/* Desktop Menu */
.desktop-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}
.desktop-menu a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  margin-top: 5px;
  z-index: 1000;
}
.dropdown-content a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #000;
}
.dropdown:hover .dropdown-content { display: block; }

/* Hamburger */
.menu-toggle {
  font-size: 22px;
  cursor: pointer;
  margin-left: 15px;
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #222;
  padding: 10px;
}
.mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
}

/* Mobile Dropdown */
.mobile-dropdown { margin: 10px 0; }
.mobile-dropdown button {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-dropdown-content {
  display: none;
  padding-left: 15px;
}
.rotate { transform: rotate(180deg); transition: 0.3s; }

/* Side Menu */
.side-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 250px;
  background: #fff;
  box-shadow: -2px 0 6px rgba(0,0,0,0.2);
  padding: 20px;
  z-index: 2000;
}
.login-btn {
  display: block;
  background: #f4b41a;
  border: none;
  padding: 10px;
  margin: 4px 0;
  cursor: pointer;
  font-weight: bold;
}
#sideMenu, #mobileMenu {
  transition: all 0.3s ease-in-out;
}
.auth-section {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* subtle divider */
}

.btn-login {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  background: #ff9800;        /* orange theme */
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: #e68900;
}

.forgot-link {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #ddd;
  text-decoration: none;
}

.forgot-link:hover {
  color: #ff9800;
  text-decoration: underline;
}
.auth-section {
  text-align: center;
  padding: 20px 15px;
}

.auth-link {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #555;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #222, #333);
}

.auth-link:hover {
  background: linear-gradient(135deg, #ff9800, #e67e00);
  color: #fff;
  border-color: #ff9800;
}

.forgot-link {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.forgot-link:hover {
  color: #ff9800;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-menu { display: none !important; }
  .menu-toggle { display: block !important; }
}

@media (min-width: 769px) {
  #mobileMenu { display: none !important; }
}
