/* === Velmoor Portalbar (optisch an vm-nav angepasst) === */
.vm-portalbar{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap: 8px 10px;
  padding: 6px 10px;
  max-width: 1100px;          /* wie vm-nav-inner */
  margin: 0 auto;

  background-image: url(https://talesofvelmoor.gedankenschloss.de/images/styles/velmoor/holzdunkel.png);
  background-repeat: repeat;
  background-position: top left;
  background-size: auto;

  border: 1px solid #201c16;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 1px 2px rgba(0,0,0,0.6);

  text-shadow: 1px 1px 1px rgb(0 0 0);
}

/* Link-„Pills“ im gleichen Duktus wie vm-nav a */
.vm-pitem{
  display:inline-flex;
  align-items:center;
  gap: 8px;

  padding: 7px 10px;          /* wie vm-nav a */
  border-radius: 6px;         /* wie vm-nav a */
  text-decoration:none;

  color: var(--vmbs-gold2);
  font-family: var(--font-base2);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;

  border: 1px solid transparent;
  background: transparent;

  line-height: 1;
  white-space: nowrap;
  transition: all 0.2s ease;
}

/* Hover exakt wie im Menü */
.vm-pitem:hover{
  color: var(--vmbs-gold2);
  background: #0a0c0c78;
  box-shadow: inset 0 0 0 1px rgba(210,179,107,0.18);
  border-color: rgba(210,179,107,0.18);
}

/* Icon-„Badge“: an deine ico-* Optik angelehnt (goldene Kontur, dunkler Kern) */
.vm-picon{
  width: 18px;
  height: 18px;
  display:grid;
  place-items:center;

  border: 1px solid rgba(210,179,107,0.55);
  border-radius: 4px;
  background: rgba(0,0,0,0.22);

  box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
}

/* FA Icon selbst */
.vm-picon i.fa{
  font-size: 12px;
  line-height: 1;
  color: rgba(210,179,107,0.95);
  opacity: 0.95;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.35));
}

/* Label: wird vom Link-Styling geerbt, nur fürs Spacing */
.vm-plabel{
  font: inherit;
}

/**/
.header-image{
	background-image: url(https://talesofvelmoor.gedankenschloss.de/images/styles/velmoor/header.png); 
	background-size: cover;
	height:600px;
	border: 1px solid #0c0c0a;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.6);
}
/* === Velmoor Menü === */
.vm-nav{
  background-image: url(https://talesofvelmoor.gedankenschloss.de/images/styles/velmoor/holzdunkel.png);
    background-repeat: repeat;
    background-position: top left;
    background-size: auto;
    border: 1px solid #201c16;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* Innenbreite passend zum Wrapper */
.vm-nav-inner{
  max-width: 1100px;
  margin: 0 auto;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px;
  gap: 12px;
}

/* UL Reset */
.vm-nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Link-Blöcke */
.vm-nav-main{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap; 
}

.vm-nav-main li{
  position: relative;
  padding: 0 10px;
}
.vm-nav-main li + li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
}

.vm-nav a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-shadow: 1px 1px 1px rgb(0 0 0);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  font-family: var(--font-base2);
  color: var(--vmbs-gold2);
  font-weight: 300;
  transition: all 0.2s ease;
  padding: 8px 10px;
  border-radius: 6px;
}

/* Hover: warmer Goldstich */
.vm-nav a:hover{
  color: var(--vmbs-gold2);
  border-color: var(--vmbs-gold2);
  background: #0a0c0c78;
  box-shadow:  inset 0 0 0 1px rgba(210,179,107,0.18);
}

/* Active/Current*/
.vm-nav a.is-active{
  color: #d5aa43;
  background: rgba(0,0,0,0.22);
  box-shadow:
    inset 0 0 0 1px rgba(210,179,107,0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Rechte Seite: PN/Account */
.vm-nav-side{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.vm-nav-ico a{
  padding: 8px 10px;
}

/* Mini-Icons als CSS (kein FontAwesome nötig) */
.ico{
  width: 16px;
  height: 16px;
  display: inline-block;
  opacity: 0.9;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.35));
}

/* Mail Icon */
.ico-mail{
  background:
    linear-gradient(#d2b36b,#d2b36b) 2px 5px/12px 2px no-repeat,
    linear-gradient(#d2b36b,#d2b36b) 2px 9px/12px 2px no-repeat,
    linear-gradient(#d2b36b,#d2b36b) 2px 2px/12px 2px no-repeat;
  border: 1px solid rgba(210,179,107,0.55);
  border-radius: 3px;
}

/* User Icon */
.ico-user{
  border: 1px solid rgba(210,179,107,0.55);
  border-radius: 50%;
  position: relative;
}
.ico-user::before{
  content:"";
  position:absolute;
  left:50%;
  top:32%;
  transform: translate(-50%,-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(210,179,107,0.95);
}
.ico-user::after{
  content:"";
  position:absolute;
  left:50%;
  top:70%;
  transform: translate(-50%,-50%);
  width: 10px;
  height: 6px;
  border-radius: 8px 8px 2px 2px;
  background: rgba(210,179,107,0.65);
}

/* Label bei sehr kleinen Displays optional ausblenden */
@media (max-width: 620px){
  .vm-nav-main li{ padding: 0 6px; }
  .vm-nav-main li + li::before{ height: 14px; }
  .vm-nav .label{ display:none; }
}
