/* Allgemein */

body {
    padding: 0;
    margin: 0;
    background-color: #2E2E2E;
}

header {
    display: flex;
}

/* Header */

.headerpicture {
    width: 100%;
    height: auto;
}

h1 {
    position: relative;
    top: -80vh;
    text-align: center;
    color: #ffffff;
    font-family: 'poppins', sans-serif;
    font-size: 4vh;
    font-weight: 700;
}



/* Nav */


nav {
    background-color: rgba(0, 0, 0, 0.4);
    height: 10vh;
    width: 100vw;
    position: fixed;
    z-index: 99;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav a {
    display: flex;
    justify-content: flex-end;
    text-decoration: none;
    margin-left: 4vw;
    color: #ffffff;
    font-family: 'poppins', sans-serif;
    font-weight: 300;
    font-size: 2vh;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 5vw;
    padding-right: 3vw;
    height: 10vh;
}

.Logo img {
    display: flex;
    flex-direction: row;
    height: 15vw;
    position: fixed;
    z-index: 100;
}

a:hover {
    color: #AD974F;
}


.kontakt {
    background-color: #AD974F;
    border-radius: 5vw;
    padding-right: 0.5vw;
    padding-left: 0.5vw;
}

.kontakt:hover {
    color: #AD974F;
    background-color: #ffffff;
}

.galeriemark {
    color: #AD974F;
}

.galeriemarkdrop {
    background-color: #ddd;
}
      
/* Dropdown Button */
.fa-bars {
    color: white;
    padding: 16px;
    font-size: 5vh;
    border: none;
    cursor: pointer;
    position: relative;
    top: -9vh;
    left: 80vw;
  }
  
  /* Dropdown button on hover & focus */
  .fa-bars:hover, .fa-bars:focus {
    background-color: #AD974F;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 100vw;
    top: -0.2vh;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 2vw;
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    font-family: 'poppins', sans-serif;
    font-weight: 300;
    font-size: 2vh;
    text-align: center;
    padding: 12px 16px;
    margin: 0;
    text-decoration: none;
    display: block;
    text-transform: none;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}

  .kontaktbutton {
      background-color: #AD974F;
  }

  .kontaktbutton:hover {
      background-color: #ffffff;
      color: #AD974F;
  }

/* Content */

.containergallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 5px;
    float: left;
    width: 400px;
    transition: 0.1s;
  }
  
.gallery:hover {
    transform: scale(1.05, 1.05);
  }
  
.gallery img {
    width: 100%;
    height: auto;
  }
  


/* Footer */ 

footer {
    background-color: #707070;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    height: 40vh;
    font-family: 'poppins', sans-serif;
    font-weight: 300;
    font-size: 30px;
    color: #ffffff;
}

.footer-wrapper {
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 2vw;
}

.footer-wrapper h3 {
    margin: 0;
}

footer a {
    text-decoration: none;
    color: #ffffff;
}



.footer-content img {
    height: 12vh;
}

.footerdesignby {
    text-align: center;
    background-color: #2E2E2E;
    font-family: 'poppins', sans-serif;
    font-weight: 300;
    font-size: 2vh;
    color: #ffffff;
}


.fa-facebook {
    font-size: 7vh;
}

.footerdesignby > p > a {
    text-decoration: none;
    color: #ffffff;
}

.footerdesignby > p > a:hover {
    color: #AD974F;
}

/* Responsive */

@media (max-width: 1040px) {

    .containergallery {
        margin: 0;
    }

    .gallery {
        width: 96vw;
        margin: 1.8vw;
    }

    footer {
        font-size: 3vw;
        height: 60vh;
        z-index: 100;
    }

    .footer-wrapper ul {
       visibility: visible;
       text-align: center;
       font-size: 3vh;
       font-weight: 700;
    }

    .footer-wrapper h3 {
     text-align: center;
     font-size: 3vh;
    }

    .footer-wrapper p {
        text-align: center;
        font-size: 2vh;
    }

    .footer-wrapper {
        margin: 2vw;
        align-items: center;
        flex-direction: column;
    }

    .headerpicture {
        width: 100vw;
        height: 60vh;
    }

    h1 {
        position: relative;
        top: -30vh;
    }

    .fa-bars {
        visibility: visible;
    }

    nav ul {
        visibility: hidden;
    }

    .Logo img {
        height: 20vw;
    }

    .footer-content img {
        height: 10vh;
    }
}

@media (min-width: 1040px) {

    .fa-bars {
       visibility: hidden;
    }
}