html {
  background: rgba(11, 11, 11, 0.9);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #222 0%, #444 100%);
  min-height: 100vh;
  padding: 32px;
  margin: 0;
}

@media (max-width: 600px) {
  body {
    padding: 10px; /* viel kleiner am Smartphone */
  }
}

header {
position: fixed;
top: -100px; /* Höhe des Headers im eingeklappten Zustand */
left: 0;
right: 0;
height: 100px;
background: #000;
transition: top 1s ease;
z-index: 10009;
}

header.show {
top: 0;
}

header .handle {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 24px;
  background-image: url('/pictures/bg/clip.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10020;
}

.header-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(11, 11, 11, 0.9);
  background-image: url('/pictures/hg22.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-bottom: 2px solid #c2ab59;
  border-radius: 0px  0px 25px 25px;
  width: 100%;
  height: 100px;
  margin: 0;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 60px;
  z-index: 10010;
}

.logo {
  width: 300px;
  height: 100px;
  background: url('../pictures/logo.svg') no-repeat left center;
  background-size: contain; /* skaliert SVG proportional innerhalb der Box */
  position: relative;
  z-index: 1; /* optional, wenn Navigation drüberliegt */
  opacity: 0.9;
  margin: 0 0 0 30px;
  padding: 0 0 0 0;
}

.logo a {
  display: block;
  width: 130px;
  height: 130px;
  text-indent: -9999px; /* unsichtbarer Linktext */
}

main {
  width: 90%;
  border-radius: 24px;
  backdrop-filter: blur(12px);   /* glasig-weicher Effekt */
  box-shadow: 0 0 40px rgba(0,0,0,0.4); /* Tiefe geben */
  background: linear-gradient(
    to bottom right,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.04)
  );
  color: #f0f0f0;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  text-align: left;
  margin-top: calc(20px + 0px);
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px; 
}

main p.initial::first-letter {
  font-size: 6rem;
  font-weight: bold;
  color: #e0c97e;
  float: left;
  line-height: 0.75;
  padding-right: 10px;
}

main img {
  max-width: 100%;
  max-width: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(200, 200, 200, 0.2);
  border-radius: 6px;
  transition: transform 0.3s ease;
}

main img:hover {
  transform: scale(1.1);
  z-index: 10;
  position: relative;
}

@media (max-width: 600px) {
  main {
    width: 95%;       /* volle Breite */
    margin-top: calc(16px + 90px); /* oberes Padding anpassen */
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 10px 10px 10px; 
  }
}

.meldung {
  padding: 6px;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 10px;
  color: #c2ab59;
  border: 1px dotted #c2ab59;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.eingerueckt {
  padding-left: 16px;
}

.datum-uhrzeit {
  background: rgba(139, 0, 0, 0.9); /* darkred mit 70% Deckkraft */
  font-weight: bold;
  font-size: 8pt;
  color: #FFEFD5;
  border-radius: 3px;
  border: 1px solid rgba(200, 200, 200, 0.5);
  padding: 6px;
  margin: 0;
  user-select: none;
}

.lauftext-box {
  position: relative:
  width: 600px;
  height: auto;
  overflow: hidden;
  color: #c2ab59;
  font-size: 40pt;
  font-weight: bold;
  white-space: nowrap;
  text-transform: none;
  margin: 0 auto;
  box-sizing: border-box;
  user-select: none;
}

.lauftext-inhalt {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;           /* startet weit rechts außerhalb der Box */
  animation: scroll-text 120s linear infinite;
  animation-delay: 3s; 
}

