

@font-face {
  font-family: 'LinuxLibertine';
  src: url('/fonts/libertine/LinLibertine.woff2') format('woff2'),
       url('/fonts/libertine/LinLibertine.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'EBGaramond';
  src: url('/fonts/garamond/EBGaramond12-Regular.woff2') format('woff2'),
       url('/fonts/garamond/EBGaramond12-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'abrush';
  src: url('/fonts/ab/AlexBrush-Regular.woff2') format('woff2'),
       url('/fonts/ab/AlexBrush-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

/* === Basislayout === */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;

  background: #fff;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* === Layout-Grundstruktur === */
.layout {
  display: flex;
  flex-grow: 1;
}

/* === Hauptmenü (links) === */
aside#hauptmenue {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 180px;
  background-color: #ddd0c1;
  background-image: url('/grafik/hg_hauptmenu-neu.png');
  background-repeat: repeat-y;
  background-position: right top;
  padding: 0 0 0 1rem;
  border-right: 1px solid #ccc;
}

.logo-bild {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-bild img {
  max-width: 80%;
  height: auto;
}

aside#hauptmenue a {
  display: block;
  background: #eee;
  color: #222;
  text-decoration: none;
  margin: 0.5rem 0;
  margin: 0rem 0; /* zu testzwecken */
  padding: 0.5rem 0.75rem;
  border: 1px solid #999;
  border-right: 1px solid transparent;
  text-align: center;
  border-radius: 6px 0 0 6px;
  box-shadow: 1px 0 3px rgba(0, 0, 0, 0.1);
}

/* zu testzwcken 3d effekt zwischen karteireitern, wenn nicht gewünscht die folgende anleitung auskommentieren */
aside#hauptmenue a {
  /* 3D-Effekt: dunkle Unterkante */
  border-bottom: 1px solid #555;
}

aside#hauptmenue a + a {
  border-top: 1px solid #fff !important;
}

/* Ende test 3d effekt */

aside#hauptmenue a.aktiv {
  background: #fff;
  color: #800000;
  margin-right: -1px;
  border-top: 1px solid #666;
  border-left: 1px solid #666;
  border-bottom: 1px solid #666;
  border-right: 1px solid transparent;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

aside#hauptmenue a:hover,
aside#hauptmenue a:focus {
  background: #fff;
  color: #800000;
  box-shadow: 2px 1px 6px rgba(0, 0, 0, 0.1);
}

/* === Untermenü (rechts daneben) === */
aside#untermenue {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 180px;
  width: 200px;
  background: #fff;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.autor-kopfbereich {
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 0 1rem;
  text-align: center;
}

.autor-name {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: maroon;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.autor-titel {
  font-family: Georgia, serif;
  font-variant: small-caps;
  font-size: 0.8rem;
  color: #555;
  margin-top: 0.15rem;
}

.untermenue-links {
  padding-top: 1rem;
}

.untermenue-links a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.82rem;
  color: #777;
  text-decoration: none;
  text-align: center;
  position: relative;
}

.untermenue-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background-color: #ccc;
}

.untermenue-links a:hover {
  background-color: #eee;
  color: #000;
}

.untermenue-links a.aktiv {
  font-weight: bold;
  color: maroon;
  background-color: #f9f9f9;
}

/* === Hauptinhalt === */
main {
  margin-left: 380px;
  flex-grow: 1;
  padding-right: 35px;
  padding-top: 1rem;
  padding-top: 0; /* Test khm */
}

.contentwrap {
  max-width: 60ch;
  margin: 0 auto;
  padding: 0 1rem;
  padding-top: 0; /* Test khm */
}

/* === Fußzeile (Desktop) === */
.fusszeile {
  max-width: 960px;
  margin: 3rem auto 0;
  background-image: url(/grafik/schatten_auf_fff_8px.png);
  background-repeat: repeat-x;
  background-position: center top;
  clear: both;
  padding: 0;
  position: relative;
}

.fusszeile-innen {
  width: 100%;
  position: relative;
  background-image: url(/grafik/schatten_auf_fff_rechts.png);
  background-repeat: no-repeat;
  background-position: right top;
  box-sizing: border-box;
}

