/* =============================================
   NAVIGATION
   ============================================= */

nav {
  background: var(--white);
  border-bottom: 1px solid var(--light);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* WordPress admin bar pushes the sticky nav down by 32px (desktop) or 46px (mobile) */
.admin-bar nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar nav {
    top: 46px;
  }
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2rem;
  height: 72px;
}

/* Left links */
.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

/* Center logo */
.nav-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 2rem;
  text-decoration: none;
  line-height: 1;
}


.nav-logo-ladym {
  font-family: 'Great Vibes', cursive;
  font-size: 1.55rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.06em;
  color: var(--dark);
  white-space: nowrap;
  line-height: 1.1;
  transition: color 0.2s;
}

.nav-logo-brautmoden {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--dark);
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-center:hover .nav-logo-ladym,
.nav-center:hover .nav-logo-brautmoden {
  color: var(--gold);
}

/* Right links */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  list-style: none;
}

/* Shared link styles */
.nav-left a,
.nav-right a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.nav-left a:hover,
.nav-right a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Active state – current page link stays gold */
.nav-left .current-menu-item > a,
.nav-right .current-menu-item > a,
.nav-left a.nav-active,
.nav-right a.nav-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Termin button */
.nav-btn-termin {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 0.52rem 1.2rem !important;
  letter-spacing: 0.14em !important;
  border-bottom: none !important;
  transition: background 0.2s !important;
}

.nav-btn-termin:hover {
  background: #b5924f !important;
  color: #fff !important;
  border-bottom: none !important;
}

/* Hamburger (mobile) – Desktop: versteckt */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
}

/* Mobile-Menü Logo */
.mobile-menu-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light);
}

.mobile-menu-logo .nav-logo-ladym {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--dark);
}

.mobile-menu-logo .nav-logo-brautmoden {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--dark);
}
/* Active mobile menu link */
.mobile-menu-links a.nav-active {
  color: var(--gold);
}
