/*Assets*/
@font-face {
    font-family: Nice;
    src: url(../fonts/Poppins-ExtraLight.ttf);
}

@font-face {
    font-family: Slim;
    src: url(../fonts/Cormorant.ttf);
}
/*Assets*/

/*Global*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: black;
}
/*Global*/

/*Module One (Header)*/
header{
    position: sticky;
    top: 0;
    z-index: 3000;
}

.Nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 8vh;
    background-color: black;
}

.Logo{
    line-height: 8vh;
}

.Logo img {
    padding: 0; 
    margin: 0;
    max-width: 20vw; 
    vertical-align: middle;
}

.Nav-Links{
    display:flex;
    justify-content: space-around;
    width: 40%;
}

.Nav-Links li{
    list-style: none;
}

.Nav-Links a{
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 12px;
    margin-right: 5%;
}

.Nav-Links a{
    position: relative;
}

.Nav-Links a:hover{
color: rgb(155, 0, 0);
}

.Nav-Links a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgb(155, 0, 0);
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.Nav-Links a:hover:before {
    visibility: visible;
    width: 100%;
  }

.Burger {
    display: none;
}

.Burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1280px) {
    .Nav-Links{
        width: 60%;
    }
  }

@media screen and (max-width: 768px) {
    body {
      overflow-x: hidden;
    }

    .Logo img {
        max-width: 50vw;
        max-height: 8vh;
    }

    .Nav-Links{
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: black;
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .Nav-Links li{
        opacity: 0;
    }

    .Burger{
        display: block;
        cursor: pointer;
    }
  }

  .Nav-Activ{
      transform: translateX(0%);
  }

  @keyframes navLinkFade{
      from{
          opacity: 0;
          transform: translateX(50px)
      }

      to{
          opacity: 1;
          transform: translate(0px);
      }
  }

  .toggle .LineOne{
      transform: rotate(-45deg) translate(-5px,6px);
  }
  
  .toggle .LineTwo{
      opacity: 0;
    }
    
    .toggle .LineThree{
    transform: rotate(45deg) translate(-5px,-6px);  
}

/*Module One (Header)*/
/*Module Two (Intro Image)*/
.MyContainer{
    position: relative;
    text-align: center;
    color: white;
    width:100%;
    overflow: hidden;
    max-height: 70vh;
    background-color: black;
}

.MyContainer img{
    max-width: 100%;
    transform-origin: 50% 65%;
    transition: transform 60s, filter 3s ease-in-out;
    filter: brightness(150%);
    opacity: 0.7;
}
  
  /* The Transformation */
.MyContainer:hover img {
    filter: brightness(100%);
    transform: scale(3);
}

.ContentImageHead{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    font-size:350%; 
    width:100%;
    font-family: Nice;
    font-weight: bold;
    text-transform: uppercase;
}

.ContentImageHead span{ 
    color: rgb(155, 0, 0);
}

@media screen and (max-width: 1024px) {
    .ContentImageHead{
        font-size:300%; 
    }
}

@media screen and (max-width: 768px) {
    .ContentImageHead{
        font-size:180%; 
    }
}

@media screen and (max-width: 411px) {
    .ContentImageHead{
        font-size:130%; 
    }
}
/*Module Two (Intro Image)*/
/*Module Four (Intro Elements)*/
.DisElements{
    width: 100%;
    background-color: rgb(0, 0, 0);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-flow: dense;	
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
}

.DisElements a{
    cursor: pointer;
    text-decoration: none;
}

.DisElements a:hover{
    cursor: pointer;
}

.DisElements a div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5%;
    border: 1px solid white;
    padding: 5%;
    border-radius: 10px;
    box-shadow: inset 0 0 7px 5px rgb(27, 27, 27);
}

.DisElements a div:hover{
    box-shadow: inset 0 0 1em white, 0 0 1em white;
}

.DisElements a div img{
   width: 20%;
}

.DisElements a div h3{
    color: white;
    padding:2%;
    letter-spacing: 3px;
}
/*Module Four (Intro Elements)*/
/*Module Six (Intro Service)*/
.Introduction{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 5%;
    color:white;
    font-size: 140%;
    border-bottom: 1px solid grey;
    font-family: Nice;
    letter-spacing: 3px;
    font-weight: bold;
}

