@charset "utf-8";
/* CSS Document */

/* Grundlayout */
body {
.sidebar {
font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
background: #f5f5f5;
color: #222;
	line-height: 1.6;
}

/* Sidebar */
.sidebar {
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: 240px;
padding: 40px 30px;
	overflow-y: auto;
	scroll-behavior: smooth;
	z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* für Safari */
    background: rgba(255, 255, 255, 0.35); /* leichte Transparenz */
}

.sidebar .logo-text {
    font-weight: 700 !important;
  text-decoration: none; 
}


/* Sidebar */
.sidebar::-webkit-scrollbar {
width: 6px;
}

/* Sidebar */
.sidebar::-webkit-scrollbar-thumb {
background: rgba(0,0,0,0.2);
	border-radius: 3px;
	width: 6px;
}

/* Logo */
.logo {
display: flex;
align-items: flex-end;
  text-decoration: none;
}

.logo-mark {
font-size: 28px;
margin-right: 10px;
text-decoration: none; 
}

.logo-text {
font-size: 16px;
color: #333;
  text-decoration: none; 
}


/* Navigation */
.nav {
list-style: none;
}

/* Sections (Core, Wrap etc.) */
.section {
font-size: 16px;
color: #888;
margin-top: 20px;
margin-bottom: 8px;
}

/* Links */
.nav li a {
display: block;
font-size: 16px;
color: #000;
text-decoration: none;
margin-bottom: 14px;
transition: color 0.2s ease;
	letter-spacing: 0.2px;
		font-weight: 700;
}

/* Hover */
.nav li a:hover {
color: #000;
}

/* Aktiver Link (sehr subtil wie im Screenshot) */
.nav li a.active {
color: #000;
text-decoration: underline;
text-underline-offset: 3px;
}

/* Content */
.content {
margin-left: 0;
padding: 0;
}

/* Fullwidth image */
.fullwidth {
width: 100%;
}

/* Fullwidth image */
.fullwidth img {
width: 100%;
	height: auto;
	display: block;
}

/* Textabstand */
.inner {
margin-left: 260px;
padding: 60px;
	max-width: 1000px;
}


/* Bild-Stack */
.image-stack {
width: 100%;
	display: flex; 
	flex-direction: column;
gap: 0px;
}

/* Bilder */
.image-stack img {
width: 100%;
	height: auto; 
	display: block;
}

/* bessere Lesbarkeit */
.main {display: block}

/* verhindert horizontales Scrollen */
.body {
overflow-x: hidden; 
}

/* Info Box */
.image-block{
	display: block;
	width: 100%;
	z-index: 0;
	position: relative;
}

/* Bild */
.image-block img {
	display: block;
	width: 100%;
	z-index: 0;
}

/* Info Button */
.info-trigger {
position: absolute;
	top: 20px;
	right: 20px;
	width: 24px;
	height: 24px;
	background: rgba(0,0,0,0.4);
	color: #fff;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
}

/* Info Box */
.info-box {
	display: none;
position: absolute;
	top: 60px; 
	right: 20px; 
	width: 480px; 
	background: #eee;
	padding: 20px;
	
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

/* aktiv */
.image-block.active .info-box {
	display: block;
opacity: 1;
	pointer-events: auto;
}

/* Vita */
.vita-layout {
display: flex;
	gap: 80px;
	align-items: flex-start;
}

.vita-text {
flex: 1;
	column-count: 1;
	column-gap: 40px;
}

.vita-image {
flex: 1;
	max-width: 300px;
}

.vita-image img {
width: 100%;
	height: auto;
}

/* Wrapper */
.hover-item {
	position: relative;
}

.hover-image {
	position: absolute;
	z-index: 9999;
	top: 0;
	left: 300px;
	width: 420px;
	background: #ffff;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

/* Hover Bild */
.hover-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Hover sichtbar */
.hover-item:hover .hover-image {
	opacity: 1;
}
@media (max-width: 768px) {
	
	.sidebar {
	position: relative; 
width: 100%; 
height: auto; 
padding: 20px;
}

.content {
	margin-left: 0; 
	height: auto;
	}
	.hero {
		height: auto;
		}
	}