/*
 * Globals
 */


/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */

body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.cover-container {
    position:relative;
  background-image: url(../images/seebild_hütte.jpg);
  background-size: cover;
  background-position: 20% 0px; 
  /*Bildausrichtung fuer sm je nach Motiv x und y Achse*/
}
.cover{
position: absolute;
top: 50%;
right: 10%;
z-index: 20;
width: 42em;


}
@media (max-width: 767.98px) { 
.cover{
    width: 80%;
    color: #222;
    background-color:rgba(255, 255, 255, .25);

}

}
/*
 * Header
 */
.navbar-dark bg-dark{
  background-color: rgba(255, 255, 255, 0);
}
.navbar-dark  .nav-link {
  padding: .25rem 0;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);

  border-bottom: .25rem solid transparent;
}

.navbar-dark  .nav-link:hover,
.navbar-dark  .nav-link:focus {
  border-bottom-color: hwb(0 17% 41%);
}

.navbar-dark  .nav-link + .nav-link {
  margin-left: 1rem;
}

.navbar-dark  .active {
  color: #fff;
  border-bottom-color:  hwb(0 17% 41%);
}

#about, .about-me{
 list-style-type: none;
}

.bi{
  padding: 0 10px 0 0;
  color: hwb(0 17% 41%); 
}

/***flipcar begin***/
/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 100%;
  /* border: 1px solid #f1f1f1; */
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: hwb(0 17% 41%);
  color: white;
  transform: rotateY(180deg);
}

/**overlay begin**/

.container1 {
  position: relative;
  width: 100%;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: hwb(0 17% 41%);
}

.container1:hover .overlay {
  opacity: 1;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

/**overlay begin**/
.container2 {
  position: relative;
  width: 100%;
}

.image {
  display: block;
  width: 100%;
  height: 100%;
}

.overlay1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.container2:hover .overlay1 {
  height: 100%;

}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.btn-primary {
  color: #fff;
  background-color: hwb(0 17% 41%); 
  border-color:  hwb(0 17% 41%); 

}

a{
  color: hwb(0 17% 41%); 
  text-decoration: underline;
}
