html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

/* Hero Modernisierung */
.hero {
  height: 80vh;
  /* Reduzierte Höhe für mehr Leichtigkeit */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  /* Fallback */
}

.hero-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  /* Etwas höher für den Parallax-Spielraum */
  background: url('../Images/AdobeStock_331913880.png') center/cover no-repeat;
  z-index: 0;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

/* Shape Divider Styling */
.custom-shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 3;
}

.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.custom-shape-divider-bottom .shape-fill {
  fill: #FFFFFF;
  /* Muss der Hintergrundfarbe des folgenden Sections entsprechen */
}

/* Scroll Mouse Animation */
.scroll-indicator {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 15px;
  display: flex;
  justify-content: center;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  margin-top: 8px;
  animation: scroll-wheel 1.6s infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}

/* Restliches Styling beibehalten */
.navbar-nav .nav-link:hover,
.navbar-nav .active>.nav-link {
  color: #e63946 !important;
}

.user-status-link {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  padding: 0.5rem;
}

.user-status-link:hover {
  color: #fff;
}

.user-status-logged-in {
  font-size: 1.2rem;
  color: #28a745 !important;
  padding: 0.5rem;
}

#loginModal .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #444;
  color: #fff;
}

#loginModal .form-control:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #e63946;
  box-shadow: none;
}

.card {
  transition: transform .3s, box-shadow .3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.logo-img {
  height: 40px;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  z-index: 999;
}

.pt-5 {
  padding-top: 1rem !important;
}

.mt-5 {
  margin-top: 1rem !important;
}

.py-5 {
  padding-top: 1rem !important;
  padding-bottom: 3rem !important;
}

/* Verschachtelte Dropdowns (dropend) in Navbar */
.dropdown-menu .dropend .dropdown-toggle::after {
  vertical-align: middle;
  border-left: .3em solid;
  border-top: .3em solid transparent;
  border-bottom: .3em solid transparent;
  border-right: 0;
  margin-left: auto;
}
.dropdown-menu .dropend .dropdown-item.dropdown-toggle {
  display: flex;
  align-items: center;
}
.dropdown-menu .dropend .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -0.5rem;
}