﻿/* style.css, zentrals Stylesheet  ================================ */

*, 
*::before, 
*::after { 
  box-sizing: border-box; 
}

html { scroll-behavior: smooth; }

h1, h2, h3, h4, h5, h6,
p, ul, ol, blockquote {
  margin-top: 0; 
}

h1, h2, h3, h4, h5, h6 {
  magin-bottom: 0;
}  

body {
  font-family: "-apple-system", BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11pt; 
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; font-variant: small-caps; }

img, video {
  max-width: 100%; 
  height: auto; 
}
      
figure {
  margin-left: 0; 
  margin-right: 0; 
}

address { 
  font-style: normal; 
}

.visually-hidden { 
  position: absolute; 
  clip: rect(0, 0, 0, 0); 

  width: 1px; 
  height: 1px; 
  padding: 0; 
  border: 0; 
  margin: -1px; 

  overflow: hidden; 
} 

.site-content {
  scroll-margin-top: 1rem;
}

/* layout, Seite, Bereiche ------------------------------------------ */

html { 
  background-color: white; 
}

body { 
  background-color: white; 
  color: black; 
  max-width: 800px; 
  margin: 1rem auto; 
}

.col-header {
  background-color: #C0C0C0;
  line-height: 1.0;
  font-size: 11pt;
  height:40px;
  padding: 5px;
}

.site-header { 
  padding-bottom: 0.3rem;
  background-color: white; 
}
.site-header h1 { 
  margin-bottom: 0; 
  margin-top: 0;
}
.site-header p { 
  margin-top: 0;
  margin-bottom:0; 
}

.site-nav {
  background-color: #333;
  color: white; 
  padding: 0.5rem 1rem;
  margin: 0;
  a:link { color: white; }
  a:visited { color: white; }  
}

/* Inhaltsbereich  */
.site-content { 
  line-height: 1.2; 
  padding: 0;
  marging: 0;
  backgound-color: white;
}

.site-footer {
  font-size: smaller; 
  text-align: right; 
  background-color: #333;
  color: white;
  padding: 0.5rem 1rem 1.2rem;
  margin-top: 2rem; 
}
.site-footer a {
  color: white; 
  text-decoration: none; 
}

/* layout-modern. ================ */

body { 
  max-width: none; 
  padding: 0; 
  margin: 0; 
}

.inside {
  max-width: 768px; 
  padding: 0 auto; 
  margin: 0 auto;
}

.site-header,
.site-nav,
.site-content,
.site-footer {
  padding-left: 0; 
  padding-right: 0;
  margin: 0; 
}

/* Hauptnavigation, Menüpunkte, Footer-Nav (display:inline) */

.site-nav ul {
  padding: 0; 
  margin: 0; 
}

.site-nav li {
  display: inline;
  margin-right: 0.5rem;
}

.site-nav a {
  color: white; 
  text-decoration: none; 
}

.meta-nav ul {
  padding: 0; 
  margin: 0; 
}
.meta-nav li {
  display: inline;
  margin-right: 0.5rem;
}

.current a {
  text-decoration: underline; 
}

/* Gestaltet die Inhalte in main ================================ */ 


.infoboxen {
  background-color: #eee; 
  padding: 1rem 0; 
  margin-bottom: 1rem; 
}

.infobox {
  text-align: center; 
  background-color: white; 
  padding: 1rem;
  margin: 1rem 0; 
}

.moreinfos {
  text-align: center; 

  background-color: #eee;
  background-image: linear-gradient(to right, #eee, whitesmoke); 
  box-shadow: 0 1px 3px rgb(51,51,51,0.3); 
  
  padding: 1rem;
  border-left: 5px solid #0b74b8; 
  margin: 0; 
  margin-bottom: 1rem; 
}

.moreinfo p:first-child {
  font-size: 1.25rem; 
  font-weight: bold; 
}

.beitragsliste h3, 
.linklisten h3 {
  padding-top: 0.5rem; 
  border-top: 1px solid #eee; 
  margin-bottom: 0.25rem; 
}
.beitragsliste h3 a { 
  color: #333; 
}
.beitragsliste article, 
.linklisten section { 
  margin-bottom: 3rem; 
}
.beitragsinfo { 
  color: #999; 
}

/* Gestaltung des Kontaktformulars ===================== */

.kontaktformular form {
  max-width: 400px; 
  background-color: #eee; 
  padding: 1rem; 
}

.kontaktformular div {
  margin-bottom: 1rem; 
}

.kontaktformular label { 
  cursor: pointer; 
}      

.kontaktformular label[for] { 
  display: block; 
}      
      
.kontaktformular button {
  background-color: #0b74b8;
  color: white; 
  padding: 0.5rem; 
  border: none;   
  font-size: inherit; 
  cursor: pointer; 
}

