.mc_item_Willkommen b{
	text-transform: uppercase;
    font-family: Arial, sans-serif;
}
.mc_item_Willkommen{
    font-size: 12px;
}
.npc-card {
  position: relative;
  cursor: pointer;
}

.npc-info-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 180px;
  background-color: var(--farbe1);
  border: 1px solid var(--farbe2);
  padding: 6px;
  font-size: 10px;
  z-index: 5;
}

.npc-card:hover .npc-info-box {
  display: block;
}

/**/
.honors-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  font-family: Georgia, serif;
  font-size: 11px;
  margin: 20px auto;
}

.honors-box {
	width:50%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  padding-right: 20px;
  border-right: 1px solid var(--farbe3);
}

.honor-item {
  position: relative;
  text-align: center;
}

.honor-img {
  width: 88px;
  height: 33px;
  border: 1px solid var(--farbe2);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
}

.honor-icon {
  position: absolute;
  top: -6px;
  left: -10px;
  font-size: 34px;
  color: var(--farbe3);
  transform: rotate(-20deg);
  z-index: 1;
}

.honor-title {
  font-weight: bold;
  font-size: 11px;
  color: var(--farbe2);
  margin-top: 4px;
}

.honor-name {
  font-style: italic;
  font-size: 10px;
  color: var(--farbe2);
}

/* Rechte Seite */
.plot-npc-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  padding-left: 10px;
}


.npc-card {
  background-color: var(--farbe1);
  border: 1px solid var(--farbe3);
  padding: 6px 10px;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.05);
}

.npc-label {
  font-weight: bold;
  color: var(--farbe2);
  font-size: 11px;
}

.npc-name {
  font-style: italic;
  font-size: 10px;
  color:var(--farbe2);
}

/**/
.hover-card {
  width: 250px;
  font-size: 12px;
  margin: 10px auto;
}

.hover-image {
  width: 100%;
  height: 300px;
  background-image: url(https://nightfall.gedankenschloss.de/images/lexikon/plot.png); /* <- DEIN BILD HIER */
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hover-text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
    background-color: var(--durchsichtig1);
    border: 1px solid var(--farbe2);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 20px;
  line-height: 1.9;
  text-align: left;
}

.hover-image:hover .hover-text {
  opacity: 1;
}

.hover-hint {
  font-size: 10px;
  margin-top: 3px;
  font-style: italic;
}

/**/
.plot-box {
  max-width: 250px;
  padding: 10px;
  font-size: 12px;
}

.plot-info {
  margin-bottom: 4px;
}

/**/
h6{
  font-size: 28px;
	margin:0px;
	padding:0px;
    font-family: var(--font-base2);
    font-weight: 100;
    unicode-bidi: isolate;
    color: var(--farbe2);
}
/**/
.floating-eventbox {
  width: 100%;
  max-width: 240px;
  padding: 10px 12px;
  font-family: Georgia, serif;
  font-size: 12px;
  position: relative;
  overflow: hidden;
}

.event-icon {
  float: right;
  width: 40px;
  height: 40px;
  color: var(--farbe1);
  text-align: center;
  margin-top:-55px;
  margin-left:-20px;
  font-size: 18px;
  line-height: 40px;
  position: relative; 
	text-shadow: 2px 1px 1px var(--farbe2);
}

.event-label {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--farbe1);
  padding: 0 4px;
  font-weight: bold;
}

.event-text {
  overflow: hidden;
}

.event-message {
  font-size: 12px;
  margin-bottom: 4px;
  text-align: left;
}

.event-date {
  font-size: 10px;
  text-align: left;
  font-style: italic;   
	color: var(--durchsichtig1);
    text-shadow: 2px 1px 1px var(--farbe2);
    text-transform: uppercase;
}

/**/
.floating-newsbox {
  width: 100%;
  max-width: 250px;
  padding: 10px 12px;
  font-size: 12px;
  position: relative;
  overflow: hidden;

}

