:root {
    --card-margin: 1em;
}

/* open-sans-300 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/open-sans-v17-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Light'), local('OpenSans-Light'),
       url('fonts/open-sans-v17-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v17-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v17-latin-300.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v17-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v17-latin-300.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/open-sans-v17-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('fonts/open-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v17-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v17-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v17-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/open-sans-v17-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Bold'), local('OpenSans-Bold'),
       url('fonts/open-sans-v17-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v17-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v17-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v17-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v17-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}


html, body{
    height: 100%}

body {
    font-family: 'Open Sans', sans-serif;
    color: #424242;
    line-height: 150%;
    background-color: #f2f2f2;

}


img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.container > * {
    flex: 1 1 280px;
}

.card {
    display: flex;
    flex-wrap: wrap;
    flex-basis: calc(960px * 999 - 100% * 999);
    background: white;
    margin: 1em;
}

.card > * {
    flex: 1 1 280px;
}

.content {
    align-self: center;
    padding: 1em 2em;
}




body > header > h1 {
    
    position: absolute;
    left: 30px;
    top: 20px;
    z-index: 7;
    font-size: 2.5em;
    font-family: 'Playball', sans-serif;
    font-weight: 200;
    color: black;
    
}

body > header > h1 > span {
    text-transform: none;
    font-family: 'Open sans', sans-serif;
    font-weight: 200;
    font-size: 0.9em;
}

h2 {
    font-size: 2em;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: darkgrey;
    margin: 2em 2em 1em 0.5em;
}

h3 {
    font-size: 1.5em;
    font-weight: 300;
    letter-spacing: 0.1em;
}



h4 {
    font-size: 0.8em;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: white;
    opacity: 0.5;
    margin: 1em 2em 0em 2em;
    text-align: center;
}

h5 {
    font-size: 10em;
    font-weight: 100;
    letter-spacing: 0.1em;
    color:darkslategrey;
    opacity: 0.5;
    margin: 1px;
    text-align: center;
}

h6 {
    font-size: 40px;
    font-weight: 800;
    line-height: 30px;
    color: red;
    opacity: 0.5;   
    text-align: left;
    text-transform: uppercase;
}




p {
    color: black;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.2em;
    text-decoration: none;
}

strong {
    font-weight: bold;
}




a {
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-decoration: none;

}


a:hover {
    color: #ba9e00;
    cursor:pointer;
}

a:focus {
    color: #ba9e00;
}



.btn {
    background-color: grey;
    color: white;
    border-radius: 7px;
    padding: 7px 20px 10px 20px;

}


hr {
    height: 0pt;
    border: 0px;
    background-color: grey;
    margin: 150px 0px 200px 0px;
}


iframe {
    width: 700px;
    height: 500px;
    border: none;
    background-color: white;
    align-items: center;


}


/* Versuch iframe als Gallerie responsive, nur bedingt wirksam immerhin sind die scrollbalken weg mit overflow hidden aber die größe des img passt sich icht an den iframe an*/

.galerie {
    max-width: 700px;
    background: darkgoldenrod;
    overflow: hidden;
    margin: 50px 20px 0px 20px;
}


}

iframe {
    max-width: 100;
    max-height: 56.25%;
    /* 315/560 = .5625 */
}




/* iframe video responsive code von https://benmarshall.me/responsive-iframes/ */

.iframe-container {
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
}

.iframe-container iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}



/* EMail Formular*/


#form {
    position: relative;
    width: 430px;
    margin: 50px 20px 100px 20px;
}

input {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875em;
    width: 400px;
    height: 50px;
    padding: 0px 15px 0px 15px;

    background: transparent;
    outline: none;
    color: #726659;

    border: solid 1px orangered;
    border-bottom: none;

    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;

}



input:hover {
    background: white;
    color: black;
}

textarea {
    width: 400px;
    max-width: 470px;
    height: 110px;
    max-height: 110px;
    padding: 15px;

    background: transparent;
    outline: none;

    color: black;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875em;

    border: solid 1px orangered;

    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;

}

textarea:hover {
    background: white;
    color: black;
}

#submit {
    width: 432px;
    padding: 0;
    margin: -6px 0px 0px 0px;

    font-family: 'Lato', sans-serif;
    font-size: 1em;
    letter-spacing: 0.1em;
    color: orangered;

    outline: none;
    cursor: pointer;

    border: solid 1px orangered;
    border-top: none;
}

#reset {
    width: 432px;
    padding: 0;
    margin: 0px 0px 0px 0px;

    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    color: #726659;

    outline: none;
    cursor: pointer;

    border: solid 1px orangered;
    border-top: none;
}

#submit:hover {
    font-size: 1em;
    letter-spacing: 0.2em;
    background-color: orangered;
    opacity: 0.5;
}

#reset:hover {
    font-size: 0.8em;
    background-color: #726659;
    opacity: 0.1;
}





/*Parallax Experiment*/



.parallax1 {
  /* image used */
  background-image: url('../img/hockauf-licht.JPG');

  /* Full height */
  height: 100%; 

  /* parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax2 {
  /* image used */
  background-image: url('../img/hockauf-hafen.png');

  /* Full height */
  height: 100%; 

  /* parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



.parallax3 {
  /* image used */
  background-image: url('../img/hockauf-ski.jpg');

  /* Full height */
  height: 100%; 

  /* parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



.parallax4 {
  /* image used */
  background-image: url('../img/hockauf-ella.png');

  /* Full height */
  height: 100%; 

  /* parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



.parallax5 {
  /* image used */
  background-image: url('../img/hockauf-sommer.png');

  /* Full height */
  height: 100%; 

  /* parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.parallax6 {
  /* image used */
  background-image: url('../img/hockauf-me2.png');

  /* Full height */
  height: 100%; 

  /* parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.parallax7 {
  /* image used */
  background-image: url('../img/hockauf-london.png');

  /* Full height */
  height: 100%; 

  /* parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}








/* ausschalten parallax für tablets and phones. > Increase the pixels if needed*/ 
@media only screen and (max-device-width: 1366px) {
  .parallax {
    background-attachment: scroll;
  }
}


/*footer*/


footer {
    position: fixed;
    left: 0px;
    bottom: 0px;
    height: 60px;
    width: 100%;
    background: black;
    opacity: 0.9;
}










/*Verschiedene Lösungsansätze für galery/target/iframe...verworfen*/

/*
iframe > img {
    width: 100%;
*/
}


/* Galery Vers 2*/

/*
#gallery {
    position: relative;
    width: 100%;
    height: 400px;
    box-shadow: 3px 3px 3px 3px #999;
    
}

#gallery > img {
    position: absolute;
    width: 100%;
    opacity: 0;
     Transparenz 0 .... 0.5  .... 1 
    transition: 2s opacity;
}

#gallery :target {
    opacity: 1;
    transition: 2s opacity;
}
*/