.textcontainer-fusszeile {
  width: 100%;
  box-sizing: border-box;
  background-image: url(/grafik/schatten_auf_fff_links.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding: 24px 50px 44px;
  font-family: Georgia, serif;
  font-size: 90%;
  font-weight: 500;
  color: rgb(130, 110, 100);
  line-height: 1.5;
  text-align: justify;
}

.textcontainer-fusszeile a {
  color: rgb(130, 110, 100);
  text-decoration: none;
}

.textcontainer-fusszeile a:hover {
  text-decoration: underline;
}


/* === Fußzeile im Desktop-Layout exakt wie Hauptinhalt === */
.fusszeile {
  margin-left: 380px; /* linker Versatz wie main */
  width: calc(100% - 380px - 35px); /* rechter Abstand wie main */
  margin-top: 3rem;
  background-image: url(/grafik/schatten_auf_fff_8px.png);
  background-repeat: repeat-x;
  background-position: center top;
  clear: both;
  padding: 0;
  position: relative;
}

.fusszeile-innen {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  background-image: url(/grafik/schatten_auf_fff_rechts.png);
  background-repeat: no-repeat;
  background-position: right top;
}

.textcontainer-fusszeile {
  width: 100%;
  box-sizing: border-box;
  background-image: url(/grafik/schatten_auf_fff_links.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding: 24px 50px 44px;
  font-family: Georgia, serif;
  font-size: 80%;
  font-weight: 500;
  color: rgb(130, 110, 100);
  line-height: 1.5;
  text-align: justify;
}









/* === Mobilansicht === */
@media (max-width: 768px) {
  .layout {
    flex-direction: column;
  }

  aside#hauptmenue,
  aside#untermenue {
    display: none;
  }

  header {
    background-color: #ddd0c1;
    border-bottom: 1px solid #ccc;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-inhalt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .mini-logo {
    height: 32px;
    width: auto;
  }

  .autor-header-text {
    text-align: center;
    flex-grow: 1;
  }

  .autor-header-text .autor-name {
    font-family: Georgia, serif;
    font-size: 1rem;
    color: maroon;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  }

  .autor-header-text .autor-titel {
    font-family: Georgia, serif;
    font-variant: small-caps;
    font-size: 0.75rem;
    color: #444;
  }

  .burger {
  font-family: system-ui, Roboto, "Segoe UI", sans-serif;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    
    /* Test für svg-burger-zeichen  */
    margin-top: 0.5rem;
  }

nav#mobilmenu {
  position: fixed;
  top: 70px; /* oder z. B. 64px – je nach tatsächlicher Höhe deines Headers */
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  flex-direction: column;
  background-color: #ddd0c1;
  border-top: 1px solid #ccc;
  padding: 1rem;
  max-height: calc(100vh - 70px); /* 70px = Höhe des Headers */
  overflow-y: auto;
}


  body.menu-open nav#mobilmenu {
    display: flex;
  }

 
  
  nav#mobilmenu > a {
  display: block;
  padding: 0.75rem 0;
  font-weight: bold;
  color: #800000;
  text-decoration: none;
  border-top: 1px solid #a28874; /* Linie zwischen Hauptkategorien */
}

  

/*
  #mobiles-untermenue {
    background: #fff;
    border: 1px solid #ccc;
    margin-top: 0.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
  }
*/



  
nav#mobilmenu div[id^="mobiles-untermenue"] {
  background-color: #e9ddd0;
  box-sizing: border-box;
  margin-top: 0.25rem;
  border-top: 1px solid #a28874;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #a28874; /* neu: dunkle Kante links */
  border-right: 1px solid #fff;   /* neu: helle Kante rechts */
  padding: 0.5rem 1rem;
  transition: all 0.2s ease-in-out;
  border-radius: 4px;
}




/* Styling für ersten Untermenü-Link */
nav#mobilmenu div[id^="mobiles-untermenue"] a:first-child {
  display: block;
  padding: 0.4rem 0;
  color: #222;
  text-decoration: none;
}

/* Styling ab zweitem Eintrag + Trennlinie */
nav#mobilmenu div[id^="mobiles-untermenue"] a:not(:first-child) {
  display: block;
  padding: 0.4rem 0;
  color: #222;
  text-decoration: none;
  border-top: 1px solid #a28874;
}





  main,
  .fusszeile {
    margin-left: 0;
    width: 100%;
    margin-top: 0;
    padding-top: 1rem;
    padding-right: 0;
  }

  .contentwrap {
    padding-top: 1rem;
  }


  
  /* === Fußzeile mobil: zentriert und deckungsgleich === */
