.uk-navbar-left {
  overflow: auto;
  max-width: 50%;
  white-space: nowrap;
  scrollbar-width: thin;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.uk-navbar-container:not(.uk-navbar-transparent) {
background-color: black;
color: white;
}

.uk-navbar-container:not(.uk-navbar-transparent) a {
color: white;
}

.uk-navbar-nav .uk-nav li {
white-space: normal;
}

.uk-textarea , .uk-textarea:focus , .uk-textarea:disabled , .uk-input::placeholder , .uk-textarea::placeholder , .uk-input , .uk-select {
color: black !important;
}

/* Navbar Button Text Farbe */
.uk-navbar .uk-button { 
color: black !important;
}

/* Navbar Menü Link Hover Farbe */
.uk-navbar-nav > li:hover > a, .uk-navbar-nav > li > a[aria-expanded="true"] , .uk-offcanvas-bar .uk-nav-primary > li > a:hover  {
color: #e7e7e7 !important;
}

footer {
background-color: black;
}

#kontakt button {
min-width: 190px;
}

/* Text Selektion Farbe */
::-moz-selection { /* Code for Firefox */
  color: white;
  background: grey;
}

::selection {
  color: white;
  background: grey;
}

.cta-nav {
font-weight: 600;
letter-spacing: 1px;
}

/* Fullscreen black overlay */
#loader {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

/* Fade out when loaded */
body.loaded #loader {
  opacity: 0;
  pointer-events: none;
}

/* Centered content inside the loader */
.loader-content {
  text-align: center;
  color: white;
}

/* Logo */
.loader-logo {
  width: 150px;
  opacity: 0.9;
}

/* Simple spinning circle */
.loader-circle {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}

/* Spin animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}