@keyframes scroll-text {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

.banner {
  margin: 220px auto 20px;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.banner img {
  width: 70%;
  height: auto;
  border-radius: 10px;
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.knopf button {
  margin-top: 1.5em;
  padding: 0.7em 1.5em;
  font-size: 16px;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 0.4em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.knopf button:hover {
  background-color: #666;
}

.bg-fixed {
  background: 
  linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
  url('../pictures/hg1.png') no-repeat center center;
  background-size: 600px 600px;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1000;
}

.section-gradient {
  position: relative;
  background: linear-gradient(
    to right,
    rgba(255, 255, 0, 0.3),
    rgba(255, 165, 0, 0.3),
    rgba(255, 0, 0, 0.3),
    rgba(0, 128, 0, 0.3),
    rgba(0, 0, 255, 0.3)
  );
  border-radius: 20px;
  border: 1px solid #c2ab59;
  margin: 10px auto;
  padding: 10px;
  z-index: 10;
}

.section-gradient h1{
  font-family: 'Antic', sans-serif;
  margin-top: 0;
  margin-bottom: 0px;
  color: #c2ab59;
  font-size: 20pt;
  
}

.platzhalter {
  height: 20px;
  margin-bottom: 20px;
}

.abstand {
  min-height: 20px;
  margin-bottom: 200px;
}

.einzelbild-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end; /* richtet sich nach dem niedrigsten Bild */
  box-shadow: 0 2px 6px rgba(0,0,0,0.0);
  background: rgba(0,0,0,0.0);
  width: fit-content;
  margin: 20px auto;
  padding: 20px;
}

.einzelbild {
  flex: 1 1 auto;
}

.einzelbild img {
  width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 0px solid rgba(200, 200, 200, 0.6);
  transition: transform 0.3s ease;
}

.einzelbild:hover img {
  transform: scale(1.1);
  z-index: 10;
  position: relative;
}

img.drehen {
  display: inline-block;
  animation: rotation 20s linear infinite alternate;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

img.ventilator {
  display: inline-block;
  animation: rotation 20s linear infinite reverse; /* linksrum drehen */
  transition: all 0.3s ease;
}

img.ventilator:hover {
  animation-direction: normal; /* beim Hover rechtsrum */
  transform: scale(1.2) translateY(-10px); /* optionaler Effekt */
  box-shadow: 0 10px 20px rgba(0,0,0,0.3); /* optionaler Schatten */
}

@keyframes rotation {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* BACK TO TOP Button*/
.back-to-top {
  display: block;
  width: 80px;          /* Breite passend zum Icon */
  height: 50px;         /* Höhe passend zum Icon */
  background-image: url('/pictures/back.png'); /* Icon als Hintergrund */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 10px auto;
  border: none;
  cursor: pointer;
  text-indent: -9999px;  /* Text ausblenden (falls vorhanden) */
  overflow: hidden;
  background-color: transparent; /* Falls Hintergrund transparent sein soll */
}

/* Optional: Hover-Effekt */
.back-to-top:hover {
  filter: brightness(1.2);
}

.back-to-top a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Artikel des Tages */
.artikel-des-tages {
	font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
    color: #c2ab59;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px;
    margin: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.0);
}

.artikel-des-tages a {
    color: #c2ab59;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    position: relative;
    padding: 3px 3px 3px 120px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(194, 171, 89, 0.3);
    transition: background-color 0.5s ease, color 0.5s ease;
    border: 0px dashed #c2ab59;
}

.artikel-des-tages a::before {
    content: "📰";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 100px;
    line-height: 10px;
}

.artikel-des-tages a.mit-bild::before {
    content: "";
    background-image: var(--artikel-icon);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    left: -20px;
    top: -40px;
    width: 110px;
    height: 80px;
    border: 0px dotted #c2ab59;
    border-radius: 8px;
}

.artikel-des-tages a:hover {
    background: none;
    color: #FFF;
}

.artikel-des-tages strong,
.artikel-des-tages b {
	font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
    color: silver;
    font-size: 0.8rem;
    text-align: center;
    padding: 3px 3px 3px 120px;
}

.artikel-des-tages em,
.artikel-des-tages i {
    font-style: italic;
    color: #d9c57d;
}

@media (max-width: 600px) {
	.artikel-des-tages {
	display: none;
}
}

/* Downlod Block */
.download-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 20px auto;
}

.download-button {
    width: 80px;
    height: 50px;
    display: inline-block;
    background-image: url('/pictures/down.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.download-button:hover {
    opacity: 1;
}

.download-index {
    font-size: 16px;
    color: silver;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    margin: 10px 0 10px 0px;
    border: 1px solid #c2ab59;
    border-radius: 8px;
    padding: 3px 6px 3px 6px;
    background: transparent;
}

.download-label {
    font-size: 12px;
    color: silver;
    font-weight: bold;
    white-space: nowrap;
    border: 1px solid #c2ab59;
    border-radius: 8px;
    margin: 10px 0 10px 0px;
    padding: 3px 6px 3px 6px;
    background: transparent;
}

@media (max-width: 600px) {
	.download-index {
    font-size: 12px;
    margin-left: 0px;
    border-radius: 8px;
    padding: 3px 5px;
}

.download-label {
    font-size: 10px;
    padding: 3px 5px;
    background: #000;
}
}

/* Pagination Menu */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;         /* ermöglicht Umbruch in neue Zeilen */
  justify-content: center;
  gap: 10px;
  padding: 8px;         /* optional etwas Innenabstand */
}

.pagination a {
  background-color: #000;
  color: #c2ab59;
  font-weight: bold;
  font-size: 0.8rem;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #c2ab59;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px 0px rgba(0,0,0,0.3);
}

.pagination a:hover {
  background-color: darkred;
  transform: translateY(-3px);
  border: 1px solid #c2ab59;
  box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.3);
  color: #ffffff;
}

.pagination a.active,
.pagination a:active {
  background-color: darkgreen;
  transform: translateY(3px);
  border-color: #c2ab59;
  box-shadow: none;
  color: #ffffff;
}

.pagination a:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* 📱 Mobilanpassung */
@media (max-width: 600px) {
  .pagination a {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Nav Menu Toggle*/
.menu-toggle {
  position: fixed;
  top: 15px;
  left: 15px;
  background: none;
  border: none;
  font-size: 20px;
  color: #c2ab59;
  cursor: pointer;
  padding: 10px 15px;
  z-index: 10011;
}

.menu-toggle:hover {
  color: #fff;
}

body.menu-open .menu-toggle {
  display: none;
}

nav {
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  padding-right: 10px;
}

nav,
.side-menu {
  background: #000;
  padding: 10px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  justify-content: center;
  align-items: center;
}

nav ul,
.side-menu ul {
  display: flex;
  flex-direction: column; /* für vertikale Liste in der Side-Menu */
  list-style: none;
  gap: 5px;
  margin: 0;
  padding: 0;
}

nav li,
.side-menu li {
  margin: 10px 0;
}

nav a,
.side-menu a {
  text-decoration: none;
  color: #c2ab59;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0;
  position: relative;
  transition: color 0.3s, transform 0.3s ease;
  display: inline-block;
}

nav a:hover,
.side-menu a:hover {
  color: #c2ab59;
  transform: translateY(-2px);
}

nav a.active,
.side-menu a.active {
  color: #c2ab59;
  font-weight: 600;
}

nav a::after,
.side-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #c2ab59;
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after,
.side-menu a:hover::after,
.side-menu a.active::after {
  width: 100%;
  background: #c2ab59;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 20px;
  left: -290px;
  width: 180px;
  max-height: calc(100vh - 40px); /* 20px oben + 20px unten Abstand */
  overflow-y: auto;
  color: #fff;
  padding: 20px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.8),
    rgba(200, 0, 0, 0.4)
  );
  border-right: 2px solid #c2ab59;
  border-bottom: 2px solid #c2ab59;
  border-top: 2px solid #c2ab59;
  border-radius: 50px  0px 50px 0px;
  transition: left 1s ease;
  z-index: 10016;
}

.side-menu.open {
  left: 0;  /* Korrektur hier! */
}

.side-menu li {
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: 10px center;
  padding-left: 40px;
  line-height: 32px;
  transition: background-image 0.3s ease, transform 0.2s ease;
}

/* Beispiel-Menüpunkte */
.side-menu li.ueberblick     { background-image: url('/pictures/icons/kompass.png'); }
.side-menu li.artikel        { background-image: url('/pictures/icons/artikel.png'); }
.side-menu li.bildmalerei    { background-image: url('/pictures/icons/palette.png'); }
.side-menu li.galerie        { background-image: url('/pictures/icons/galerie.png'); }
.side-menu li.mediathek      { background-image: url('/pictures/icons/mediathek.png'); }
.side-menu li.kontakt        { background-image: url('/pictures/icons/kontakt.png'); }

/* Hover-Zustände mit anderen Icons oder Effekten */
.side-menu li.ueberblick:hover     { background-image: url('/pictures/icons/kompass-hover.png'); }
.side-menu li.artikel:hover        { background-image: url('/pictures/icons/artikel-hover.png'); }
.side-menu li.bildmalerei:hover    { background-image: url('/pictures/icons/palette-hover.png'); }
.side-menu li.galerie:hover        { background-image: url('/pictures/icons/galerie-hover.png'); }
.side-menu li.mediathek:hover      { background-image: url('/pictures/icons/mediathek-hover.png'); }
.side-menu li.kontakt:hover        { background-image: url('/pictures/icons/kontakt-hover.png'); }


/* Intro Box */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  padding: 32px;
}

.intro-box {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 200px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-decoration: none;
  display: block; /* ← Kein Flex mehr! */
}

.intro-box:hover {
  transform: scale(1.02);
}

.intro-box .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}

