/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
  font-optical-sizing: auto;
  font-style: normal;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

* {
  scrollbar-width: 16px;
  scrollbar-color: white black;
}

*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: white;
}

*::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 20px;
  border: 3px solid black;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
}

p, li {
  font-family: 'Roboto', sans-serif;
}

.navbar {
  background-color: black !important;
  min-height: 125px !important;
}

.navbar a {
  font-size: 23px !important;
}

.dropdown-item:active {
  background-color: black !important;
  color: white !important;
}

.navbar-toggler {
  border-color: black !important;

}



/* Specific Styles */
#scrollToTopBtn {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: black;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  display: none;
}



.font {
  font-family: 'Oswald', sans-serif;
  color: black !important;
  font-size: 19px;
}

.font a {
  color: black !important;
}

.black-bg {
  background-color: #F9FAFB !important;
}

.card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel-item {
  width: 100%;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: auto;
}

.dropdown-item:hover {
  color: black !important;
}

.footer {
  margin-top: 60px !important;
  margin-top: auto;
  background-color: #000 !important;
  clear: both;
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: #ccc;
}

.headline {
  margin-top: 50px;
}

.nav-link {
  color: white !important;
}

.nav-link.special-account-link {
  color: #007bff !important;
}

.nav-link.special-account-link:hover {
  color: white !important;
}

.special-account-link {
  color: #007bff !important;
  font-weight: bold;
  border: 2px solid #007bff;
  padding: 5px 10px;
  border-radius: 5px;
  margin-left: 15px;
}



.nav-link.issues:hover {
  color: white !important;
}

.darkmode {
  background-color: transparent;
}

.youtube-video {
  aspect-ratio: 16 / 9;
  width: 50%;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}


/* General Style for Links */
ul.list-unstyled li a {
  color: white;
  text-decoration: none;
  position: relative;
}

ul.list-unstyled li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: white;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

ul.list-unstyled li a:hover::after {
  visibility: visible;
  width: 100%;
}

/* Mouseover by a Image */
.image-container {
  overflow: hidden;
  display: inline-block;
}

.image-container img {
  transition: transform 0.5s ease;
  display: block;
  width: 100%;
  height: auto;
}

.image-container:hover img {
  transform: scale(1.2);
}

.wave-separator {
  line-height: 0;
  margin-bottom: -100px;
}

.wave-separator svg {
  display: block;
  width: 100%;
  height: 300px;
}

/* Media-Queries */
@media (max-width: 767px) {
  #scrollToTopBtn {
    bottom: 85px;
  }

  h2 {
    font-size: 1.5em;
  }

  .maintenace-content {
    font-size: 14px;
    padding: 15px;
  }

  .carousel-item img {
    width: auto;
    min-height: 250px;
    /* Verwenden von min-height */
  }

  .special-account-link {
    margin-left: 0;
    border: 0;
  }

  .issues-link {
    margin-left: 0;
    border: 0;
  }

  .btn.btn-dark.darkmode {
    visibility: hidden;
    height: 0px;
    width: 0px;
  }
}

@media (max-width: 1000px) {
  #scrollToTopBtn {
    bottom: 85px;
  }

  h2 {
    font-size: 1.5em;
  }

  .footer .col-md-4 {
    margin-bottom: 20px;
    padding: 20px;
  }

  .footer h3,
  .footer h4 {
    font-size: 1.2em;
  }

  .card-title {
    text-align: center;
  }

  .special-account-link {
    margin-left: 0;
    border: 0;
  }

  .issues-link {
    margin-left: 0;
    border: 0;
  }

  .btn.btn-dark.darkmode {
    visibility: hidden;
    height: 0px;
    width: 0px;
  }
}

@media only screen and (max-width: 600px) {
  #scrollToTopBtn {
    bottom: 85px;
  }

  h2 {
    font-size: 1.5em;
  }

  .maintenace-content {
    font-size: 14px;
    padding: 15px;
  }

  .youtube-video {
    aspect-ratio: 16 / 9;
    width: 100%;
  }

  .carousel-inner .carousel-item img {
    min-height: 500px;
    object-fit: cover;
  }

  .carousel-item img {
    min-height: 350px;
    object-fit: cover;
  }

  .special-account-link {
    margin-left: 0;
    border: 0;
  }

  .issues-link {
    margin-left: 0;
    border: 0;
  }


}



#cookie_banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #000;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  max-width: 300px;
  width: auto;
  box-sizing: border-box;
}

#cookie_banner a {
  color: #fff;
  margin: 5px;
  display: block;
  text-align: center;
}

#cookie_banner .btn {
  margin: 5px;
  display: block;
  text-align: center;
}

@media (max-width: 600px) {
  #cookie_banner {
    bottom: 10px;
    right: 10px;
    padding: 15px;
    font-size: 14px;
    max-width: 90%;
  }

  #cookie_banner a {
    margin: 3px;
    font-size: 14px;
  }

  #cookie_banner .btn {
    margin: 3px;
    font-size: 14px;
  }
}

.page-link {
  color: black !important;
  background-color: white !important;
  border: 1px solid black !important;
}

.page-link:hover {
  color: white !important;
  background-color: black !important;
  border-color: black !important;
}

.page-item.active .page-link {
  background-color: black !important;
  border-color: black !important;
  color: white !important;
}