/* for Händies (default)  */  
/*========================*/
* { 
    box-sizing: border-box;
    margin: 0;
}  

@font-face {
  font-family:'MoviePoster-b';
  src: url('/fonts/SF-Movie-Poster-Bold.ttf'); 
}
  
body, html {
  height: 100%;
} 

#bg-image {
  position: fixed;
  top: 0px;
  height: 110vh; 
  width:  100vw; 
}  
   
#bg-image img {
  position: absolute;
  top: 0;
  width: 100vw;
  height:110vh;
  object-fit: cover;
}


img.gummi {  
   width: 100%;
   height: auto;
   position: absolute;
   top:-0px;
}

/* .ToTopArrow {
  
} */

#imagebar {
  position: relative;
  top: 0px;
  height: 40vh;
  opacity: 0.9;  
}

img.logo   {   
    display: block;
    float: left;   
    width: auto;
    height: 50px;
  }
div.logo-text {
  Font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  color: #333333;
  width: calc(100% - 105px);
  float: left;
}
a.logo:hover div.logo-text,
a.logo:hover img {
  background-color: rgba(220,220,220,0.7);
}


#menu-toggle {
  display: block;
  height: 50px;
  width: auto;
  float: right;
  background: lightgray;
}
#menu-toggle:hover { background-color: gray;}

#menu-toggle > img {
  cursor: pointer;
  padding: 4px;
  width: auto;
  height: 100%; 
  /* user-select: none; */
}


#menubar { 
  background-color: rgba(255,255,255,0.7);   /* white; */
  border: 0px solid blue;
  position: relative;
  width: auto;
  padding: 0;
  z-index: 10;
}  

#main-menu {
  background-color: rgba(232,232,232, 1.0);    
  z-index:5;
  height: 0px;
  transition: height 0.7s;
  overflow: hidden;
}

#menubar-container:hover > #main-menu {
  height: 210px;
}

div.menu {
  position: relative;
  min-height: 0px;
}


ul.menu {
  display: block;
  list-style:none;
  margin:0;
  padding:0px 16px 0px 16px;
}

li.menu-item {
  display: block;
  width: 50%;
  float: left;
}
li.menu-item > a:hover {
  background-color: rgba(220,220,220,0.7);
}
li.menu-item > a {  
  display:block;
  float: left;
  width: 100%;
  padding: 10px 14px 10px 14px;
  text-decoration: none; 
  color: #636363;
  font-size: 1.1rem;
  /* Text-transform: uppercase; */
}
li.menu-item a.covid {
  color: white;
  background-color: red;
}
li.menu-item a.covid:hover {
  color: #636363;
}


#contentbar {    /* volle Breite */
  width: auto;
  background-color: #edeae8;
  min-height: 200px;
}

#tf-footer {
  width: auto;
  color: white;
  background-color: #444444;
  min-height: 50px;
  font-size: 1.0rem;
}

#tf-footer a {
  text-decoration: none;
  cursor: pointer;
  color: white;  
}
#tf-footer a:hover {
  color: white;
  background-color: #888888;  
}

div.ToTopArrow {
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  background: lightgrey;
}

div.ToTopArrow img {
  padding: 5px;
  width: 100%;
  height: auto;
}
div.ToTopArrow:hover { background: gray;}


.covid-link {
  display: flex;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transform: rotate(-30deg);
  transition: transform 0.7s;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.0;
  background-color: #ff0000;
  color: white;
}
.covid-link:hover {
  transform: rotate(210deg);
}

/* on Tablets and Desktops  vw
 * =========================        
 */      
               
@media screen and (min-width: 768px) {

  div.logo-container {
    position: relative;
  }

  img.logo {      
    width: 100%;
    height: auto;
    padding: 20px 18% 5px 18%;
  }

  div.logo-text {
    width: 100%;
    margin-bottom: 5px;
  }
  
  
  #menubar {
    position: fixed;
    left: 50px;
    top: 40px;
    bottom: 40px;
    width: 25%;    
    max-width: 325px;  
    opacity: 0.9;
  }
  
  #menu-toggle { display: none;}  
  
  #main-menu { 
    background-color: transparent;
    display: block;
    height: auto
  }

  #menubar-container:hover > #main-menu {
    height: auto;
    /*  background-color: red; */
  }
  
  
  ul.menu {
    background-color: transparent;  
    padding:0;
    padding-top:5px;
  }
    
  li.menu-item > a {
    background-color: transparent;
    display: block;
    width: 100%;
    position: relative;             /* erf. wegen z-index */
    padding: 10px 20px 10px 20px;   /* trbl */
    text-align: center;
    color: #636363;
    font-size: 1.1rem;
    /* Text-transform: uppercase; */
    z-index: 5;
  }
  li.menu-item {
    width: calc(100% - 30px);
    margin-left: 15px;    
  }
  #imagebar, #contentbar, #tf-footer {
    margin-left: calc(25% + 60px);
    margin-right: 10px;  
  }

  #content {
    margin: 15px 20px 0px 5px;
  }


  div.ToTopArrow {
    bottom: 20px;
    right: 20px;
  }
    
}

@media only screen and (min-width: 1300px) {
  #contentbar, #tf-footer {
    margin-left: calc(0.25 * 1300px + 60px);
  }
}
  
