/* * Globals */
 :root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --my-color: #87474c;

 }

 

/*
 * Base structure
 */
 

.cover-container {
  max-width: 42em;
}
 


/* Container needed to position the overlay. Adjust the width as needed */
.container1 {
  position: relative;
}

/* Make the image to responsive */
.image {
  width: 100%;
  height: auto;
}

/* The overlay effect (full height and width) - lays on top of the container and over the image */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #008CBA;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: .3s ease;
}

/* When you mouse over the container, the overlay text will "zoom" in display */
.container:hover .overlay {
  transform: scale(1);
}

/* Some text inside the overlay, which is positioned in the middle vertically and horizontally */
.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.btn {
  background-color: var(--my-color);
  border: var(--my-color);
}

.datenschutzerklaerung {
  color: var(--my-color);
}

.datenschutzerklaerung:hover{
  color:#cb9296 ;
}

.img-fluid {
  height: 90%;
}





/*
 * Header
 */
 
.navbar-light .nav-link {
  padding: .25rem 0;
  font-weight: 700;
  color: var(--bs-gray-dark);
  background-color: transparent;
  border-bottom:.25rem solid transparent;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
 
.navbar-light .nav-link:hover,
.navbar-light .nav-link:focus {
  border-bottom-color: var(--my-color);
}
 
.navbar-dark .nav-link + .nav-link {
  margin-left: 1rem;
}
 
.navbar-dark .active {
  color: var(--my-color);
  border-bottom-color: var(--my-color);
}
 
.inner{
    width: 42rem;
}
 
.cover-container{
    position: relative;
    background-image: url(../img/hero.png);
    max-width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 20% 0px;
}
 
.cover{
    position: absolute;
    top:50%;
    right:10%;
    z-index:20;
}
 

.video{
  height: 600px;
  width: 100%;
   }
  
body {
    color:var(--bs-gray-dark);
    background-color: #fffae517;
    box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
    font-family:Verdana, Geneva, Tahoma, sans-serif;
  }
  
  .hero{
    width: 100%;
    height: auto;
  }
.btn-primary:hover{
background-color:#cb9296;
}

  /* Custom default button */
  .btn-secondary,
  .btn-secondary:hover,
  .btn-secondary:focus {
    color: var(--my-color) !important;
    text-shadow: none; /* Prevent inheritance from `body` */
    opacity: 85%;
  }
  

  h5 {
    margin-bottom: 10px; 
    margin-top: 60px;
  }

  p {
    margin-top: 10px;
    margin-bottom: 10px;
  }

img {
  margin-bottom: 20px;
  width: 100%;
  height: auto;
}
  .bi {
    color: white;
    padding-right: 15px;
    opacity: 50%;
  }

  .heart{
    color: var(--my-color);
  }

  .impressum{
    opacity: 50%;
  }
  
  .about-me li,
  ul {
    list-style-type: none !important;
  }
  
  .progress-bar {
    background-color: var(--my-color);
  }
  
  .progress {
    background-color: transparent; /* Entfernt den weißen Hintergrund */
  }
  
  .prozent75 {
    padding-left: 445px;
  }
  
  .prozent30 {
    padding-left: 127px;
  }
  
  .img-responsive {
    width: 100%;
    height: auto;
    object-fit: contain; 
    max-width:400px;
}

/* Flip-Karten Container */
.flip-card {
  width: 1240px;  /* Feste Breite */
  height: 423px; /* Feste Höhe */
  margin: auto;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* Flip-Inhalt */
.flip-card-inner {
  position: relative;
  width: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Flip-Animation */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Vorder- und Rückseite */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Front */
.flip-card-front img,
.flip-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Verhindert Verzerrungen */
}

/* Rückseite */
.flip-card-back {
  transform: rotateY(180deg);
  background-color: transparent;
}

.folder-container {  
  margin-top: 40px; /* Erhöhe den Abstand nach oben */
}

footer{
  background-color: var(--my-color);
}

/** Small devices (landscape phones, 576px and up)**/
@media (max-width: 576px) {
    .cover{
    position: absolute;
    top:60%;
    right:5%;
    left:5%;
    z-index:20;
    background-color: rgba(0, 0, 0, .25);
}
.inner{
    width: 20rem;
}

}
 