/* ═══════════════════════════════════════════
   UNDINE DESIGN – Globales Menü (menu.css)
   Chanel-Style Navigation
   ═══════════════════════════════════════════ */

/* ═══ HEADER ═══ */
header#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--light);
}

/* Logo-Zeile */
.header-logo-row {
  text-align: center;
  padding: 1.2rem 0 0.7rem;
  position: relative;
}

.header-logo-row .logo {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.45em;
  color: var(--dark);
  text-decoration: none;
  text-transform: uppercase;
}

/* Haupt-Navigation */
.header-nav-row {
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  display: flex;
  justify-content: center;
  position: relative;
}

.main-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav > li > a {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  padding: 0.75rem 1.3rem;
  white-space: nowrap;
}

.main-nav > li > a:hover,
.main-nav > li.open > a,
.main-nav > li.active > a {
  font-weight: 700;
}

/* Dropdown als Overlay — bewegt NICHTS im Layout */
.dropdown-bar {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  background: var(--light);
  border-bottom: none;
  z-index: 300;
  /* versteckt */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.dropdown-bar.visible {
  max-height: 60px;
  border-bottom: 1px solid var(--mid);
}

.dropdown-bar a {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  padding: 0.65rem 1.3rem;
  white-space: nowrap;
  display: block;
}

.dropdown-bar a:hover,
.dropdown-bar a.active {
  font-weight: 700;
}

/* ═══ BOXED LAYOUT ═══ */
.page {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

header#site-header {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══ HEADER SPACER ═══ */
.header-spacer {
  flex-shrink: 0;
}