/* styles.css */
@import url(/css/fonts.css);

/* Variablen */
:root {
  --farbe1: 172, 124, 120;
  --farbe2: 212, 177, 40;
  --farbe3: 36, 22, 22;
  --rose: 172, 124, 120;
  --gold: 237, 205, 36;
  --gold3: 220, 190, 50;
  --gold2: 212, 177, 40;
  --dunkelrot: 50, 25, 25;
  --dunkelrot2: 100, 40, 40;
  --rot: 150, 30, 30;
}

/* pink */
.color1 {
  color: rgb(145, 34, 23); 
}
/* gelb */
.color1 {
  color: rgba(212,177,40,1.0); 
}
/* dunkelrot */
.color1 {
  color: rgba(36,22,22,1.0); 
}

/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Layouts */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

[class*="col-"] {
  /*
  float: left;
  border: 1px solid red;
  */
  padding: 15px;
  
}

/* row after wird nicht gebraucht da table-row und table-cell verwendet werden */
.rowXYZ::after {
  content: "";
  clear: both;
  display: table;
}

.tbl {
  display: table;
}
.tbl-row {
  display: table-row;

}
.tbl-col {
  display: table-cell;
}

@media screen and (max-width: 767px){
  .tbl, .tbl-row, .tbl-col { 
    display: block;
  }
  [class*="col-"] {
   width: 100%;    
  }
}


/* Set a base font size and font family */
body {
  font-size: 16px;
  /* font-family: Arial, sans-serif; */
  font-family: 'EB Garamond', serif;
}

/* -- Full height background image -- */
body, html {
  height: 100%;
}
.bg {
  /* The image used */
  

  /*
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.498)), url(/media/bg1.png);
  background-size: 400px;

  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.498)), url(/media/bg1.jpg);
  /* Center and scale the image nicely
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  grid-row: 1;
  grid-column:1;
  top: 0;
  position: sticky;
  */

  

  /* Center and scale the image nicely */
  /*
  background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.298)), url(/media/bg1.png);
  background-size: 300px;
  background-attachment: fixed;
  */
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.498)), url(/media/bg3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* Full height */
  height: 100%;

  
}

/* Container styles */
container {
  display: block;
  max-width: 990px;
  margin: auto;
}

/* Header styles */
header {
  /*
  background-color: #333;
  padding: 10px;
  color: #fff;
  */
  padding: 10px 0;
  color: rgb(var(--gold));
}

.topheader img {
  width: 75px;
}

.topheader {
  
  background-image: url(/media/bgx1e.png);
  background-size: 100px;
  /* 
  background-color: rgba(var(--dunkelrot), 0.9);
  color: rgb(var(--gold));
  background-image: url(/media/Logo300.png);
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100px;
  
  background-image: url(/media/bg1.png);
  background-size: 200px;
  background-color: #f2f2f2;
  background-color: rgba(241,241,241,0.9);
  */
  padding: 15px 0;
  color: rgba(var(--gold), 1.0);
}
.topheader .vcenter {
  vertical-align: middle;
}
/*
nav {
  background-color: #666;
  
}
*/
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  background-image: url(/media/bgx1e.png);
  background-size: 100px;
}

nav ul li {
  
  
  /*
  background-color: rgba(var(--dunkelrot),0.9);

  background-color: #333;
  margin-right: 20px;
  */
  width: 100%;
  text-align: center;
  
}
/* responsive Hamburger Icon ausblenden */
nav ul li.icon {
  display: none;
}

a.simple:before {
  content: "»";
    margin-right: 3px;
}
a.simple {
  text-decoration: none;
  color: rgb(var(--rot));
}