.fusszeile {
  margin: 2rem auto 0;
  width: 100%;
  padding: 0;
  background-image: url(/grafik/schatten_auf_fff_8px.png);
  background-repeat: repeat-x;
  background-position: center top;
  position: relative;
  clear: both;
}

.fusszeile-innen {
  width: 100%;
  min-height: 1px;
  background-image: url(/grafik/schatten_auf_fff_rechts.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-origin: border-box;
  background-size: auto;
  padding: 0;
  box-sizing: border-box;
}

.textcontainer-fusszeile {
  width: 100%;
  background-image: url(/grafik/schatten_auf_fff_links.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-origin: border-box;
  background-size: auto;
  padding: 24px 50px 44px;
  box-sizing: border-box;
}



}

/* === Desktopansicht (ab 769px): Header & Mobilmenü ausblenden === */
@media (min-width: 769px) {
  body {
    background-image: url('/grafik/hg_rechts_struktur_200_schmal.jpg');
    background-repeat: repeat-y;
    background-position: right top;
    background-attachment: fixed;
  }

  header {
    display: none;
  }

  nav#mobilmenu {
    display: none !important;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    position: absolute;
    top: -9999px;
    left: -9999px;
    z-index: -1;
  }
}



/* Navigationseinträge vorübergehend ausblenden */
#hauptmenue a.inaktiv,
#mobilmenu a.inaktiv {
  display: none;
}


/* === Mobiles Kontaktmenü – reduziert & konsolidiert === */
@media (max-width: 768px) {
  #kontaktmenu {
    position: fixed;
    top: 70px; /* Höhe des Headers anpassen falls nötig */
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff5eb;
    border-top: 1px solid #ccc;
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
  }

  #kontaktmenu[aria-hidden="false"] {
    display: flex;
  }

  #kontaktmenu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: maroon;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }
}

@media (min-width: 769px) {
  #kontaktmenu {
    display: none !important;
  }
}


.icon-sprache {
  width: 1.85rem;
  height: 1.85rem;
  vertical-align: middle;
  transform: translateY(-5px); /* oder 2px für etwas mehr Tiefe */
}


/* Überschreiben der Schrifteinstellung der Hauptmenüschrift Desktop */

/* Kleinere, serif Schrift für Hauptmenü-Tabs */
aside#hauptmenue a {
  font-family: Georgia, serif;
  font-size: 0.9rem;      /* z. B. von 0.875 auf 0.8 rem reduzieren */
  line-height: 1.2;       /* optional: engeres Zeilenraster */
}



/* Erweiterte Styles, ehemals in der Datei styles-erweitert.css */


/* === Typografische Grundlage === */

/* Standard-Textkörper */
.typotext {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #111;
  max-width: 900px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  text-align: justify;
  hyphens: auto;
}

/* Überschriften-Hierarchie */
.typotext h1,
.typotext h2,
.typotext h3,
.typotext h4 {
  font-family: Georgia, serif;
  font-weight: 400;
  text-align: center;
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
  color: #2a2a2a;
}

.typotext h1 { font-size: 2.2rem; 
/*  margin-top: 0;   Test khm */
  padding-bottom: 1rem;  /* Test khm */
}

.typotext h2 {
  font-size: 1.6rem;
  /* border-top: 1px solid #ccc; */
  padding-top: 0.5rem;
}
.typotext h3 { font-size: 1.3rem;
margin-top:4.5rem;

 }
.typotext h4 {
  font-size: 1.1rem;
  /* border-top: 1px solid #ccc; */
  letter-spacing: 0.03em;
  color: #555;
}

/* === Zitatstil (Desktop & Mobil, final abgestimmt) === */

.zitatblock {
  position: relative;
  margin: 3rem auto;
  padding: 2.25rem 2.5rem;
  font-size: 1.2rem;
  font-family: Georgia, serif;
  color: #555;
  text-shadow: 3px 3px 5px rgba(200, 200, 200, 0.90);
  max-width: 60ch;
  overflow: visible;
}

/* Öffnendes Anführungszeichen unten links */
.zitatblock::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 56px;
  height: 56px;
  background: url('/grafik/comillas_99_hell.png') no-repeat bottom left;
  background-size: contain;
  background-color: transparent;
  opacity: 1;
}

/* Schlusszeichen oben rechts */
.zitatblock::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 56px;
  height: 56px;
  background: url('/grafik/comillas_66_hell.png') no-repeat top right;
  background-size: contain;
  background-color: transparent;
  opacity: 1;
}

