@charset "UTF-8";
/* CSS Document */

* {padding: 0;
   margin: 0;
   box-sizing: inherit;}

body
{
  margin: 0;
  padding: 0;
  color: #102f64;
  font-family: "old-standard", "playfair-display";
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

a
{
  text-decoration: none;
  color: #102f64;
  transition: color 0.3s ease;
}

a:hover
{
  color: mediumblue;
}

#menuToggle
{
  display: block;
  position: absolute;
  top: 20px;
  right: 25px;
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0;
  z-index: 2;
  
  -webkit-touch-callout: none;
}


#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #102f64;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}


#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #102f64;
}


#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}


#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}


#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 125px;
  right: -100px;
  box-shadow: 0 1px 3px #102f64;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  #menu {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);  
  }

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}


#menuToggle input:checked ~ ul
{
  transform: none;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #menu {
    transform: none;
    opacity: 0;

    transition: opacity 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  }
}

header {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,244,165,1) 3%, rgba(191,141,44,1) 17%, rgba(225,183,75,1) 34%, rgba(255,241,186,1) 51%, rgba(255,213,82,1) 68%, rgba(255,241,188,1) 84%, rgba(191,141,44,1) 97%);
    box-shadow: 0 1px 3px #102f64;
    bottom: 20px;
}

    header > div {
        width: calc(100% / 3);
    }

    @media (max-width: 768px) {
        header > div {
            width: 100%;
        }
    }

#logo {
    margin-top: 5px;
    text-align: center;
}

#logo img {
    width: 50px;
}


#schriftlogo p {
    float: left;
    margin-top: 15px;
    margin-left: 20px;
    margin-right: auto;
    color: #102f64;
    font-weight: bold;
    font-size: 20px;
    flex: 33.33%;
}


/* BILDER *********************************************/

#ueberschrift h1 {
    text-align: center;
    margin-top: 100px;
}
    
.row {
    width: 98%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    display: flex;
    align-content: center;
    justify-content: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-rows: repeat(auto-fit);
    grid-gap: 25px;
}

.gallery img {
    width: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 1px 3px #102f64;
}

.image1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
}

.image2 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
}

.image3 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 2;
}

.image13 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
}

.image5 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
}

.image6 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
}

.image7 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
}

.image8 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
}

.image9 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 4;
}

.image10 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 4;
    grid-row-end: 5;
}

.image11 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 4;
    grid-row-end: 5;
}

.image12 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 4;
    grid-row-end: 5;
}

h4 {
    font-size: 20px;
}
    
/* FOOTER *********************************************/
    
footer {
    display: flex;
    min-width: 100%;
    /* background: linear-gradient(90deg, rgba(255,244,165,1) 3%, rgba(191,141,44,1) 17%, rgba(225,183,75,1) 34%, rgba(255,241,186,1) 51%, rgba(255,213,82,1) 68%, rgba(255,241,188,1) 84%, rgba(191,141,44,1) 97%); */
    justify-content: center;
    margin-top: auto;
    margin-bottom: 15px;
}