/* Aquarelle style definitions, bh 14.01.2025 */

* {
  box-sizing: border-box;
}

@font-face {
  font-family: Noto;
  src: url(../fonts/NotoSansJP-Regular.otf);
}

/* mobile-first */
html {
  font-size: 1rem;
  font-family: Noto;
}

body {
  font-family: Noto;
  font-size: 1rem;
  height: 100%;
  margin: 0.1em;
  color:#201422;
  background-color: #D2B7A5;
}
h1 {
  font-size: 2rem;
  font-family: Noto;
  color: #201422;
  text-align: center;
}

h2 {
  font-family: Noto;
  font-size: 1.5rem;
  color: #201422;
  margin-left: 10px;
}

h4 {
  font-family: Noto;
  font-size: 1.4rem;
  color: #201422;
}

h5 {
  font-family: Noto;
  font-size: 1rem;
  color: #201422;
}
p {
  font-size: 1rem;
  font-family: Noto;
  text-align: left;
  margin-left: 10px;
  color: #201422;  
}

table, th, td {
  border: 2px solid #201422;
  border-collapse: collapse;
  /* background-color:LightGrey; */
  font-family: Noto;
  font-size: 1rem;
  max-width: 800px;
}
th {
  background-color:Grey;
  font-family: Noto;
}

ul {
  list-style-type: none;
  font-size: 1rem;
  color: white;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: w3-camo-forest; 
}

li {
  float: right;
  margin: auto;
  font-size: 1em;
}

li a {
  display: inline-block;
  
  color: white;
  text-align: center;
  padding: 0.3rem 0.5rem;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}

.active {
  background-color: red;
}	
/* Style the containers */

/* Style the header */
.header {
  background-color: #EDE2DB;
  padding: 0px;
  text-align: center;
  font-size: 35px;
}

/* Container for flexboxes */
.row {
  display: -webkit-flex;
  display: flex;
}

/* Create two unequal columns that sits next to each other */
.column {
  padding: 5px;
  
}

/* Left and right column */
.column.side {
   -webkit-flex: 1;
   -ms-flex: 1;
   flex: 1;
}

/* Main column */
.column.middle {
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
}



/* Style the slideshow */
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  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: 10px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* Position the "prev button" to the left */
.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(0,0,0,0.8);
}

/* Caption text */
.text {
  color: white;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: white;
  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 {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* call to action Button auf Image */
.container {
  position: relative;
  text-align: center;
  width: 100%;
  color: Ivory;
}

/* Bottom left text */
.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

/* Top left text */
.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

/* Top right text */
.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

/* Bottom right text */
.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.centered-low {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.container img {
  width: 100%;
  height: auto;
}

.container .btn {
  position: absolute;
  top: 90%;
  left: 66%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #f1f1f1;
  color: black;
  /* font-size: 1rem; */
  padding: 3px 5px;
  border: none;
  cursor: pointer;
  border-radius: 20px;
  text-align: center;
}

.container .btn:hover {
  background-color: black;
  color: white;
}

/* Gallery styling */

#myImg {
  
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 6em; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0px; /*  width: 80%; */
  max-width: 1200px;
  max-height: 600px;
  object-fit:contain;
   -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s; 
}

/* Caption of Modal Image (Image Text) - Same Width as the Image 
#modcaption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}
*/
/* Add Animation 

.modal-content {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}
*/
@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.modclose {
  position: absolute;
  top: 0.3em;
  right: 0.8em;
  color: red;
  border: 1px solid red;
  font-size: 2em;
  font-weight: bold;
  transition: 0.3s;
}

.modclose:hover,
.modclose:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

img {
  margin-bottom: -1px;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.grow {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Add padding BETWEEN each column */
.grow,
.grow > .gcolumn {
  padding: 0.3em;
}

/* Gallery: four equal columns that floats next to each other */
.gcolumn {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

/* Clear floats after rows */ 
.grow:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.gcontent {
  background-color: #D2B7A5;
  padding: 0.3em;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1920px) {
  body {
    flex: 100%;
    max-width: 80%;
	margin-left: auto;
	margin-right: auto;
  }
  ul {
  font-size: 1rem;
  }
  
  .container .btn {
	  font-size: 1rem;
  }
  
  /* Responsive gallery layout */
    .gcolumn {
    flex: 25%;
    max-width: 25%;
  }
 
   .modal-content {
    width: 55%;
	height: auto;
	max-height: 600px;
	max-width: 80%;
	object-fit: contain;
  } 
  
}

/* Responsive layout - makes the columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
   body {
    flex: 100%;
    max-width: 100%;
	
  }
  
  ul {
  font-size: 0.6rem;
  }
  
  td {
  font-size: 0.8rem;
  }
  
  .container .btn {
	  font-size: 0.8rem;
  }
  
  /* Responsive gallery layout */
    .gcolumn {
    flex: 50%;
    max-width: 100%;
  }
  .modal-content {
    width: 100%;
  }
}

/* Responsive gallery layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 300px) {
  .gcolumn {
    flex: 100%;
    max-width: 100%;
  }
  .modal-content {
    width: 100%;
  }
}


/* w3 camouflage colors */
.w3-camo-brown
{color:#fff!important;background-color:#594d45!important}

.w3-camo-red
{color:#fff!important;background-color:#79533d!important}

.w3-camo-olive
{color:#fff!important;background-color:#595142!important}

.w3-camo-field
{color:#fff!important;background-color:#745d46!important}

.w3-camo-earth
{color:#fff!important;background-color:#ac7e54!important}

.w3-camo-sand
{color:#fff!important;background-color:#a9947b!important}

.w3-camo-tan
{color:#fff!important;background-color:#b49d80!important}

.w3-camo-sandstone
{color:#fff!important;background-color:#bcab90!important}

.w3-camo-dark-green
{color:#fff!important;background-color:#535640!important}

.w3-camo-forest
{color:#fff!important;background-color:#54504b!important}

.w3-camo-light-green
{color:#fff!important;background-color:#63613e!important}

.w3-camo-green
{color:#fff!important;background-color:#4a5444!important}

.w3-camo-dark-gray,.w3-camo-dark-grey
{color:#fff!important;background-color:#5c5c5b!important}

.w3-camo-gray,.w3-camo-grey
{color:#fff!important;background-color:#9495a5!important}

.w3-camo-black
{color:#fff!important;background-color:#373538!important}