@media screen and (max-width: 767px){
  .bgN {
    background-image: none;
  }
  .bg {
    /* Full height */
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.498)), url(/media/bg3m.png);
    
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /*
    position: fixed;
    top: 0;
    left: -10;
    z-index: 1;
    */
    
  }
  section.topheader {
    padding: 5px 0;
  } 
  header {
    padding: 2px 0 5px 0;
  }

  nav ul li:not(:first-child) {
    display: none;
    
  }
  nav ul li.icon {
    display: block;
    text-align: right;
  }

  nav ul.responsive {
    position: relative;
    display: block;
  }
  nav ul.responsive li.icon {
    
    /* 
    position: absolute;
    right: 0;
    top: 0;
    */
    text-align: right;
  }
  nav ul.responsive li {
    float: none; 
    text-align: left;
    display: block;
    
  }

  .screenonly {
    display: none;
  }
  [class*="col-"] {
    padding-top: 0; 
    padding-bottom: 0;  
  }
  h3 {
    padding-top: 10px;
  }
}
nav ul li a {
  color: rgb(var(--gold));
  text-decoration: none;
  display: block;
  padding: 8px 16px;
  width: 100%;
  height: 100%;
  font-weight: 500;
  text-shadow: 
    -1px -1px 0 rgb(var(--dunkelrot)),
     0   -1px 0 rgb(var(--dunkelrot)), 
     1px -1px 0 rgb(var(--dunkelrot)),
     1px  0   0 rgb(var(--dunkelrot)), 
     1px  1px 0 rgb(var(--dunkelrot)),
     0px  1px 0 rgb(var(--dunkelrot)),
    -1px  1px 0 rgb(var(--dunkelrot)),
    -1px  0   0 rgb(var(--dunkelrot));
}
nav ul li a:hover {
  /*
  background-color: #444;
  color: #ccc
  */
  background-color: rgba(var(--gold), 0.75);
  color: rgba(var(--dunkelrot), 1.0);
  font-weight: 600;
  text-shadow: none;
}
nav ul li a.active {
  background-color: rgba(var(--gold), 1.0);
  color: rgba(var(--dunkelrot), 1.0);
  font-weight: 500;
  text-shadow: none;
}

/* myContents sections styles */
.mycontents .container {
  background-color: rgba(255,255,255,0.8);
  /* text-align: center; */
  margin-bottom: 15px;
  color: rgb(var(--dunkelrot));
}

.mycontents h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.mycontents p {
  font-size: 18px;
  margin-bottom: 12px;
}

.col3-container {
  display: table;
  width: 100%;
}
.col3 {
  display: table-cell;
  padding: 16px;
}

/* Hero section styles */
.hero {
  background-color: rgba(var(--dunkelrot), 0.9);
  
  /* 
  background-image: url(/media/bg1.png);
  background-size: 200px;
  background-color: #f2f2f2;
  background-color: rgba(241,241,241,0.9);
  */
  padding: 40px 0;
  color: rgba(var(--gold), 1.0);
}

.hero .container, .topheader .container {
  text-align: center;
}

.hero img {
  width: 120px;
}
.hero h1 {
  position: relative;
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  /* margin-bottom: 40px; */
}

.hero .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* Features section styles */
.features {
  /*
  background-color: #fff;
  */
  background-color: rgba(255,255,255,0.8);
  padding: 30px 0;
}

.features .container {
  display: flex;
  justify-content: space-between;
}

.feature {
  text-align: center;
  margin-bottom: 40px;
}

.feature i {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 18px;
  margin-bottom: 15px;
}

/* Footer styles */
footer {
  background-image: url(/media/bgx1e.png);
  background-size: 100px;
  
  color: rgba(var(--gold), 1.0);
  /*
  background-color: rgba(var(--dunkelrot), 0.9);

  color: #fff;
  background-color: #333;
  padding: 20px;
  */
  padding: 10px;
  text-align: center;
  font-weight: 500;
  text-shadow: 
    -1px -1px 0 rgb(var(--dunkelrot)),
     0   -1px 0 rgb(var(--dunkelrot)), 
     1px -1px 0 rgb(var(--dunkelrot)),
     1px  0   0 rgb(var(--dunkelrot)), 
     1px  1px 0 rgb(var(--dunkelrot)),
     0px  1px 0 rgb(var(--dunkelrot)),
    -1px  1px 0 rgb(var(--dunkelrot)),
    -1px  0   0 rgb(var(--dunkelrot));
}

.infoblock {
  padding-bottom: 10px;
}

/* Styles Slideshow */
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  /*
  background-color: rgba(var(--dunkelrot),0.8);
  */
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through 
.prev:hover, .next:hover {
  background-color: rgba(var(--dunkelrot),0.8);
}
*/


/* Caption text */
.mySlides .text,
.slideshow-container .prev, 
.slideshow-container .next {
  display: none;
}
.mySlides:hover .text,
.slideshow-container:hover .prev,
.slideshow-container:hover .next {
  display: block;
}
.text {
  background-color: rgba(var(--dunkelrot), 0.8);
  color: rgb(var(--gold));
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2.5s;
  animation-name: fade;
  animation-duration: 2.5s;
}

@-webkit-keyframes fade {
  from {display: block;} 
  to {margin: 0;}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Strike text */
.strike {
  text-decoration: line-through;
}