
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&display=swap');

body {
  font-family: 'Orbitron', sans-serif !important;
  padding-top: 50px;
  background: var(--bg-light, #f3f7ff);
  color: var(--text-dark, #0a1b3e);
  transition: all 0.3s ease;
}

body.dark-mode {
  background: var(--bg-dark, #0a1b3e);
  color: var(--text-light, #b0b8d4);
}

.without-jumbo {
  padding-top: 30px;
}

/* ✨ Links */
a {
  color: var(--primary, #007bff);
  text-decoration: none !important;
  transition: 0.3s ease;
}
a:hover {
  color: var(--accent, #ff80ab);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

/* 🔹 Top Navigation */
.top-nav {
  background: linear-gradient(135deg, var(--primary, #007bff), var(--secondary, #c218f2)) !important;
  color: #fff !important;
  font-family: 'Orbitron', sans-serif !important;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-nav a {
  color: #fff !important;
  margin: 0 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s;
}
.top-nav a:hover {
  color: var(--accent, #ff80ab) !important;
  transform: scale(1.05);
}

/* 🧭 Dropdowns */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-menu {
  position: absolute;
  left: -60px;
  width: 180px;
  background: var(--card-light, #ffffff);
  border: 1px solid var(--border-light, #e0e0e0);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  visibility: hidden;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-dark, #111a3c) !important;
  transition: 0.3s;
}
.dropdown-menu a:hover {
  background: var(--bg-light, #f3f7ff);
  color: var(--primary, #007bff) !important;
}

/* 🧩 Navbar Icons */
.navbar-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.icon-nav {
  font-size: 32px;
  padding: 0.4rem;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.icon-nav:hover {
  color: var(--accent, #ff80ab);
  transform: scale(1.1);
}

/* 🧠 Jumbotron */
.jumbo {
  padding-top: 80px;
  text-align: center;
  @media (max-width: 768px) {
    padding-top: 60px;
  }
}
.jumbo h1 {
  font-size: 2.2rem;
  font-family: 'Orbitron', sans-serif !important;
  letter-spacing: 1px;
  color: var(--primary, #007bff);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}
.jumbo .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-dark, #0a1b3e);
}
.jumbo .button {
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary, #c218f2), var(--accent, #ff80ab));
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.jumbo .button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--accent, #ff80ab), var(--secondary, #c218f2));
}

/* 🪶 Forms */
.navbar-form {
  float: right;
}
input, textarea {
  font-family: 'Orbitron', sans-serif;
  border-radius: 10px;
  border: 1px solid var(--border-light, #e0e0e0);
  padding: 0.6rem 1rem;
  transition: all 0.3s;
  width: 100%;
}
input:focus, textarea:focus {
  border-color: var(--secondary, #c218f2);
  box-shadow: 0 0 8px rgba(194, 24, 242, 0.3);
  outline: none;
}

/* 🧭 Sidebar */
.navbar-side {
  float: right;
}
.navbar-side form {
  float: left;
}

/* 🧾 Lists */
.list-group-item {
  border: 1px solid var(--border-light, #ebebeb);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  background: var(--card-light, #fff);
  transition: 0.3s;
}
.list-group-item:hover {
  background: linear-gradient(135deg, #f8faff, #f3f7ff);
  transform: translateY(-2px);
}

/* ⚙️ Account Settings */
#setting {
  margin-top: 10px;
}

/* 🌐 Responsive */
@media (max-width: 992px) {
  .top {
    margin-left: 0;
  }
  .navbar-form {
    float: none;
    display: block;
    text-align: center;
  }
}
