/* Studio Header */
.studio-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent; /* or use a gradient/image */
  padding: 1rem 2rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Fixed Navigation Bar */
.navbar {
  position: fixed;
  top: 170px; /* directly below fixed header */
  left: 0;
  width: 100%;
  background-color: #2a2a2a;
  border-bottom: 2px solid #00ff00;
  z-index: 999;
}

/* Brand Styling */
.navbar-brand {
  font-family: 'Minecraftia', sans-serif;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Logo */
.navbar-logo {
  height: 130px;
  width: auto;
  margin-bottom: 0.25rem;
}

/* Title */
.navbar-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: #d4af37;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
  animation: pulseGold 3s infinite;
  margin: 0;
}

/* Navigation Links */
.nav-link {
  color: #ff4444;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Active + Hover States */
.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: #ffcc00;
  text-shadow:
    0 0 8px #ffcc00,
    0 0 12px #ffcc00,
    0 0 16px #ff4444;
}

/* Dropdown Menu Styling (optional enhancement) */
.dropdown-menu {
  background-color: #1a1a1a;
  border: 1px solid #00ff00;
}

.dropdown-item {
  color: #e0fdfd;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #00ffcc;
  color: #111;
}