/* test khm */
.zitatblock p {
	
	text-align:center;
}

/* 📱 Mobilfreundliche Anpassungen */
@media (max-width: 768px) {
  .zitatblock {
    padding: 1.5rem 1.25rem;
    font-size: 1.05rem;
  }

  .zitatblock::before,
  .zitatblock::after {
    width: 44px;
    height: 44px;
  }

  .zitatblock::before {
    bottom: -6px;
    left: -6px;
  }

  .zitatblock::after {
    top: -6px;
    right: -6px;
  }
}


  .typotext h1 { font-size: 1.8rem; }
  .typotext h2 { font-size: 1.55rem; }
  .typotext h3 { font-size: 1.3rem; }
  .typotext h4 { font-size: 1.0rem; }
}

/* === Initialbuchstabe – sichtbare, funktionierende Version === */
.ini {
  float: left;
  display: block;
  font-size: 3.6rem;
  line-height: 0.9;
  font-family: Georgia, serif;
  font-weight: normal;
  color: maroon;
  background-color: rgba(255, 255, 0, 0.2); /* sanftes Gelb zum Prüfen */
  margin: 0.25rem 0.65rem 0 0;
  padding: 0.05rem 0.3rem 0 0.2rem;
  text-shadow: 0 1px 1px rgba(120, 0, 0, 0.2);
  border: 1px dotted orange; /* 🔍 optional zum Debuggen */
}

/* 📱 Mobile Fallback */
@media (max-width: 480px) {
  .ini {
    float: none;
    display: inline;
    font-size: 1.4rem;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-shadow: none;
    background: none;
    border: none;
  }
}

/* === Initialbuchstabe (Initiale) – sichtbar und stilvoll === */
.ini {
  float: left;
  display: block;
  font-size: 3.1rem;     /* angepasst für zwei Fließtextzeilen bei ~1.2rem */
  line-height: 0.85;
  font-family: Georgia, serif;
  font-weight: normal;
  color: maroon;
  margin: 0.1rem 0.6rem 0 0;
  padding: 0;
  text-shadow: 0 1px 1px rgba(120, 0, 0, 0.2);
}



@media (max-width: 480px) {
  .ini {
    float: none;
    display: inline;
    font-size: 1.35rem;
    margin: 0;
    padding: 0;
    text-shadow: none;
    vertical-align: baseline;
  }
}



/* passepartout */
.passepartout {
  display: inline-block;
  background-color: #f5f4f2;
  padding: 0.8rem; /* 🔽 engerer Abstand zum Bild */
  box-shadow:
    inset 0 0 6px rgba(0, 0, 0, 0.08),      /* dezenter, klarer Innenschatten */
    inset -1px -1px 0 rgba(255, 255, 255, 0.6), /* ✨ heller Rand unten/rechts */
    inset 1px 1px 0 rgba(0, 0, 0, 0.05);    /* dunkler Rand oben/links */
  max-width: 100%;
  margin: 2rem auto;
  /* Test */
  margin-bottom: 0.2rem;
  margin-top: 3.5rem !important;
  box-sizing: border-box;
}

.passepartout img {
  display: block;
  max-height: 360px;
  height: auto;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25); /* 🔧 kürzer, dunkler, schärfer */
}



@media (max-width: 900px) {
  .passepartout {
    padding: 0.5rem;
    box-shadow: none;
    background: none;
        /* Test */
    margin-bottom:3em;
  }
  .passepartout img {
    max-height: none;
    width: 100%;
    box-shadow: none;
    object-fit: contain;
  }
}




@media (max-width: 768px) {
  .passepartout {
    all: unset;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    /* Test */
    margin-bottom:3em;
  }

  .passepartout img {
    width: 100%;
    height: auto;
    box-shadow: none;
    object-fit: contain;
    object-position: center;
  }
}

.typotext p.begruessung {
  font-size: 1.6em;
  font-weight: 500;
  font-family: 'abrush', Georgia, serif !important;
  letter-spacing: 1.00px;
    color: #2A3B8F;
    color: #2A3B8F;
    border-top:0px solid silver;
    border-bottom:0px solid silver;
    padding:1em;
    padding-bottom:0.7em;
    
  margin: 1.5rem 0;
  text-align: center;
  text-shadow: 3px 3px 5px rgba(200, 200, 200, 0.90);
  text-shadow: 1px 1px 3px rgba(200, 200, 200, 0.90);

background-color: #fff;
  background-image: linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.15)),
                    url("/grafik/bg-begruessung.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 0px solid #fff;
  
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  /* border-left: 6px solid maroon; */
  
  box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
  border-radius: 8px;
  
}

