/* Grundlegendes */
body {
    font-family: Arial, sans-serif;
    color: #003f46 !important;
    margin: 0;
  }

  html{
    scroll-behavior: smooth;
  }

  .phone{
    padding: 1rem;
    width: 50px;
    color:#009fb1;
  }
.blue{
  color:#009fb1;
}
  .phone:hover{
    color:#003f46;
  }
 
.color{
  color:#009fb1 !important;
}

  .navbar {
    background-color: rgba(255, 255, 255, 0.6);
  }
  
  .navbar a, .navbar a:visited {
    color: #009fb1;
  }
  
  .navbar a:hover {
    color: #003f46 !important;
  }
  
  /* Mobile Navbar Hintergrund und Abstand */
.navbar-collapse.collapse.show {
    background-color: #009fb1 !important; /* Hintergrund nur, wenn Menü geöffnet */
    padding: 2rem 1rem;
  }
  
  /* Mobile Links */
  .navbar-collapse.collapse.show .nav-link {
    color: white !important;
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }
  
  /* Hover-Effekt */
  .navbar-collapse.collapse.show .nav-link:hover {
    color: #003f46 !important;
  }
  
  /* Hamburger Icon */
  .navbar-toggler {
    border: none;
    outline: none;
  }
  
  .navbar-toggler-icon {
    background-image: url(../images/hamburger.png);
  }
  .navbar-toggler-icon:hover {
    background-image: url(../images/hamburgerhover.png);
  }
  
  /* Desktop-Styles bleiben normal */
  @media (min-width: 992px) {
    .navbar-collapse {
      background-color: transparent !important;
      padding: 0;
    }
  
    .navbar-nav .nav-link {
      color: #009fb1 !important;
      font-size: 1rem;
    }
  }
  
  .hero {
    position: relative;
    background: url('../images/mountains.png') center/cover no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    overflow: hidden;
  }
  
  /* Overlay für 60% Opazität */
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4); /* 40% schwarz = Hero-Bild 60% sichtbar */
    z-index: 1;
  }
  
  /* Hero-Inhalt über dem Overlay */
  .hero .herotext {
    position: relative;
    z-index: 2;
    color: #003f46; /* Textfarbe bleibt normal */
  }
  
  
  /* Wave direkt auf der Hero-Section */
  .wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
    z-index: 5;
  }
  
  /* Für mobile Geräte: fixed durch scroll ersetzen */
  @media (max-width: 768px) {
    .hero {
      background-attachment: scroll; /* Fixed wird auf kleinen Geräten oft nicht unterstützt */
      height: auto;
      padding: 5rem 1rem;
    }
  
    .hero .herotext img {
      width: 70%;
    }
  }
  
  #reviews{
    padding: 3rem;
    align-items: center;
    justify-content: center;
  }
  
  /* Leistungen */
  #leistungen {
    margin-top: 0; /* Kein Abstand */
    padding-top: 0;
    padding-bottom: 10rem;
    color: #003f46;
    background-color: #009fb1;
    margin-bottom: 5rem;
  }
  
  /* Karten */
  .cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: #009fb1;
  }
  
  .card {
    border-radius: 2rem;
    overflow: hidden;
    width: 70%;
    max-width: 500px;
    margin: 1rem auto;
    background-color: #009fb1;
    border-color: #009fb1;
  }
  
  .card-img-top {
    padding: 2rem;
    border-radius: 20%;
  }

  .indexems:hover, .indexpersonal:hover{
    width: 75%;
  }
  
  #leistungen a{
    text-decoration: none;
  }
  /* Über mich */
  #about {
    transform: translateY(-5vh);

  }
  
  .portrait {
    border-radius: 2rem;
    width: 100%;
    max-width: 400px;
    transform: translateY(-5vh);
  }
  
  #about .col-md-7 {
    margin-top: 2rem;
  }
  
  /* Kontakt */
  #contact {
    transform: translateY(2vh);
    
  }

  /* Footer */
  footer {
    background-color: #009fb1;
    color: white;
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    position: relative;
  }

  footer a, footer a:hover{
    color:white;
  }
  
  /* Media Queries für kleine Bildschirme */
  @media (max-width: 992px) {
    .navbar .ml-auto {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .hero {
      height: auto;
      padding: 5rem 1rem;
    }
  
    #leistungen {
      padding: 3rem 1rem;
    }
  
    .cards {
      flex-direction: column;
      gap: 2rem;
    }
  
    .portrait {
      transform: translateY(0);
    }
  
    #about {
      transform: translateY(0);
    }
  
    #contact {
      transform: translateY(0);
    }
  
    .contact, .maps {
      margin: 1rem 0;
      padding: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .card-img-top {
      padding: 1rem;
    }
  
    .btn {
      padding: 0.5rem 1rem;
      z-index: 999;
    }
  
    .hero .herotext img {
      width: 70%;
    }
  }
  
  #myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 9999; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    color: #003f46; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 20px; /* Increase font size */
	line-height: 24px; /* Set the line-height for better alignment inside the box */
	text-decoration: none;

}

#myBtn:hover {
    color:#01727e;
	text-decoration: none;
}

#angebot, #impressum{
  padding-top: 10vh;
}



#angebot p{
  color: #003f46;
}

#angebot li{
  padding: 1vh;
  color:#003f46;
}

h1{
  color:#009fb1;
}

#training, #contact{
  padding-top: 10vh;
}

.training{
  padding: 5vh;
  background-color: #01727e;
  border-radius: 5vh;
  border: 0.5vh solid white;

}

.instagram {
  width: 46px;
  height: 46px;
  background-image: url("../images/instahell.png");
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s ease-in-out;
}

.instagram:hover {
  background-image: url("../images/instadunkel.png");
}

.phone {
  width: 46px;
  height: 46px;
  background-image: url("../images/phonehell.png");
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s ease-in-out;
}

.phone:hover {
  background-image: url("../images/phonedunkel.png");
}

.mail {
  width: 46px;
  height: 46px;
  background-image: url("../images/mailhell.png");
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s ease-in-out;
}

.mail:hover {
  background-image: url("../images/maildunkel.png");
}


ol.v {
  list-style-type: none;
margin-top: 3vh;
}

.studio{
  border-radius: 3vh;
}

.training p, ul{
  color: white;
}

iframe{
  border-radius: 3vh;
}
#contact a, #contact a:visited{
  text-decoration: none;
  color:#003f46;
}
#contact a:hover{
  color:#009fb1;
}

form{
  margin-bottom: 10vh;
}

hr{
  border: 1px solid #009fb1;
}

.impressumol{
  color:#003f46;
}