:root {
  --primary-color: #203864;
  --secondary-color: #2e75b6;
  --bs-secondary-color: white;
  --white: #ffffff;
  --dark: #1a1a1a;
}

html, body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--white);
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body {
  overflow: hidden;
}

#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(30, 30, 30, 0.25);
  box-shadow: 0 0px 30px 2px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px) saturate(1.5);
  transition: all 0.3s ease;
  justify-self: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#navbar.scrolled {
  background: rgba(0, 0, 0, 0.2);
  width: 95%;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
#navbar.scrolled #navbar-logo {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: grayscale(1);
  filter: saturate(2) brightness(1.5);
}
#navbar.scrolled #navbarNav > ul {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}
#navbar .container > #navbar-logo {
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 8px;
  margin: -8px;
}
#navbar .container > #navbarNav > ul {
  transition: all 0.3s ease;
}

/*.navbar-brand {
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 1px;
}*/
/* Scroll effects */
.scroll-indicator {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--white);
  animation: bounce 1.5s infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
/* Main content */
section {
  padding: 100px 0;
  backdrop-filter: blur(5px);
  background: rgba(26, 26, 26, 0.7);
  position: relative;
  min-height: 100vh;
  /*&::before {   VERY buggy!
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  }*/
}

/* Content sections */
.feature {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--primary-color));
  pointer-events: none;
}

.bg-box-shadow {
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.6);
}

.animate {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hue-rotate {
  from {
    backdrop-filter: blur(20px) saturate(1.5) hue-rotate(0deg);
  }
  to {
    backdrop-filter: blur(20px) saturate(1.5) hue-rotate(360deg);
  }
}
.anim-hue-rotate {
  animation: hue-rotate 6s linear infinite;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(12, 16, 28, 0.85);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(100, 120, 160, 0.2);
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.6);
}
.contact-form h2 {
  margin-bottom: 25px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(145deg, var(--secondary-color), var(--primary-color));
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(46, 117, 182, 0.3);
}

/* Footer styles */
footer {
  background: rgba(12, 16, 28, 0.85);
  padding: 50px 0 20px;
  border-top: 1px solid rgba(100, 120, 160, 0.2);
}

.footer-brand {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

/* Cookie Banner */
#cookie-banner {
  background-color: #1a1a1a;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 10px 0;
  transition: all 0.3s ease;
  display: none; /* Stellt sicher, dass es ausgeschaltet ist */
}

#cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-banner .container {
  max-width: 1200px;
  margin: 0 auto;
}

#cookie-banner p {
  color: #e0e0e0;
  margin-bottom: 0;
  font-size: 14px;
}

#cookie-banner button {
  margin: 0 5px;
  font-size: 14px;
}

#cookie-banner a {
  color: #d0d0d0 !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  #cookie-banner {
    position: static;
    width: 100%;
    margin: 0 auto;
    padding: 10px 15px;
  }
}
/* Responsive styles */
@media (max-width: 992px) {
  .animate {
    animation: fadeIn 1s ease;
  }
  section {
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
  #navbar {
    transform: scale(0.9);
  }
  section {
    padding: 50px 0;
  }
  .contact-form {
    padding: 25px 20px;
  }
}

/*# sourceMappingURL=styles.css.map */