.typotext .spruch {
 /* font-size: 1.6em;
  font-weight: 500;
  font-family: 'abrush', Georgia, serif !important;
  letter-spacing: 1.00px;
    color: #2A3B8F;
    color: #2A3B8F;
*/

    border-top:0px solid silver;
    border-bottom:0px solid silver;
    padding:1em;
    padding-bottom:0.7em;
    
  margin: 3.5rem 0;
  
/*  text-align: center; 
  text-shadow: 3px 3px 5px rgba(200, 200, 200, 0.90);
  text-shadow: 1px 1px 3px rgba(200, 200, 200, 0.90);
*/

background-color: #fff;
  background-image: linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.15)),
                    url("/grafik/bg-begruessung.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 0px solid #fff;
  
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  /* border-left: 6px solid maroon; */
  
  box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
  border-radius: 8px;
  
}

.typotext .spruch p {

 font-size: 1.6em;
  font-weight: 500;
  font-family: 'abrush', Georgia, serif !important;
  letter-spacing: 1.00px;
    color: #2A3B8F;
    color: #2A3B8F;
text-align: center;
  text-shadow: 3px 3px 5px rgba(200, 200, 200, 0.90);
  text-shadow: 1px 1px 3px rgba(200, 200, 200, 0.90);
}

.vignette-wrapper {
  display: block;
  width: 100%;
  margin: 2rem 0;
}

.vignette-wrapper img {
  display: block;
  margin: 0 auto;
  width: 60px;     /* oder z. B. 20% bei relativer Breite */
  height: auto;
  opacity: 0.9;
}


.lotus-symbol {
  font-size: 2.2rem;
  text-align: center;
  margin: 4rem 0;
  opacity: 0.85;
  line-height: 1;
  transition: transform 0.5s ease;
}

.lotus-symbol:hover {
  transform: scale(1.1) rotate(2deg);
}



/* Kontaktbox */

.kontaktbox {
  /* max-width: 48ch; */
  margin: 2.5rem auto;
  padding: 1.5rem 1.25rem 2rem;
  border: 1px solid #aaa;
  border-radius: 8px;
  background-color: #f6f2ed;
  font-family: Georgia, serif;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.08);
  text-align: center;
}

.kontaktbox h2 {
  font-size: 1.35rem;
  color: maroon;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: normal;
  border: none;
  padding: 0;
}

.kontaktbox p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.kontakt-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.kontaktbutton {
  background-color: maroon;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.kontaktbutton:hover {
  background-color: #a00000;
}

@media (max-width: 768px) {
  .kontaktbox {
    background-color: #fcefd8;
    border-left: 4px solid maroon;
    border-radius: 0;
    padding: 1.5rem 1.25rem;
    text-align: left;
  }

  .kontakt-cta {
    flex-direction: column;
    align-items: center;   /* <- hier zentriert statt flex-start */
    gap: 0.75rem;
  }
}


.telefonnummer {
  font-family: sans, monospace;
  font-size: 0.95rem;
}

/* Ende: Kontaktbox */

/* Shareblock */

.shareblock {
  /* max-width: 600px; 
  margin: 2em auto;
  padding: 20px;
  background-color: #fcfcfc;       
  border: 1px solid #ddd;  
  border-radius: 8px;
  font-size: 0.95em;
  text-align: center; */
}

.shareblock h2 {
  font-size: 1.2em;
  margin-bottom: 1em;
  margin-top: 0.2em;
  border-top: none;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 1em;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background-color: #f2f2f2;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.share-button:hover {
  background-color: #e0e0e0;
}

.share-button svg {
  width: 20px;
  height: 20px;
}

.share-disclaimer {
  font-size: 0.85em;
  opacity: 0.75;
  margin-top: 1em;
  text-align: center;
}

/* test */

.shareblock {
  /* background-color: #f9f9f9;
  border: 2px solid #ccc;
  border-radius: 8px; */
  padding: 20px;
  margin: 2em auto;
  /* max-width: 600px; */
  text-align: center;
  font-size: 0.95em;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 1em;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background-color: #f2f2f2;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.share-button:hover {
  background-color: #e0e0e0;
}


.share-disclaimer {
  border-top: 1px solid #ccc;
  padding-top: 1em;
  margin-top: 1.5em;
  font-size: 0.85em;
  opacity: 0.75;
  text-align: center;
}

/* test button-schatten  */

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background-color: #f2f2f2;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  cursor: pointer;

  /* 💡 Schattenwurf */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}