.floating-icon {
  float: left;
  width: 40px;
  height: 40px;
  background-color: var(--farbe3);
  color: var(--farbe1);
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  line-height: 40px;
  position: relative;
  margin-right: 10px;
  text-shadow: 2px 1px 1px var(--farbe2);
}

.floating-label {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--durchsichtig1);
  padding: 0 4px;
  font-weight: bold; 
  text-shadow: 2px 1px 1px var(--farbe2);
}

.floating-text {
  overflow: hidden;
}

.news-message {
  font-size: 12px;
  margin-bottom: 4px;
  text-align: right;
}

.news-date {
  font-size: 10px;
  text-align: right;
  font-style: italic; 
	color: var(--durchsichtig1);
    text-shadow: 2px 1px 1px var(--farbe2);
    text-transform: uppercase;
}


/**/
.weather-vintage {
  width: 250px;
  font-size: 12px;
  padding: 12px;
  line-height: 1.5;
}

.weather-head {
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 4px;
  margin-bottom: 8px;
}

.weather-row {
  margin-bottom: 4px;
}

.weather-row strong {
 color: var(--durchsichtig1);
	text-shadow: 2px 1px 1px var(--farbe2);
}

.moon-note {
  font-style: italic;
  font-size: 11px;
  color: var(--durchsichtig1);
  margin-top: 6px;
  text-shadow: 2px 1px 1px var(--farbe2); 
  text-transform: uppercase;
}
/**/
.flex-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    outline: 5px solid var(--farbe2);
    background: url(https://www.transparenttextures.com/patterns/arches.png);
    background-color: var(--farbe3);
     gap: 20px;
}
.flex-box{ 
	flex: 1.1;
	margin:10px;
    background-color: var(--durchsichtigoben);
	padding:10px;
	border: 1px solid var(--farbe2);
	min-height:390px;
	height:auto;
}
/**/
h6.wolf-title{
	font-family: var(--font-base10);
    font-size: 38px;
    letter-spacing: 0.1em;
    transition: color 0.3s ease-in-out;
    text-decoration: none;
    background: linear-gradient(359deg, var(--farbe1), var(--farbe2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3px;
}

.wolf-slogan{
	color: var(--linkcolor2);
	position:relative;
	margin-top:-10px;
	padding:-10px; 
	font-size: 16px;
}

p.wolf-text {
    max-width: 400px;       /* statt fixer width */
    width: 100%;
    padding: 20px; 
    font-size: 12px;
    border-radius: 8px;
    text-align: justify;    /* Blocksatz bleibt */
    margin: 0 auto;         /* zentriert innerhalb des flex-Kastens */
    box-sizing: border-box;  
	transform: translateX(10px); /* z.B. leicht nach rechts schieben */
}

/**/
.nd-header {
  position: relative;
  display: flex;
  height: 550px;
  background: var(--headerhintergrund);
  overflow: hidden;
  font-family: 'Georgia', serif;
  justify-content: space-between; /* verteilt gleichmäßig */
}

/* Bild links, halb rausragend */
.nd-header-left .wolf-image {
  position: absolute;
  left: 10px;
  top: 405px;
  height: 160px;
  z-index: 2;  
  flex: 4;
}

/* Hintergrund dunkle Stadt-Overlay */
.nd-header-bg .city-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}

/* Kalender in der Mitte */
.nd-header-center {
  flex: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  text-align: center;
  gap: 0.5em;
  padding-left: 10px; /* gleicht das absolute Bild links aus */
}

.calendar-placeholder {
	background: var(--durchsichtig2);
	border: var(--durchsichtig2);
	padding: 10px;
	border-radius: 8px;
	font-size: 18px;
	margin-top:130px;
	color: var(--linkcolor2)!important;
}

/* Rechte Seite mit Lesezeichen-Optik */
.nd-header-right {
  flex: 1;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 3;
  padding: 0 20px;
}

