/* Global Navigation Styles */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(214, 211, 209, 0.6);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: all 0.3s ease;
}

nav {
  z-index: 50;
}

/* Logo Styles - nur im Header */
header .logo-fade {
  position: relative;
  display: inline-block;
  line-height: 0;
}

header .logo-fade img {
  display: block;
  height: 70px;
  width: 150px;
}

header .logo-fade .logo-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

header .logo-fade:hover .logo-hover {
  opacity: 1;
}

header .logo-fade:focus-visible {
  outline: 2px solid #e85d04;
  outline-offset: 4px;
  border-radius: 4px;
}

/* Photo Wall - Limit z-index and overflow to prevent overlay of navbar */
.photo-wall {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.photo-tile {
  position: relative;
  z-index: 0;
}

/* Prevent photo-tile hover from covering navbar (z-index: 50) */
.photo-tile:hover {
  z-index: 1 !important;
}

/* CTA Button - Light variant for dark backgrounds */
.btn-light {
  display: inline-flex;
  user-select: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  background-color: #ffffff;
  color: #e85d04;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.btn-light:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* Desktop Quick Navigation - Orange background with light text */
.desktop-quicknav {
  background-color: #e85d04;
  color: #ffffff;
}

.quicknav-cta {
  color: #ffffff;
  text-decoration: none;
}

.quicknav-cta__text {
  color: #ffffff;
  font-weight: 600;
}

.quicknav-cta:hover .quicknav-cta__text {
  color: #f5f5f5;
}

.quicknav-cta__icon {
  color: #ffffff;
  stroke: #ffffff;
}

.quicknav-divider {
  background-color: rgba(255, 255, 255, 0.2);
}

.quicknav-arrows button {
  color: #ffffff;
}

.quicknav-arrows button:hover {
  color: #f5f5f5;
  background-color: rgba(255, 255, 255, 0.1);
}
