/* =============================================
   sylvia.akte.de – Custom Styles
   Fonts (Cinzel, Cormorant Garamond, Nunito)
   werden vor dieser Datei geladen.
   ============================================= */

:root {
  --bg: #05011b;
  --fg: #f0ede6;
  --gold: #dbb155;
  --gold-dark: #d79628;
  --gold-light: #f6d389;
  --card-border: rgba(219, 177, 85, 0.18);
  --muted: rgba(240, 237, 230, 0.6);

  --font-body: 'Nunito', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-display: 'Cinzel', serif;
}

/* =============================================
   HEADER
   ============================================= */
.PlusFrame>.Header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 1, 27, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border) !important;
}

.PlusFrame>.Header>.Zeile1 {
  /* max-width: 1100px; */
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Title */
.PlusFrame>.Header .Title {
  min-width: 0;
  white-space: nowrap;
}

.PlusFrame>.Header .Title h1 {
  font-family: var(--font-display) !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin: 0;
}

.PlusFrame>.Header .Title h1 a,
.PlusFrame>.Header .Title h1 a:visited {
  color: var(--gold) !important;
  text-decoration: none !important;
}

.PlusFrame>.Header .Title h1 a:hover {
  color: var(--gold-light) !important;
  text-decoration: none !important;
}

/* Überschreibe globale h1-Größe und -Gewicht des Frameworks */
.PlusFrame>.Header .Title h1 * {
  font-size: 1.1rem !important;
  font-weight: 400 !important;
}

/* Navigation */
.PlusFrame>.Header .TopMenu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  gap: 0.5rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.PlusFrame>.Header .TopMenu ul li a {
  font-family: var(--font-display) !important;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.PlusFrame>.Header .TopMenu ul li a:hover {
  color: var(--gold) !important;
  text-decoration: none !important;
}

/* Hamburger (mobile) */
.PlusFrame>.Header .Hamburger {
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  order: -1;
}

/* Admin/Profil-Bereich – unauffällig halten */
.PlusFrame>.Header .Profil,
.PlusFrame>.Header .Admin {
  font-size: 0.7rem;
  opacity: 0.5;
}

/* =============================================
   FOOTER
   ============================================= */
.PlusFrame>.Footer {
  background: rgba(5, 1, 27, 0.95) !important;
  border-top: 1px solid var(--card-border) !important;
  text-align: center;
  padding: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted) !important;
}

.PlusFrame>.Footer a {
  color: var(--muted) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.PlusFrame>.Footer a:hover {
  color: var(--gold) !important;
  text-decoration: none !important;
}