/* Test */
/*
.empfehlungskasten {
  background-color: #f6f2ed;
  border: 2px solid #ccc;
  border-left: 6px solid maroon;
  padding: 1rem 1.5rem 1.5rem; 
  margin: 3rem auto;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.05);
  border-radius: 8px;
  max-width: 60ch;
  font-family: Georgia, serif;
}
*/

.empfehlungskasten {
  background-color: #fff;
  background-image: linear-gradient(rgba(255,255,255,0.93), rgba(255,255,255,0.93)),
                    url("/grafik/paket.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid #ccc;
  /* border-left: 6px solid maroon; */
  padding: 1rem 1.5rem 1.5rem;
  margin: 3rem auto;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.05);
  border-radius: 8px;
  max-width: 60ch;
  font-family: Georgia, serif;
}


.empfehlungskasten h2 {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 1.75rem; /* oder z. B. 1.5rem für mehr Luft */
  color: maroon;
  border-bottom: none;
  border-top: none;
}

.empfehlungsliste {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.empfehlungsliste li {
  margin-bottom: 0.75rem;
}

.empfehlungsliste a {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  box-shadow: 1px 1px 5px rgba(0,0,0,0.03);
  color: #333;
  transition: all 0.2s ease;
}

.empfehlungsliste a:hover {
  background-color: #f9f9f9;
  color: maroon;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}






/* Test 

#hauptmenue a:not(.aktiv) {
  background: none !important;
  border: none !important;
  font-weight: normal !important;
}
*/


aside#hauptmenue a:not(.aktiv) {
  background: #eee !important;
  color: #222 !important;
  margin-right: 0 !important;
  border-right: 1px solid transparent !important;
  box-shadow: 1px 0 3px rgba(0, 0, 0, 0.1) !important;
}

/* 🎯 Nur für Geräte mit Maus und echter Hover-Fähigkeit */
@media (hover: hover) and (pointer: fine) {
  aside#hauptmenue a:not(.aktiv):hover {
    background: #d6d6d6 !important;
    color: #800000 !important;
    box-shadow: 2px 1px 6px rgba(0, 0, 0, 0.1) !important;
  }
}

/* 👻 Optional: Brave-Hover-Reset – falls gewünscht */
body.brave-hover-reset aside#hauptmenue a:hover {
  background: inherit !important;
  color: inherit !important;
  box-shadow: none !important;
}


/* Test Übersichtslink über dem Mobilen Untermenü und nur dort */

.nur-mobil {
  display: none !important;
}

@media (max-width: 768px) {
  .nur-mobil {
    display: block !important;
  }
}

/* Startseitenübersicht Workaround 

@media (max-width: 768px) {
  nav#mobilmenu div[id^="mobiles-untermenue"] a:first-child {
    border-top: 1px solid #a28874;
  }
}
*/

/* Ende: Test */

/* 
.scrollziel {
  scroll-margin-top: 100px; 
}
*/


header {
  background-image: url('/grafik/bg-mobiltitel.png');
  background-repeat: repeat-x;           /* 🔁 horizontaler Repeat */
  background-position: bottom left;      /* 🔽 bündig am unteren Rand */
  background-size: auto;                 /* oder z. B. auto 100% wenn vertikal angepasst */
  
}

/* Aus alter Seite übernommen */

.version.framed {
  display: block;
  padding: 0.75rem 1rem;              /* Innenabstand */
  margin-top: 2rem;                  /* Abstand nach oben */
  background-color: #f7f7f7;         /* sehr helles Grau */
  border: 1px solid #d1d1d1;         /* etwas dunkleres Grau */
  border-radius: 4px;                /* leicht abgerundete Ecken */
  font-size: 0.875em;                /* dezente Schriftgröße */
  color: #555;                       /* etwas dunklerer Text */
  text-align: center;                
  line-height: 1.4;                  /* angenehme Zeilenhöhe */
}

/* Ende: Aus alter Seite übernommen */


