:root {
    --font-color: #C8B568;
    --bg-color: #000000;
    --hover-color: #D19929;
    --accent-color: #5C3A79;
}

.flop {
  opacity: 0.4;
  cursor: not-allowed;
}

a {
  color: var(--font-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--hover-color);
}

/* Header */
header {
  background-color: #0a0a0a;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(200, 181, 104, 0.1);
}

/* Navigation */
nav.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ---------- LOGO ---------- */
.logo p {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--font-color);
}

/* ---------- NAVIGATIONSMITTE ---------- */
.navi ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navi li a {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.navi li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 100%;
  background-color: var(--hover-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.navi li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- NAV RECHTS ---------- */
.nav-design {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* SUCHE (deaktiviert) */
.suche p {
  font-style: italic;
}

/* ---------- DESIGN DROPDOWN ---------- */
.design-mode {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.design-mode > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.design-mode > ul > li {
  font-weight: bold;
}

.design-mode ul ul {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  display: none;
  z-index: 1000;
}

.design-mode ul ul li {
  padding: 0.5rem 1rem;
  white-space: nowrap;
  font-size: 0.9rem;
  cursor: pointer;
}

.design-mode ul ul li:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* ---------- DROPDOWN AKTIVIEREN ---------- */
.design-mode:hover ul ul {
  display: block;
  list-style: none;
}