@charset "utf-8";
/* ================================

   style.css  

   zentrales Stylesheet
   wird im HTML per <link> eingebunden 
   
   Stand 11.08.2022 

   ================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html { scroll-behavior: smooth;}

h1, h2, h3, h4, h5, h6, 
p, ul, ol, blockqoute {
    margin-top: 0;
}
 
body {
	font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
	font-size: 1rem;
}

h1, h2, h3, h4, h5, h6, .site-header {
    font-family: "Open Sans";
    font-weight: 500;
}

.site-nav, .meta-nav {
    font-family: "Open Sans";
    font-weight: 300;
    font-size: 0.8rem;
    text-transform: uppercase;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
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;
}

iframe {
    max-width: 100%;
}

.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;
}

html {
    background-color: whitesmoke;
}
body {
    background-color: white;
    color: black;
    max-width: 780px;
    margin: 1rem auto;
}

.site-header {
    background-color: #FAF5E1;
    color: #736357;
    padding: 1rem 1rem 1rem 1rem;
}
.site-header h1 {
    margin-bottom: 0;
}
.site-header p {
    margin-top: 0;
}

.nbk {
    font-size: 2rem;
    margin: 0;
}

.mob {
    display: none;
}

.site-nav {
    border-top: 1px solid #736357;
    background-color: #736357;
    /* color: #736357; */
    padding: 0.5rem 1rem;
    margin: 0;
    margin-bottom: 2rem;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 2px rgba(51, 51, 51, 0.3);
}

.site-content {
    line-height: 1.5;
    padding: 0 1rem;
}

.delaney {
    font-family: "Handlee";
    font-size: 1.3rem;
    color: #4C96C9;
    text-align: center;
}

.delaney span {
    font-size: 1.7rem;
}

.delaney.quote {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 4px 4px 2px rgba(170,170,170,0.5);
    margin: 5rem 0;
}

.delaney.quote span {
    font-size: 3.75rem;
}

.vision {
    background-color: #C7B29933;
    color: #736357;
    text-align: center;
    text-transform: uppercase;
    padding: 1rem;
    margin-top: 5rem;
    border-radius: 10px;
}

.small {
    font-size: 0.5rem;
}

.startseite .infobox {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 1rem;
}

.site-header .inside {
    display: grid;
    grid-template-columns: 1fr 6fr;
    grid-gap: 1rem;
}

.seite-meine-person .content-intro {
    display: grid;
    grid-template-columns: 2fr 1fr ; 
    grid-gap: 2rem;
}

.seite-philosophie .site-content .inside {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    grid-gap: 2rem;
}

@media screen and (max-width: 760px){
    .startseite .infobox {
        grid-template-columns: 1fr;
    }
    
    .seite-meine-person .content-intro {
        grid-template-columns: 1fr;
    }
    
    .person {
        max-width: 60%;
    }
    
    .seite-philosophie .site-content .inside {
        grid-template-columns: 1fr;
    }
    
    .vision {
        margin-top: 1rem;
    }
    
}

@media screen and (min-width: 540px){
    .desk {
        display: none;
    }
    
    .mob {
        display: block;
    }
}

.site-footer {
    font-size: smaller;
    text-align: right;
    background-color: #FAF5E1;
    color: #534741;
    padding: 0.5rem 1rem;
    margin-top: 2rem;
}
.site-footer a {
    color: #736357;
    text-decoration: none;
}

html {
	background-color: transparent;
}

body { 
  max-width: none; 
  padding: 0; 
  margin: 0; 
}

.inside {
  max-width: 960px; 
  padding: 0 1rem; 
  margin: 0 auto; 
}

@supports (display:grid) {
    .inside {
        max-width: 960px;
    }
}

.site-header,
.site-nav,
.site-content,
.site-footer {
  padding-left: 0; 
  padding-right: 0; 
}

.site-nav {
    position: static;
    padding: 0;
}

.site-nav ul {
    display: flex;
    flex-flow: column;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.site-nav a {
    display: block;
    text-decoration: none;
    background: #736357;
    color: white;
    padding: 0.5rem 1rem;
    margin-right: -1rem;
}

.site-nav a:hover, .site-nav a:focus {
    background: #fff; 
    color: #0b74b8;
}

.current a {
    background: #0b74b8; 
    color: white;
}

.menubutton {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: inherit;
    color: white;
    font: inherit;
    text-transform: inherit;
    text-align: center;
    padding: 0.5rem 1rem;
    border: 0;
    margin: 0;
}

.menubutton::before {
    content: url("../bilder/menuburger.svg");
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
}

.showmenu + ul {
    max-height: 100rem;
    transition: max-height 500ms;
    overflow: initial;
}

.showmenu.menubutton::before {
    content: url("../bilder/menuclose.svg");
}

@media screen and (min-width: 760px){
    .menubutton {display: none !important;}
    .site-nav {position: sticky;}
    
    .site-nav ul {
        max-height: none !important;
        flex-flow: row;
        padding: 0;
    }
    
    .site-nav li {
        text-align: center;
        border-left: 1px solid #eee;
    }
    
    .site-nav li:last-child {border-right: 1px solid #eee;}
    .site-nav a {margin-right: 0;}
    
}

.meta-nav ul {
    display: flex;
    padding: 0;
    margin: 0;
}

.meta-nav li {
    list-style: none;
    margin-right: 0.5rem;
}

.meta-nav li:last-child {
    margin-left: auto;
    margin-right: 0;
}

.meta-nav .current a{
    background-color: #FAF5E1;
    color: #0b74b8;
} 

.site-content a[href^="http"]::after { content: " \2197"; }

.site-content a:link { color: #0b74b8; } 
.site-content a:visited { color: #36aade; } 
.site-content a:hover, .site-content a:focus { color: #f5662e; }
.site-content a:active { color: #d90000; }
  
.infoboxen {
  background-color: white;
  margin-bottom: 0.2rem; 
}

.infobox {
    background-color: white;
    padding: 0.5rem;
    margin: 1rem 0;
}

.infobox img {
    margin-top: 0.7rem;
}

.person {
    display: block;
    margin:  auto auto 0;
    align-content: center;
}
  
.kundenstimme {
  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; 
}

.kundenstimme 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; 
}

.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; 
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transform: none;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50% / 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