.version.framed-2 {
  display: block;
  padding: 0.75rem 1rem;              /* Innenabstand */
  margin-top: 2rem;                  /* Abstand nach oben */
  background-color: #f7f7f7;         /* sehr helles Grau */
  background-image: linear-gradient(rgba(255,255,255,0.93), rgba(255,255,255,0.93)),
                    url("/grafik/paket.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid #d1d1d1;         /* etwas dunkleres Grau */
  border-radius: 4px;                /* leicht abgerundete Ecken */
  font-size: 0.875em;                /* dezente Schriftgröße */
  color: #555;                       /* etwas dunklerer Text */
  text-align: left;                
  line-height: 1.4;                  /* angenehme Zeilenhöhe */
}

/* Test */
  .contentwrap {
    padding-top: 0;
  }
  
.main {
padding-top: 0;
	
	
}

.subheader {
text-align: center;
	
	
}

/* Links endlich schoen */
/* Standard-Links */
a {
  color: maroon;
  text-decoration: none;
}

/* Unterstreichen beim Hover */
a:hover {
  text-decoration: underline;
}

.typotext .aufmacher {
  font-size: 1.1em;
/*  font-variant: small-caps; */
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: #2c2c2c;
  text-align: justify;
  margin-bottom: 2em;
  font-style: italic;
}

/* === Typografie Mobile: Silbentrennung & Blocksatz === */
p, li {
  text-align: justify;
  hyphens: auto;
}

@media screen and (max-width: 768px) {
  p, li, .aufmacher {
    text-align: left;
    hyphens: auto;
  }
}


/* Titelseitenkopf */
.site-header {
  text-align: center;
  margin: 2rem 0;
}

.site-name {
  font-family: Georgia, serif;
  font-size: 3rem;               /* große Schrift */
  color: maroon;                 /* maroon */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);  /* dezenter Schattenwurf */
  text-shadow: 3px 3px 5px rgba(200, 200, 200, 0.90);
  margin: 0;
  padding-bottom: 0;
  letter-spacing: 0.15em;          /* etwas Abstand */
  font-variant: small-caps;        /* echte Kapitälchen */
}

.site-subtitle {
  font-family: Georgia, serif;
  font-size: 1rem;                 /* bleibt klein */
  color: #4a4a4a;                  /* dunkelgrau */
  font-variant: small-caps;        /* echte Kapitälchen */
  /* für bessere Browser-Unterstützung: */
  font-feature-settings: "smcp" 1;
  letter-spacing: 0.05em;          /* etwas Abstand */
  margin: 0.25rem 0 0;
  text-shadow: 3px 3px 5px rgba(200, 200, 200, 0.90);
}

/* Spezifisch auf deinen Header-Container zielen */
.site-header .site-name {
  color: maroon !important;
}

.site-header .site-subtitle {
  /* Null-Margin oben, etwas Platz nach oben, kein Abstand nach unten */
  margin: 0.25rem 0 0 !important;
}

.site-header .site-name,
.site-header .site-subtitle {
  margin: 0;
  padding: 0;
}

/* dann deine Maße */
.site-header .site-name {
  margin-bottom: 0.25rem;    /* gewünschter Abstand */
  color: maroon !important;  /* um sicherzugehen */
  border-bottom: 1px solid silver;
  padding-bottom: 0.8rem;
}

.site-header .site-subtitle {
  margin-top: 0.5rem !important;       /* Abstand nach oben */
  padding-top:0.25rem;
  border-top: none !important;
}

/* Auf Bildschirmen bis 767px Breite (Mobil) Name verbergen */
@media only screen and (max-width: 767px) {
  .site-header .site-name {
    display: none;
  }
}  
  .site-header .site-subtitle {
  margin-top: 0 !important;       /* Abstand nach oben */
  padding-top:0 !important;
  padding-bottom: 0.75rem;
}


/* Ende: Titelseitenkopf */

/* Äußere Begrenzung */
.signal-contact {
  margin: 40px auto;
  max-width: 800px;
}

/* Mobil-Layout: gestapelt, zentriert */
.signal-box {
  text-align: center;
}

/* Desktop-Layout: nebeneinander im Kasten */
@media screen and (min-width: 700px) {
  .signal-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    background-color: white;
    text-align: left;
  }
}

/* Textblock */
.text-block {
  flex: 1;
  min-width: 250px;
}

/* QR-Grafik */
.signal-qr {
  width: 200px;
  height: auto;
  display: block;
  margin: 20px auto; /* zentriert auf Mobil */
}


.grey-star {
  
  color: #999; /* Du kannst auch z. B. #888 verwenden */
}