@media screen and (max-width: 411px) {
    .Introduction{
        font-size:100%; 
    }
}
/*Module Six (Intro Service)*/
/*Module Eight (Intro KAMERAMANN)*/
.ParallaxKameramann {
    background-image: url("./../images/KameramannBild.jpeg");
    min-height: 50vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 7;
    border-bottom: 1px solid grey;
  }
  
  .ParallaxKameramann div {
      width: 100%;
      min-height: 50vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
  }
  
  .ParallaxKameramann div h1{
      color: rgb(155, 0, 0);
      text-align: center;
      background-color: black;
      padding: 1%;
      margin: 5%;
      opacity: 0.8;
      border-radius: 8px;
      font-family: Slim;
      font-size: 150%;
  }

  .ParallaxText{
    width:100%;
    background-color: rgb(0, 0, 0);  
    border-bottom: 1px solid grey;
    padding: 5%;
    font-size: 140%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .Beschreibung{
      margin: 2%;
      padding: 3%;
      border-radius: 8px;
      width: 90%;
      background-color: rgb(0, 0, 0);
      box-shadow: inset 0 0 5px rgb(255, 255, 255), 0 0 5px rgb(0, 0, 0);
  }

  .Beschreibung h4{
      text-align: center;
      color:rgb(155, 0, 0);
      border-bottom: 1px solid lightgrey;
      font-size: 140%;
  }

  .Beschreibung p{
      line-height: 1.5em;
      font-size: 90%;
  }
/*Module Eight (Intro KAMERAMANN)*/
/*Module Seven (Intro FOTOGRAF)*/
.ParallaxFoto {
    background-image: url("./../images/pexels-photo-2229671.jpeg");
    min-height: 50vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid grey;
  }
  
  .ParallaxFoto div {
      width: 100%;
      min-height: 50vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
  }
  
  .ParallaxFoto div h1{
    color: rgb(155, 0, 0);
    text-align: center;
    background-color: black;
    padding: 1%;
    margin: 5%;
    opacity: 0.8;
    border-radius: 8px;
    font-family: Slim;
    font-size: 150%;
  }
/*Module Seven (Intro FOTOGRAF)*/
/*Module Nine (Intro DRONE)*/
.ParallaxDrone {
    width:100%;
    max-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    overflow: hidden;
    position:relative;
    border-bottom: 1px solid grey;
  }

  .ParallaxDrone  div{
    width: 100vw;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    text-align: center;
  }
  
  .ParallaxDrone  div h1{
    width: max-content;
    background-color: black;
    color: rgb(155, 0, 0);
    text-align: center;
    padding: 1%;
    margin: 5%;
    opacity: 0.8;
    border-radius: 8px;
    font-family: Slim;
    font-size: 150%;
  }

  .CoptoIcon{
    width:30%; 
    display: block;
    margin-left: auto;
    margin-right: auto
  }
/*Module Nine (Intro DRONE)*/
/*Module Ten (Intro WEDDING)*/
.ParallaxProdukt {
    background-image: url("./../images/ProduktBild.jpeg");
    min-height: 50vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    border-bottom: 1px solid grey;
  }
  
  .ParallaxProdukt div {
      width: 100%;
      min-height: 50vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
  }
  
  .ParallaxProdukt div h1{
    color: rgb(155, 0, 0);
    text-align: center;
    background-color: black;
    padding: 1%;
    margin: 5%;
    opacity: 0.8;
    border-radius: 8px;
    font-family: Slim;
    font-size: 150%;
  }
/*Module Ten (Intro WEDDING)*/
/*Module Ten (Intro WERBUNG)*/
.ParallaxWerbung {
    background-image: url("./../images/WerbungBild.jpeg");
    min-height: 50vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    border-bottom: 1px solid grey;
  }
  
  .ParallaxWerbung div {
      width: 100%;
      min-height: 50vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
  }
  
  .ParallaxWerbung div h1{
    color: rgb(155, 0, 0);
    text-align: center;
    background-color: black;
    padding: 1%;
    margin: 5%;
    opacity: 0.8;
    border-radius: 8px;
    font-family: Slim;
    font-size: 150%;
  }

  @media screen and (max-width: 768px) {
      .CoptoIcon{
          width: 40%;
      }
  }
/*Module Ten (Intro WERBUNG)*/
/*Module Three(Footer)*/
.MyFooter{
    background-color: black;
    color: white;
}

.FooterContainer{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-flow: dense;
}

.ContentF1, .ContentF2, .ContentF3{
    padding: 5%;
    margin: 5%;
    text-align: center;
}

.ContentF1{
    display: flex;
    align-items: center;
    justify-content: center;
}

.ContentF1 img{
    width: 90%;
}

.ContentF1 img:hover{
    transition: transform .5s ease;
    -ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari 3-8 */
    transform: scale(1.1);
}

.ContentF2 div{
    padding: 5%;
    border-top: 1px solid lightgrey;
}

.ContentF2 div p{
    font-weight: bold;
}

.Copyright{
    width: 100%;
    background-color: #4285F4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
/*Module Three(Footer)*/
/*Module Five(Back Button)*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: rgb(155, 0, 0);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  
  #myBtn:hover {
    box-shadow: inset 0 0 2em rgb(155, 0, 0), 0 0 2em rgb(155, 0, 0);
  }

  .OptionTwo{
      text-transform: uppercase;
      font-family: nice;
      font-size: 80%;
  }
  /*Module Five(Back Button)*/