/* --- Übergeordnetes Layout -------------------------------- */
html, body {
  height: 100%;
  margin: 0;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-style: italic;
  background-color: #626262;
  color: #ffffff;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Header / Hauptleiste -------------------------------- */
header {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-style: italic;
  font-size: 1.8em;
  font-weight: 600 !important;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 0 6px rgba(0,0,0,0.5);
  background-color: #626262;
  padding: 1rem;
  margin: 0;
}

/* --- Navigation ------------------------------------------ */
nav {
  background: #777;
  padding: 0.3rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  box-sizing: border-box;
}

nav a {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-weight: 600 !important;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--accent);       /* Hauptlink-Farbe, wie auf deinen Seiten */
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  transition: color 0.18s ease, transform 0.12s ease;
}

nav a:hover {
  color: var(--accent-hover);
  transform: translateY(-1px);
  text-decoration: none;
}

/* --- Haupt-Content / Portrait -------------------------------- */
.portrait-section {
  max-width: 900px;
  margin: 1.5rem auto;
  padding: 1.5rem;
  background: #4a4a4a;           /* dunkler Container */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.6);
  color: #ffffff;
  box-sizing: border-box;
}

.portrait-figure {
  text-align: center;
  margin-bottom: 1.5rem;
}

.bordered {
  border: 4px solid #626262;
  border-radius: 10px;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* --- Überschrift ---------------------------------------- */
.page-title {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 600 !important;
  font-size: 1.0em;                 /* kleiner als vorher */
  color: #ffffff;
  text-align: center;
  text-shadow: 0 0 6px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}

/* --- Textkörper ----------------------------------------- */
.bio-text {
  text-align: left;
  line-height: 1.6;
  font-size: 1.05rem;
  color: #ffffff;
}

/* --- Footer --------------------------------------------- */
footer {
  text-align: center;
  padding: 0.5rem;
  margin-top: 2rem;
  color: #626262;
  font-style: italic;
  font-size: 0.9rem;
  background: transparent;
  border-top: 2px solid #626262;
  box-sizing: border-box;
}