.intro-box h2 {
  margin: 0;
  font-size: 1.4rem;
  padding: 8px;
  text-align: left;
}

.intro-box p {
  margin: 0;
  font-size: 0.95rem;
  padding: 8px;
  text-align: justify;
  hyphens: auto;           /* automatisch Silbentrennung */
  -webkit-hyphens: auto;   /* für Safari */
  -ms-hyphens: auto;       /* für ältere IE */
  line-height: 1.6;        /* mehr Zeilenhöhe = luftiger */
  letter-spacing: 0.01em;  /* leichte Buchstabenabstände */
  word-spacing: 0.05em;
}

/* Beispiel-Hintergründe – Passe sie nach deinen Bildern an */

.intro-box.artikel        { background-image: url('/pictures/artikel.png'); }
.intro-box.bildmalerei    { background-image: url('/pictures/bildmalerei.png'); }
.intro-box.themen         { background-image: url('/pictures/themen.png'); }
.intro-box.mediathek      { background-image: url('/pictures/mediathek.png'); }
.intro-box.kontakt        { background-image: url('/pictures/kontakt.png'); }
.intro-box.ueber-uns      { background-image: url('/pictures/ueber-uns.png'); }


/* Context Artikel */
.context {
  position: relative;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 8px;
  width: 100%;
}

