/* Globale Navigation */
.app-nav {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.nav-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: #f3a95a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-links a.active {
  color: #e62305;
  font-weight: 700;
}

/* Navigation Item - Position Relative for Badge */
.nav-item {
  position: relative;
  display: inline-block;
}

/* Notification Badge Styles */
.notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 12px;
  height: 12px;
  background: #e62305;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 1px #06008b;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

@media (max-width: 600px) {
  .nav-container {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }
}