.steckbrief {
	
font-variant: small-caps;	
text-align: center;
border-bottom: 1px solid #999;
letter-spacing: 0.15em; 
padding-top: 0;	
padding-bottom: 0.55rem;

}


/* Test */
img.mittig { 
margin-left:auto; 
margin-right:auto; 
margin-top:20px;
margin-bottom:20px;
display:block;
max-width: 100%;
}

 
.typotext .tagline {
  font-family: 'EBGaramond', Georgia, serif;
font-size: 0.9rem !important; 
  font-weight: 400;
  text-align: center;
  letter-spacing: 1.2px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 2.5em;
  margin-top:0.5em;
}



/*
.tagline {
  font-family: Georgia, serif;
  font-size: 0.95em;
  font-weight: 400;
  text-align: center;
  color: #444;
  line-height: 1.3;
  margin-bottom: 1em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5em;
}


.tagline {
  font-family: Georgia, serif;
  font-size: 1.05em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.5px;
  color: #222;
  line-height: 1.4;
  margin-bottom: 1em;
}
*/

/* Luftigkeit für alle normalen Textbereiche 
.main-content *:not(.compact):not(.tight) {
  line-height: 3.6 !important;
  letter-spacing: 0.3px;
  margin-bottom: 1em;
}


.main-content h1, 
.main-content h2, 
.main-content h3 {
  line-height: 1.3;
  letter-spacing: 0.5px;
  margin-bottom: 0.6em;
}
*/

/* Luftigkeit */

/*
.typotext ul {
  font-size: inherit;
}
*/

.typotext p {
/*  background: #ffdddd;   */
  line-height: 1.7;
  letter-spacing: 0.19px;
  color: #000;
  font-size: 1.2rem;
/*  font-family: 'LinuxLibertine', sans, Georgia, serif !important; */
  font-family: 'LinuxLibertine', sans, Georgia, serif !important;
}

.typotext h1 {
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 0.6em;
  color: #222;
  font-family: 'EBGaramond', serif, Georgia, serif;
}

.typotext h2 {
  line-height: 1.3;
  letter-spacing: 0.4px;
  margin-bottom: 1.2em;
  color: #333;
  font-family: 'EBGaramond', serif, Georgia, serif;
}

.typotext h3 {
  line-height: 1.4;
  letter-spacing: 0.3px;
  margin-bottom: 0.4em;
  color: #444;
    font-family: 'EBGaramond', serif, Georgia, serif;
}

/*
li  {

  line-height: 1.7;
  letter-spacing: 0.19px;
  color: #000;
  font-size: 1.15em;

  font-family: 'EBGaramond', sans, Georgia, serif !important;
}

*/


@media screen and (max-width: 768px) {
 .typotext .spruch  {
  font-size: 1.3em !important;
  }
}



@media screen and (max-width: 768px) {
  .typotext p {
    font-size: 1.25em !important;
    line-height: 1.4;
  }
}

/* Test 

@media screen and (max-width: 1023px) {
  main,
  .fusszeile {
    margin-left: 0;
    padding-right: 1rem;
    width: 100%;
  }

  .contentwrap,
  .kontaktbox,
  .shareblock,
  .empfehlungskasten {
    max-width: 95%;
    margin: 0 auto;
    padding: 1rem;
  }

  html, body {
    overflow-x: hidden;
  }
}

*/

div.diskretionsbox{
	
border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.08);	
  padding: 1em;

}

ul.textliste {
	
	border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.08);	
  padding-top:1em;
  padding-bottom:1em;
  padding-right:1em;
  font-family: 'LinuxLibertine', sans, Georgia, serif !important;
  font-size: 1.2rem;
  margin-top: 2.0rem;
}
ul.textliste li {
	
	padding:0.5em;
}

.typotext .textkasten p {
	margin-top:2rem;
	border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.08);	
  padding-top:1em;
  padding-bottom:1em;
  padding-right:1em;
  padding-left:1em;
  font-family: 'EBGaramond', sans, Georgia, serif !important;
  font-size: 1.0rem;
  letter-spacing: 1.05px;
  line-height: 1.2;
  color:#333;
}

/* test fontgröße überschriften */

  .typotext h1 { font-size: 1.8rem; }
  .typotext h2 { font-size: 1.55rem; }
  .typotext h3 { font-size: 1.3rem; }
  .typotext h4 { font-size: 1.1rem; }
}



