/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global */
html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: #000;
  overflow: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.menu-button {
  position: relative;
  width: 50px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.menu-icon {
  font-size: 1.6rem;
  color: #fff;
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Sichtbarkeit */
.icon-menu {
  opacity: 1;
  transform: rotate(0deg);
}
.icon-close {
  opacity: 0;
  transform: rotate(90deg);
}

.menu-open .icon-menu {
  opacity: 0;
  transform: rotate(-90deg);
}

.menu-open .icon-close {
  opacity: 1;
  transform: rotate(0deg);
}


/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: 70px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 0.5rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 999;
}

.dropdown a {
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  transition: background 0.3s;
  font-weight: 700;
}

.dropdown a i {
  margin-right: 5px;
  font-size: 17px;
}

.dropdown a:hover {
  background: rgba(255,255,255,0.1);
}

.dropdown-footer {
  padding: 0.8rem 1.2rem;
  font-size: 0.75rem;
  color: #ccc;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.4rem;
  line-height: 1.4;
  text-align: left;
}

/* Slider */
.slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Slide */
.slide {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* 🎯 Für Landscape: bildschirmfüllend */
.slide.landscape {
  background-size: cover;
}

/* Portrait Handling */
.slide.portrait {
  background-size: contain;
  background-color: #000;
}

/* Controls */
.controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.controls a {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s;
}

.controls a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  padding: 0.6rem;
  color: #fff;
  text-decoration: none;
  z-index: 10;
  font-size: 1.8rem;
}

.arrow.left { left: 20px; }
.arrow.right { right: 20px; }

/* Spinner */
.spinner {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

.spinner:not(.hidden) {
  opacity: 1;
  pointer-events: all;
}

.spinner.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner-inner {
  width: 32px;
  height: 32px;
  border: 4px solid #ddd;
  border-top: 4px solid #222;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .controls {
    bottom: 6rem;
    flex-direction: column;
    gap: 0.6rem;
  }

  .controls a {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .arrow {
    font-size: 1.6rem;
    padding: 0.5rem;
  }
    .slide.landscape {
    background-size: cover;
  }

  .slide,
  .slide.portrait {
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #000;
  }

  .dropdown {
    right: 16px;
    top: 56px;
    min-width: 160px;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .controls {
    bottom: 6rem;
  }
}
@font-face {
  font-family: 'LS Harsey Script';
  src: url('ls-harsey-script.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.logo-text {
  font-family: 'LS Harsey Script', sans-serif;
  font-size: 35px; /* etwas größer für mehr Wirkung */
  font-weight: normal;
  margin-top: 13px;
  color: inherit;
  line-height: 1;
}

.badge-bald {
  display: inline-block;
  background: #ffffff;
  color: #000;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}