.context p {
  border: 1px solid rgba(200, 200, 200, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  background: rgba(22, 44, 66, 0.9);
  max-width: 90%;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 16px auto;
  overflow: hidden;
}

.context p {
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: justify;
  font-weight: 400;
  font-size: 16px;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  line-height: 1.6;
  letter-spacing: 0.01em;
  word-spacing: 0.05em;
  color: #bfbfbf;

}

.content a {
    color: #c2ab59;
    font-size: 8pt;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    padding: 3px 6px 3px 6px;
    border: 1px solid rgba(200, 200, 200, 0.6);
    border-radius: 4px;
    background: transparent;
}

.content a:hover {
	border: 1px solid rgba(200, 200, 200, 0.9);
    background: darkgreen;
    color: #FFFFFF;
}


/* === SPALTEN-LAYOUT STYLES === */

/* === CONTAINER-KLASSEN === */

.dreispaltig {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  width: 100%;
}

.zweispaltig {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  align-items: flex-start;
  align-items: stretch;
  background: transparent;
  padding: 0;
  margin: 20px auto;
}

.spalte.einspaltig {
  background: none;
  border: 0px solid rgba(200, 200, 200, 0.2);
  border-radius: 0.5rem;
  min-width: 90%;
  max-width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 0;
  margin: 20px auto; 
}

.spalte {
  background: none;
  border: 0px solid rgba(200, 200, 200, 0.2);
  border-radius: 0.5rem;
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 0;
  margin: 10px auto;
}

@media (max-width: 600px) {
  .zweispaltig {
  width: 95%;
  padding: 0;
  margin: 0px auto;
}
}

/* === TEXTELEMENTE NACH GRÖSSE GEORDNET === */

/* h1 */
.spalte h1 {
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: left;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.3;
  color: #907b3b;
  background: rgba(22, 44, 66, 0);
  background-image: url('/pictures/bg/bg-002.png');
  background-repeat: repeat-x;  
  background-position: center;  
  background-size: contain;
  border: 0px solid rgba(200, 200, 200, 0.2);
  border-radius: 0.5rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  padding-left: 2rem;
  padding-right: 0.3rem;
  margin-top: 0;
  margin-bottom: 20px;
  display: block;
  transition: color 0.3s ease;
}

.spalte h1:hover {
  color: #bfbfbf;
}

/* h2 */
.spalte h2 {
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: left;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.3;
  color: #bfbfbf;
  background: rgba(22, 44, 66, 0);
  background-image: url('/pictures/bg/bg-002.png');
  background-repeat: repeat-x;  
  background-position: center;  
  background-size: contain;
  border: 0px solid rgba(200, 200, 200, 0.2);
  border-radius: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 2rem;
  padding-right: 0.5rem;
  margin-top: 0;
  margin-bottom: 15px;
  display: block;
}

.spalte h2:hover {
  color: #c2ab59;
}

/* h3 */
.spalte h3 {
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: left;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.7rem;
  font-weight: bold;
  font-style: italic;
  line-height: 1.3;
  color: #a8934a;
  background: transparent;
  background-image: url('/pictures/bg/bg-001.png');
  background-repeat: repeat-x;  
  background-position: center;
  background-size: contain;
  border: 0px solid rgba(200, 200, 200, 0.2);
  border-radius: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 2rem;
  padding-right: 0.5rem;
  margin-top: 0;
  margin-bottom: 10px;
  display: block;
}

.spalte h1,
.spalte h2,
.spalte h3 {
  position: relative;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* Verzierungssymbol links */
.spalte h1::before,
.spalte h3::before {
  content: "✦";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #c2ab59;
  opacity: 0.8;
}

.spalte h2::before {
  content: "✦";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #bfbfbf;
  opacity: 0.8;
}

/* p */
.spalte p {
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: justify;
  font-weight: 400;
  font-size: 1rem;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  line-height: 1.6;
  letter-spacing: 0.01em;
  word-spacing: 0.05em;
  color: #bfbfbf;
  border: 1px solid rgba(200, 200, 200, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
  background: rgba(22, 44, 66, 0.9);
  max-width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 20px;
  overflow: hidden;
}

spalte p.initial::first-letter {
  font-size: 6rem;
  font-weight: bold;
  color: #e0c97e;
  float: left;
  line-height: 0.75;
  padding-right: 10px;
}

/* span */
.spalte span {
  color: #0055aa;
  text-transform: uppercase;
  font-size: 8pt;
  background: rgba(0, 0, 0, 0.0);
  padding: 3px 6px 3px 6px;
  border-radius: 3px;
}

/* Textfarben-Spans */
.spalte .text-rot {
	color: #ff5555;
	border: 1px solid rgba(194, 171, 89, 0.5);
	white-space: nowrap;
	}
	
.spalte .text-blau {
	color: #00aaff;
	border: 1px solid rgba(194, 171, 89, 0.5);
	white-space: nowrap;
	}

.spalte .text-gruen {
	color: #55ff55;
	border: 1px solid rgba(194, 171, 89, 0.5);
	white-space: nowrap;
	}

.spalte .text-gelb {
	color: #ffff55;
	border: 1px solid rgba(194, 171, 89, 0.5);
	white-space: nowrap;
	}
	
.spalte .text-gold {
	color: #c2ab59;
	border: 1px solid rgba(194, 171, 89, 0.5);
	white-space: nowrap;
	}
	
/* === SONSTIGES === */
.spalte code {
  background: #eee;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.95rem;
  color: #333;
}

.spalte mark {
  background-color: #fff3b0;
  padding: 0 0.2em;
}

.spalte strong {
  font-weight: bold;
  color: #c2ab59;
  font-size: 0.9rem;
  font-style: italic;
  background: rgba(0, 0, 0, 0.3);
  padding: 3px;
}

/* em */
.spalte em {
  font-style: italic;
  color: #eee;
}

.spalte .rechts {
text-align: right; }

.spalte .links {
text-align: left; }

.spalte .mittig {
text-align: center; }

/* blockquote */
.spalte blockquote {
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: justify;
  font-weight: 400;
  font-size: 1rem;
  font-style: italic;
  color: #bfbfbf;
  position: relative;
  line-height: 1.7;
  hyphens: auto;           /* automatisch Silbentrennung */
  -webkit-hyphens: auto;   /* für Safari */
  -ms-hyphens: auto;
  word-spacing: 0.05em;
  background: rgba(22, 44, 66, 0.9);
  border: 1px solid rgba(200, 200, 200, 0.2);
  border-radius: 0.6rem;
  box-shadow: -4px 0 0 0 #c2ab59, 0 0 10px rgba(0, 0, 0, 0.5);
  max-width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 1rem auto;
  transition: background 1s ease;
}

.spalte blockquote:hover {
  background: rgba(55, 0, 0, 0.6);
  color: #bfbfbf;
}

.spalte blockquote::before {
  content: "„";
  font-size: 3rem;
  color: #c2ab59;
  position: absolute;
  top: -1.8rem;
  left: 0.8rem;
  line-height: 1;
}

.spalte blockquote::after {
  content: "“";
  font-size: 3rem;
  color: #c2ab59;
  position: absolute;
  bottom: -1.6rem;
  right: 0.8rem;
  line-height: 1;
}

.spalte blockquote cite {
  display: block;
  text-align: right;
  color: #999;
  font-style: normal;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ul */
.spalte ul {
  list-style: none;
  counter-reset: item;
  border: 1px solid rgba(200, 200, 200, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
  background: rgba(22, 44, 66, 0.9);
  max-width: 100%;
  margin: 1em auto;
  padding: 1rem;
}

/* li */
.spalte li {
  position: relative;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: justify;
  font-weight: 400;
  font-size: 1rem;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  line-height: 1.4;
  letter-spacing: 0.01em;
  word-spacing: 0.05em;
  color: #e0e0e0;
  counter-increment: item;
  background: none;
  border-radius: 0.5rem;
  margin: 0 0 0 0;
  padding: 1rem 1rem 1rem 2.5rem;
}

/* Nummerierte Liste */
.spalte ul.numbered li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #c2ab50;
  font-weight: bold;
  padding: 1rem;
}

/* Buchstabierte Liste */
.spalte ul.lettered li::before {
  content: counter(item, upper-alpha) ")";
  position: absolute;
  left: 0;
  top: 0;
  color: #c2ab50;
  font-weight: bold;
  padding: 1rem;
}

/* Individuelle Marker */
.spalte ul.custom li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #c2ab50;
  font-weight: bold;
  padding: 1rem;
}

/* === INTERAKTIVE ELEMENTE === */

/* Textlinks, aber Download-Button ausnehmen */
.spalte a:not(:has(> img)):not(.download-button) {
    color: #c2ab59;
    font-size: 8pt;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    padding: 3px 6px 3px 6px;
    border: 1px solid rgba(200, 200, 200, 0.6);
    border-radius: 4px;
    background: transparent;
}

.spalte a:not(:has(> img)):not(.download-button):hover {
    border: 1px solid rgba(200, 200, 200, 0.9);
    background: darkgreen;
    color: #FFFFFF;
}

/* === BILDER === */
.spalte img {
  float: left;
  height: auto;
  max-width: 150px;
  max-height: 200px;
  object-fit: contain;
  border: 1px solid rgba(200, 200, 200, 0.2);
  margin: 0 1rem 1rem 0;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spalte img:hover {
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
  z-index: 10;
}

/* === HERO SECTION / CAROUSEL === */

.hero-panel {
    position: fixed;
    top: 100px;
    right: -350px;
    width: 100%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: rgba(0,0,0,0.0);
    border-left: 0px solid #c2ab59;
    border-right: 0px solid #c2ab59;
    border-top: 2px solid #c2ab59;
    border-bottom: 2px solid #c2ab59;
    border-radius: 50px 50px 50px 50px;
    transition: right 2s ease;
    z-index: 8888;
}

.hero-panel.open {
    right: 0;
}

.hero-panel.closed {
    right: -1400px;
}

/* Hero innerhalb des Panels relativ */
.hero-panel .hero {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.hero-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  color: #c2ab59;
  cursor: pointer;
  padding: 10px 15px;
  z-index: 10012;
}

.hero-toggle:hover {
  color: #fff;
}

/*
@media (max-width: 600px) {
    .hero-panel,
    .hero-panel.open,
    .hero-panel.closed,
    .hero-toggle {
        display: none !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}
*/


.hero {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    border: 0px solid #FFF;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-left { justify-content: flex-start; text-align: left; padding-left: 50px; }
.hero-center { justify-content: center; text-align: center; }
.hero-right { justify-content: flex-end; text-align: right; padding-right: 50px; }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}

.hero-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    z-index: 2;
    padding: 20px 0;
}

.hero-carousel-item {
    width: 300px;
    height: 200px;
    margin: 0 15px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.hero-carousel-item h2 {
    margin: 10px 0 5px;
    font-size: 1.5rem;
}

.hero-carousel-item p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.hero-carousel-image {
    width: 100%;
    padding-top: 56.25%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    cursor: pointer;
}

.hero-carousel-prev,
.hero-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.hero-carousel-prev:hover,
.hero-carousel-next:hover {
    background: rgba(0,0,0,0.6);
}

.hero-carousel-prev { left: 10px; }
.hero-carousel-next { right: 10px; }

.hero-bg-default {
    background-image: url('/pictures/intro.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-bg-artikel {
    background-image: url('/pictures/artikel-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-bg-themen {
    background-image: url('/pictures/themen-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero {
        min-height: 300px;
        padding: 10px;
    }

    .hero-left, .hero-center, .hero-right {
        justify-content: center;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-carousel-inner {
        padding: 10px 0;
    }

    .hero-carousel-item {
        min-width: 220px;
        margin: 0 10px;
    }

    .hero-carousel-item h2 {
        font-size: 1.2rem;
    }

    .hero-carousel-item p {
        font-size: 0.9rem;
    }

    .hero-carousel-prev,
    .hero-carousel-next {
        font-size: 1.5rem;
        padding: 8px;
    }
}


/* === Grid-Container === */
.content-overview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin: 40px auto;
}

/* === Einzelne Kachel === */
.overview-item {
  position: relative;              /* für Overlay */
  border-radius: 0.5rem;
  overflow: hidden;
  flex: 1 1 280px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* === Bild als Hintergrund mit Overlay === */
.overview-item .image-container {
  width: 100%;
  padding-top: 56.25%;            /* 16:9 Verhältnis */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.overview-item .image-container::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.0);     /* dunkles Overlay für Textsichtbarkeit */
}

.overview-item:hover .image-container {
  transform: scale(1.05);
}

/* === Info-Block über Overlay legen === */
.overview-item .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 15px;
  text-align: center;
  color: #c2ab59;
  z-index: 2;
  background: rgba(0,0,0,0.7);     /* optional, für bessere Lesbarkeit */
}

.overview-item .title a {
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  display: block;
  margin: 0;
}

.overview-item .meta {
  font-size: 0.8rem;
  color: #bfbfbf;
  margin-top: 2px;
}

/* === Übersichtstitel === */
.overview-title {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #c2ab59;
  text-align: center;
  margin: 2rem 0 1rem 0;
  text-transform: uppercase;
}

/* === Responsive Anpassungen === */
@media (max-width: 600px) {
  .overview-item {
    flex: 1 1 95%;
    max-width: 95%;
  }
}

.content-overview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.content-overview-table th,
.content-overview-table td {
  border: 1px solid #c2ab59;
  background: #000;
  padding: 4px 8px;
  text-align: center;
  vertical-align: middle;
  height: 32px;
}

.content-overview-table th {
  background: #000;
  font-weight: bold;
}

/* Ausnahme: Titel links */
.content-overview-table td.title {
  text-align: left;
}

.content-overview-table a {
  color: #0066cc;
  text-decoration: none;
}
.content-overview-table a:hover {
  text-decoration: underline;
}

/* Bild mittig + max. 50px */
.content-overview-table img {
  display: block;
  margin: 0 auto;
  max-height: 50px;
}

.section-head td {
  border: none;
  background: transparent;
  font-weight: bold;
  font-size: 15px;
  padding: 6px 4px;
  text-align: left;
}

@media (max-width: 600px) {
  .content-overview-table {
    table-layout: auto; /* vorher fixed */
    width: 100%;
    font-size: 12px;
  }

  .content-overview-table td.link-column {
    display: none;
  }

  .content-overview-table td,
  .content-overview-table th {
    width: auto; /* Spalten dürfen sich ausdehnen */
    padding: 2px 4px;
  }

  .content-overview-table img {
    max-width: 100%;
    height: auto;
  }
}



.zweispalten {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 90%;
  flex-wrap: wrap;
  margin: 0 auto;
}

.spalten {
  flex: 1;
  padding: 10px;
}

.spalten img {
  max-width: 70%;
  height: auto;
}

.dreispalten {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
}

.dreispalten .dreispalte {
  flex: 1 1 0;
  box-sizing: border-box;
  text-align: center;
  padding: 0;
}

/* Mittlere Spalte gezielt ansprechen und doppelt so groß machen */
.dreispalten .dreispalte:nth-child(2) {
  flex: 2 1 0; /* 2-mal so breit */
}

.dreispalten a {
  text-decoration: none;
}

/* Album Mediathek */
.album-uebersicht {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* max. 3 Spalten */
    gap: 20px;
    max-width: 600px;
    margin: 20px auto 20px auto;
    padding: 0;
    justify-items: center;
}

.album {
	position: relative;
    text-align: center;
    margin: 0;
    padding: 0;
}

.album img.thumb {
    width: 136px;
    height: 136px;
    object-fit: cover;
    border-left: 1px solid rgba(0,0,0,0.6);
    border-top: 1px solid rgba(0,0,0,0.6);
    border-radius: 10px;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
    background: transparent;
    display: block;
    margin-bottom: 8px;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.album img.thumb:hover {
    opacity: 1;
    transform: scale(1.05);
    cursor: pointer;
}

.album video.thumb {
  width: 136px;
  height: 136px;
  object-fit: cover;
  border-left: 1px solid rgba(0,0,0,0.6);
  border-top: 1px solid rgba(0,0,0,0.6);
  border-radius: 10px;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
  background: transparent;
  display: block;
  margin-bottom: 8px;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.album video.thumb:hover {
  opacity: 1;
  transform: scale(1.05);
  cursor: pointer;
}

.album-titel {
    display: inline-block;
    background: #000000;          /* schwarz */
    color: #c2ab59;               /* goldgelb */
    font-weight: bold;
    font-size: 0.85rem;
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid #c2ab59;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    user-select: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.album-titel:hover {
    background: darkred;
    color: #ffffff;
    border-color: #FFFFFF;
    cursor: pointer;
}

.album-tooltip {
    position: absolute;
    top: -40%;
    left: 0%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: 1px solid darkgrey;
    border-radius: 6px;
    min-width: 80px;
    max-width: 400px;        /* maximale Breite, aber flexibel */
    font-family: Arial, sans-serif;
    font-size: 10px;
    text-align: left;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
    z-index: 1000;
    display: inline-block;
    white-space: pre;
    line-height: 0.8;
    padding: 10px 10px;
}

.album-tooltip a {
  color: #c2ab59;
  font-size: 10px;
  text-decoration: underline;
}

.album-tooltip a:hover {
  color: #FFFFFF;
  font-size: 10px;
}

.album-tooltip p {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  margin: 0;
}

.album-tooltip span {
  color: #c2ab59;
  font-size: 10px;
  font-style: italic;
  margin: 0;
}

.album:hover > .album-tooltip {
    opacity: 1;
    pointer-events: auto;
}

.picture-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
    gap: 10px 10px; /* Abstand zwischen den Bildern */
    justify-items: center; /* Bilder horizontal zentrieren */
    align-items: center; /* Bilder vertikal zentrieren */
    max-width: 600px;
    margin: 20px auto; 
}

.picture-container img {
  width: 136px;
  height: auto;
  border-radius: 10px;
  border: 0;
  box-shadow: 10px 10px 0 rgba(0,0,0,0.3);
  padding: 4px;
  margin: 0;
  display: block;
  background: #000;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.picture-container img:hover {
  opacity: 1;
  transform: scale(1.05);
  cursor: pointer;
}

.picture-container video.thumb {
  width: 136px;
  height: auto;
  border-radius: 10px;
  border: 0;
  box-shadow: 10px 10px 0 rgba(0,0,0,0.3);
  padding: 4px;
  margin: 0;
  display: block;
  background: #000;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  object-fit: cover;
}

.picture-container video.thumb:hover {
  opacity: 1;
  transform: scale(1.05);
  cursor: pointer;
}

@media (max-width: 600px) {
  .album-uebersicht,
  .picture-container {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
  }

  .album img.thumb,
  .album video.thumb,
  .picture-container img,
  .picture-container video.thumb {
    width: 100%;
    height: auto;
    max-width: 120px;
  }

  .album-titel {
    font-size: 10px;
    max-width: 80px;
  }

  .album-tooltip {
    display: none;
  }
}

/* Kontakt Formular */
.kontakt-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0; 
}

.kontaktformular {
  max-width: 600px;
  margin: 2em auto;
  padding: 16px;
  border-radius: 16px;
  background: transparent;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  border: 1px dotted #c2ab59;
  box-shadow: 6px 6px 0px 0px rgba(0,0,0,0.3);
}

.kontaktformular label {
  display: block;
  margin-bottom: 6px;
  font-size: 12pt;
  color: #c2ab59;
  font-weight: bold;
}

.kontaktformular input[type="text"],
.kontaktformular input[type="email"],
.kontaktformular input[type="url"],
.kontaktformular input[type="file"],
.kontaktformular input[type="number"],
.kontaktformular textarea {
  width: 100%;
  padding: 0.6em;
  margin-bottom: 6px;
  border: 0px solid #aaa;
  border-radius: 0.3em;
  font-size: 16px;
  box-sizing: border-box;
}

.kontaktformular textarea {
  min-height: 120px;
  resize: vertical;
}

.kontaktformular input, textarea {
    background-color: #e6e6e6;
}

/* optional: Hover oder Fokus */
.kontaktformular input:focus, textarea:focus {
    background-color: #e6e6e6;
}

.kontaktformular button {
  margin-top: 1.5em;
  padding: 0.7em 1.5em;
  font-size: 0em;
  background-color: transparent;
  background-image: url('../pictures/senden.png');
  width: 120px;
  height: 120px;
  background-size: cover;
  background-position: center;
  color: white;
  border: none;
  border-radius: 0.4em;
  cursor: pointer;
  opacity: 0.3; /* standardmäßig halbtransparent */
  transition: opacity 0.3s ease;
}

.kontaktformular button:hover {
  opacity: 1;
}

/* Breadcrumb */
.breadcrumb {
	display: inline-block;
	position: relative;
	color: #c2ab59;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(to right, rgba(32,32,32,0.5), rgba(64,64,64,0.5));
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.9);
    border-radius: 10px;
}

@media (max-width: 600px) {
	.breadcrumb {
	display: block;
    hyphens: auto;
    word-break: break-word;
    text-align: left;
    font-size: 12pt;
  }
	
.breadcrumb a {
	font-size: 12pt;
    text-decoration: none;
    text-align: center;
    color: #c2ab59;
}

.breadcrumb a:hover {
	font-size: 12pt;
    text-decoration: none;
    color: #c2ab59;
}

.breadcrumb .zeichen {
	content: none;
    font-size: 12pt;
    margin: 0 0;
    color: #c2ab59;
}
}

/* Artikel-Liste Container */
.article-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0;
    gap: 50px;
}

/* Artikel-Karten-Stil */
.article-preview {
    width: 90%;           /* volle Breite der Artikel-Liste */
    background: rgba(11, 11, 11, 0);
    border: 0px solid rgba(200, 200, 200, 0.4);
    border-radius: 15px 15px 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    
}

.article-header {
    width: calc(100% - 18px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('/pictures/bg/bg-002.png');
    background-repeat: repeat-x;  
    background-position: center;  
    background-size: contain;
    padding: 8px 8px 6px 8px;
    margin: 0;
}

/* Artikel-Überschrift */
.article-header h2 {
    margin: 0;
    font-size: 16px;
    color: #c2ab59;
    font-style: bold;
    text-transform: uppercase;
}

/* Datum-Small-Stil */
.article-header small {
    color: #d6d6d6;
    font-style: bold;
    font-size: 0.6rem;
    text-transform: uppercase;
    }

/* Datum-Stil */
.article-date {
    font-size: 0.8rem;
    color: #c2ab59;
    font-style: bold;
}

/* Body-Bereich mit Bild und Text nebeneinander */
.article-body {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    background-image: url('/pictures/bg/bg-003.png');
    background-repeat: repeat;  
    background-position: center;  
    background-size: contain;
    border-top: 0px solid rgba(200, 200, 200, 0.3);
    border-bottom: 0px solid rgba(200, 200, 200, 0.3);
    border-radius: 0;
    margin: 0;
    padding: 0;
}

/* Bild stilisieren */
.article-body img {
	display: block;
    max-width: 300px;  /* oder nach Wunsch */
    min-height: 180px;
    border: 1px solid rgba(200, 200, 200, 0.3);
    border-radius: 6px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin: 8px 0 8px 8px;
    padding: 0;
}

.article-body img:hover {
    transform: scale(1.03);
}

/* Artikel-Excerpt */
.article-body p {
	flex: 1;
	min-height: 166px;
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
    text-align: justify;
    font-weight: 400;
    font-size: 18px;
    font-style: none;
    color: #d6d6d6;
    position: relative;
    background: rgba(11, 11, 11, 0.2);
    border: 1px solid rgba(200, 200, 200, 0.3);
    border-radius: 6px;
    line-height: 1.4;
    hyphens: auto;           /* automatisch Silbentrennung */
    -webkit-hyphens: auto;   /* für Safari */
    -ms-hyphens: auto;
    word-spacing: 0.08em;
    margin: 8px 16px 8px 8px;
    padding: 6px 12px 6px 12px;
}

/* Footer-Bereich mit Author links und Link rechts */
.article-footer {
    width: calc(100% - 18px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('/pictures/bg/bg-002.png');
    background-repeat: repeat-x;  
    background-position: center;  
    background-size: contain;
    padding: 8px 8px 6px 8px;
    margin: 0;
}

/* Weiter-lesen-Link (Button-Stil) */
.article-footer a {
    color: #c2ab59;
    font-size: 8pt;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    padding: 3px;
    border: 1px solid rgba(200, 200, 200, 0.3); 
    border-radius: 4px;
    background: transparent;
}
.article-footer a:hover {
    background: darkgreen;
    border: 1px solid rgba(200, 200, 200, 0.9);
    color: #FFFFFF;
}

/* Author-Small-Stil */
.article-author small {
    color: #d6d6d6;
    font-style: bold;
    font-size: 0.6rem;
    text-transform: uppercase;
}

/* Author-Stil */
.article-author {
    color: #c2ab59;
    font-style: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.theme-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 20px auto;
    padding: 10px 10px 10px 10px;
}

.theme-tile {
    display: block;
    width: 250px;
    aspect-ratio: 1 / 1; /* quadratisch */
    background: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.theme-tile:hover {
    transform: scale(1.05);
}

.tile-image {
    width: 100%;
    height: 60%;
    background-size: cover;
    background-position: center;
}

.tile-info {
    padding: 0.5rem;
    text-align: center;
}

.tile-info h2 {
    font-size: 1rem;
    margin: 0.3rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tile-date {
    font-size: 0.8rem;
    color: #ccc;
}

/* Responsive: auf Smartphones */
@media (max-width: 600px) {
    .theme-tile {
        width: 90%;
        aspect-ratio: auto; /* Höhe passt sich an */
    }

    .tile-image {
        height: 150px;
    }

    .tile-info h2 {
        font-size: 1.2rem;
        white-space: normal; /* Zeilenumbruch erlauben */
    }
}

/* === Zeitungslayout Grundcontainer === */
.newspaper {
  column-count: 3;
  column-gap: 32px;
  column-rule: 1px solid #ccc;
  -webkit-column-count: 3;
  -webkit-column-gap: 32px;
  -webkit-column-rule: 1px solid #ccc;
  background: linear-gradient(
    to right,
    rgba(255, 255, 0, 0.3),
    rgba(255, 165, 0, 0.3),
    rgba(255, 0, 0, 0.3),
    rgba(0, 128, 0, 0.3),
    rgba(0, 0, 255, 0.3)
  );
  color: #eee;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  padding: 16px;
  text-align: justify;  /* Fließtext schön ausrichten */
}

/* === Responsiv === */
@media (max-width: 900px) {
  .newspaper { column-count: 2; -webkit-column-count: 2; }
}
@media (max-width: 600px) {
  .newspaper { column-count: 1; -webkit-column-count: 1; }
}

/* === Überschriften === */
.newspaper h1 {
  column-span: all;
  -webkit-column-span: all;
  font-size: 32px;
  margin: 16px 0;
  color: #2b2b2b;
}
.newspaper h2 {
  column-span: all;
  -webkit-column-span: all;
  font-size: 26px;
  margin: 13px 0;
  color: #333333;
}
.newspaper h3 {
  column-span: all;
  -webkit-column-span: all;
  font-size: 21px;
  margin: 10px 0;
  color: #444444;
}
.newspaper h4 {
  column-span: all;
  -webkit-column-span: all;
  font-size: 18px;
  margin: 8px 0;
  color: #555555;
}

/* === Grundtext === */
.newspaper p {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 3px 3px;
  text-align: justify;
  line-height: 24px;
  color: #eee;
}

/* === Inline-Textelemente === */
.newspaper span { }
.newspaper em { font-style: italic; }
.newspaper strong { font-weight: bold; }
.newspaper cite { font-style: italic; color: #555555; }
.newspaper small { font-size: 14px; }
.newspaper mark { background: #fff3b0; }

/* === Listen === */
.newspaper ul {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 16px 24px;
  list-style: disc;
}
.newspaper ol {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 16px 24px;
  list-style: decimal;
}
.newspaper li { margin-bottom: 5px; }

/* === Zitate === */
.newspaper blockquote {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 16px;
  padding-left: 16px;
  border-left: 4px solid #aaa;
  font-style: italic;
  color: #666666;
}

/* === Bilder / Abbildungen mit Textfluss === */
.newspaper img {
  float: left;               /* Text fließt rechts um das Bild */
  max-width: 20%;            /* Bild verkleinert für Textfluss */
  height: auto;
  display: block;
  margin: 0 3px 0 3px;     /* Abstand zum Text */
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.newspaper figure {
  float: left;               /* Figur auch vom Text umfließbar */
  max-width: 40%;
  margin: 0 16px 16px 0;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.newspaper figcaption {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin-bottom: 16px;
}

/* === Tabellen === */
.newspaper table {
  column-span: all;
  -webkit-column-span: all;
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px;
  font-size: 14px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.newspaper th,
.newspaper td {
  border: 1px solid #aaa;
  padding: 6px 10px;
}
.newspaper th {
  background: #e6e6e6;
  font-weight: bold;
}

/* === Code / Sondertexte === */
.newspaper code {
  font-family: monospace;
  font-size: 13px;
  background: #f2f2f2;
  padding: 2px 4px;
  border-radius: 3px;
}
.newspaper pre {
  font-family: monospace;
  font-size: 13px;
  background: #f2f2f2;
  padding: 8px;
  overflow: auto;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

/* === Links / Buttons === */
.newspaper a {
  color: #0066cc;
  text-decoration: underline;
}
.newspaper a:hover {
  color: #004499;
  text-decoration: none;
}

/* === Manuelle Spaltenumbrüche === */
.newspaper .break {
  break-after: column;
  -webkit-column-break-after: always;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  color: #fff;
}

.card.bg {
  background-size: cover;
  background-position: center -120px;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 12px;
  min-height: 400px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  transition: transform 0.3s ease;  /* Hover-Effekt */
}

.card.bg.image1 { background-image: url('/pictures/image-1.jpeg');}
.card.bg.image2 { background-image: url('/pictures/27-10-08_0001.jpeg');}
.card.bg.image3 { background-image: url('/pictures/Foto-27.jpeg');}


.card.bg:hover {
  transform: scale(1.02);
}

.card.bg .top-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 50%);
  z-index: 2;
  display: block;
  pointer-events: auto; /* Klickbar, blockiert Hover nicht mehr */
}

.card .text-block {
  padding: 1rem;
  max-height: 50%;              /* nur untere Hälfte */
  overflow: auto;
  text-align: justify;
  line-height: 1.6;
  hyphens: auto;
  background: rgba(0,0,0,0.7);  /* dunkler Overlay nur unter Text */
}

.card .text-block a,
.card .text-block span {
  white-space: nowrap;
  word-break: normal;
}

/* Spans Farben */
.card span { 
  color: #0055aa; 
  text-transform: uppercase; 
  font-size: 8pt; 
  background: rgba(0,0,0,0.5); 
  padding: 3px 6px; 
  border-radius: 3px; 
}
.card .text-gold { 
  color: #c2ab59; 
  border: 1px solid rgba(194,171,89,0.5); 
}

/* Links */
.card a { 
  color: #c2ab59; 
  text-decoration: none; 
  transition: all 0.3s ease; 
}
.card a:hover { 
  color: #fff; 
}

/* Logo Card */
.logo-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  box-shadow: none;
}
.logo-card img { max-width: 200px; height: auto; }

/* Impressum */
#impressum {
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 12pt;
  text-align: justify;
  color: #FFFFFF;
  background: none; 
  padding: 15px;
  border-radius: 20px;
  border: 1px solid #c2ab59;
  margin: 0 auto;
  max-width: 90ch;
}

#impressum H2{
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16pt;
  color: #c2ab59;
  text-decoration: underline;
  text-transform: uppercase;
}

/* Footer */
footer {
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 0.6rem;
  text-align: center;
  text-transform: uppercase;
  background: #000;
  color: #eee;
  padding: 0px;
  margin: 0px;
  position: fixed;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 100%;
  z-index: 60;
}

footer a {
  color: grey;
}

footer a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

footer a:active {
  color: #FF0000;
}

@media (max-width: 600px) {
    .article-list {
        width: 100%;
    }
    
    .article-header small {
    font-size: 0.6rem;
    }
    
    .article-header h2 { 
        font-size: 0.7rem;
    }
    
    .article-body {
        flex-direction: column; /* Bild und Text untereinander */
        align-items: center;    /* zentrieren */
    }
    
    .article-body p {
    font-weight: 300;
    font-size: 16px;
    font-style: none;
    color: #d6d6d6;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 6px;
    margin-right: 6px;
    padding: 9px 12px 9px 12px;
    }
    
    .article-author {
    font-size: 0.6rem;
    }
    .article-date {
    font-size: 0.7rem;
    text-align: right;
    }
    
    .article-body img {
    margin: 8px 8px 0 8px;
    padding: 0;
}
}


/* Responsive Anpassungen */
@media (max-width: 600px) {
  header {
  position: fixed;
  top: 0;
  margin: 0 auto;
  padding: 0;
  }
  
  header .handle {
  background-image: none;
}
	
  .header-container {
  padding-left: 3px;
  padding-right: 3px;
}

  .intro-grid {
  gap: 20px;
  padding: 20px;
  }
	
  .intro-box {
    flex-direction: column;
    align-items: center; /* horizontal zentrieren */
    justify-content: center;
    text-align: center;
    padding-top: 0px;
  }
  
  .intro-box .intro-right h1 {
    font-size: 14pt;
    padding-right: 10px; 
  }

  .intro-box .intro-right p {
    font-size: 12pt;
    padding-right: 10px;
  }
  
  .bg-fixed {
  background: 
  linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
  url('../pictures/hg1.png') no-repeat top center;
  background-size: 300px 300px;
  top: 100px;
  }

  .datum-uhrzeit {
    display: none;
  }
  
  .meldung {
  max-width: 200px;
  font-size: 10pt;
  margin-top: 20px;
}

.lauftext-box {
  font-size: 12pt;
}
  
  .banner {
  margin: 160px auto 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0 20px;
}

  .banner img {
    width: 600px;
  }

  .platzhalter {
    height: 20px;
  }

  .logo {
    width: 180px; /* oder z. B. 60% */
    height: 100px;
    background-size: contain;
    margin-left: 60px;
  }

  .logo a {
    width: 100%;
    height: 100%;
  }

img.bild-links {
  margin: 0px 0px 20px 0px;
}

.einzelbild img {
  max-height: 140px;
  width: auto;
  object-fit: contain; /* erhält das Seitenverhältnis */
  display: block;
}
  
.kontaktformular button {
  opacity: 1;
}

.picture-container img {
  width: 90px;
  height: auto;
}
}

/* ===================================================
   GLightbox Anpassung
================================================== */

/* Dunkler Overlay-Hintergrund */
.goverlay {
  background: rgba(0, 0, 0, 0.9) !important;
}

/* Textbereiche (Bildunterschrift / EXIF-Daten) */
.gdesc {
  font-size: 16px;        /* Schriftgröße der Bildbeschreibung */
  color: #f5f5f5;        /* Textfarbe */
  font-style: normal;
  padding: 10px 15px;
  line-height: 1.5;
}

/* Optional: Titel etwas hervorheben (falls verwendet) */
.gdesc strong,
.gdesc b {
  font-size: 17px;
  color: #ffffff;
}

/* ===================================================
   GLightbox: Text und Beschreibung dunkel gestalten
================================================== */

/* Gesamte Beschreibung - dunkler Hintergrund + helle Schrift */
.gslide-description,
.gslide-description * {
  background-color: #111 !important;
  color: #f5f5f5 !important;
}

.gslide-description div {
  border: 1px solid #fff;
}

.gslide-description .gdesc {
  border: 1px solid #fff;
  padding: 5px;
}

/* Abstände für ein sauberes Layout */
.gslide-description {
  padding: 15px 20px !important;
}

/* Links ebenfalls hell */
.gslide-description a {
  color: #f5f5f5 !important;
  text-decoration: underline;
}
.gslide-description a:hover {
  color: #ffd700 !important; /* Optional: Gelber Hover, falls gewünscht */
}
