:root {
  --bg: #0b0b0b;
  --text: #fff;
  --muted: #b3b3b3;
  --accent: #e04c5e;
  --gold: #c8a857;
  --sidebar-w: 48px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Helvetica, Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  grid-template-rows: 100vh;
}
/* Sidebar bleibt links, startet oben, auch mobil */
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  width: var(--sidebar-w);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 0 18px;
  gap: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.nav a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  line-height: 1;
  padding: 0;
}
.nav a.active {
  color: var(--gold);
}
.nav a:hover {
  opacity: 0.8;
}
.social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.social a {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: #111;
  text-decoration: none;
  font-size: 0;
}

.social a svg {
  color: white; /* Standardfarbe */
  transition: color 0.3s ease;
}

.social a:hover svg {
  color: var(--gold); /* Hover-Effekt */
}
/* Main / Hero */
.main {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero {
  position: relative;
  height: 100%;
}
.slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.copy {
  max-width: min(900px, 85vw);
  margin-left: clamp(16px, 6vw, 96px);
}

/* Links bündig */
.overlay.left {
  justify-content: flex-start;
  text-align: left;
}

/* Rechts bündig */
.overlay.right {
  justify-content: flex-end;
  text-align: right;
}

.overlay.right .copy {
  margin-left: 0;
  margin-right: clamp(16px, 6vw, 96px);
}

.overlay.left .copy {
  margin-left: clamp(16px, 6vw, 96px);
  margin-right: 0;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
h1 {
  margin: 0.4rem 0 0;
  font-size: clamp(2rem, 7vw, 4.6rem);
  line-height: 1.05;
}
h1 .accent {
  color: var(--accent);
}
h1 .gold {
  color: var(--gold);
}
.kicker {
  margin-top: 10px;
  color: var(--muted);
}
/* Controls */
.ctrl {
  position: absolute;
  inset: auto 0 64px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(18px, 4vw, 42px);
  pointer-events: none;
}
.btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  display: flex;
  gap: 10px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
}
.dot.active {
  background: #fff;
}
/* Footer bar */
.footerbar {
  position: absolute;
  left: calc(var(--sidebar-w) + 1px);
  bottom: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  opacity: 0.85;
}
.lang a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.lang a.active {
  color: #fff;
}
/* Mobil: Sidebar bleibt vertikal links (kein Topbar-Umbau) */
@media (max-width: 900px) {
  body {
    grid-template-columns: var(--sidebar-w) 1fr;
    grid-template-rows: 100vh;
  }
  .overlay {
    align-items: flex-end;
    padding-bottom: 120px;
  }
}
