/* Praxis Sobel Slider - Basis & Container */
.pss-hero-container {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.pss-hero-container .pss-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: visibility 0s 1.2s;
	z-index: 1;
}

.pss-hero-container .pss-slide.active {
	opacity: 1;
	visibility: visible;
	transition: visibility 0s 0s;
	z-index: 5;
}

.pss-hero-container .pss-slide.prev {
	z-index: 2;
	opacity: 1;
	visibility: visible;
}

.pss-slide-bg-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.pss-hero-container .pss-slide.active .pss-slide-bg-wrapper {
	clip-path: inset(0 0 0 0);
}

.pss-slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transform: scale(1.1);
	transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.pss-slide-bg.pss-no-image {
	background-color: #2a2a2a;
}

.pss-hero-container .pss-slide.active .pss-slide-bg {
	transform: scale(1);
}

.pss-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(15,20,15,0.85) 0%, rgba(15,20,15,0.4) 60%, rgba(0,0,0,0) 100%);
}

.pss-reveal-mask {
	overflow: hidden;
	display: inline-block;
	vertical-align: top;
}

.pss-reveal-text {
	display: inline-block;
	transform: translateY(100%);
	opacity: 0;
	transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.pss-hero-container .pss-slide.active .pss-reveal-text {
	transform: translateY(0);
	opacity: 1;
}

.pss-hero-container .pss-slide.active .pss-delay-1 { transition-delay: 0.6s; }
.pss-hero-container .pss-slide.active .pss-delay-2 { transition-delay: 0.75s; }
.pss-hero-container .pss-slide.active .pss-delay-3 { transition-delay: 0.9s; }
.pss-hero-container .pss-slide.active .pss-delay-4 { transition-delay: 1.05s; }

.pss-deco-line {
	width: 0;
	height: 2px;
	background-color: #E8E3D9;
	transition: width 1s cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
	opacity: 0.7;
}

.pss-hero-container .pss-slide.active .pss-deco-line {
	width: 80px;
}

.pss-btn-elegant {
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease 1.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s;
}

.pss-hero-container .pss-slide.active .pss-btn-elegant {
	opacity: 1;
	transform: translateY(0);
}

.pss-btn-elegant::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	transition: left 0.4s ease;
}

.pss-btn-elegant:hover::before {
	left: 0;
}

.pss-slider-controls {
	z-index: 20;
}

.pss-nav-btn {
	backdrop-filter: blur(4px);
	transition: all 0.3s ease;
}

.pss-nav-btn:hover {
	background-color: rgba(232, 227, 217, 0.15);
	transform: scale(1.05);
}

.pss-progress-bar-container {
	width: 100%;
	height: 3px;
	background: rgba(232, 227, 217, 0.15);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 20;
}

.pss-progress-bar {
	height: 100%;
	background: #E8E3D9;
	width: 0%;
	transform-origin: left;
}

.pss-progress-bar.animate {
	animation: pss-progress 7s linear forwards;
}

@keyframes pss-progress {
	0% { width: 0%; }
	100% { width: 100%; }
}

.pss-pagination-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(232, 227, 217, 0.3);
	transition: all 0.4s ease;
	cursor: pointer;
}

.pss-pagination-dot.active {
	background: #E8E3D9;
	transform: scale(1.5);
	box-shadow: 0 0 10px rgba(232, 227, 217, 0.4);
}

/* Schrift & Basis wie index.html: font-sans = Plus Jakarta Sans, font-serif = Playfair Display */
.pss-hero-container {
	font-family: "Plus Jakarta Sans", sans-serif;
	color: #E8E3D9;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Layout exakt wie index.html: absolute inset-0 flex items-center z-10 + container mx-auto px-6 md:px-12 lg:px-24 + max-w-2xl */
.pss-slide-content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	z-index: 10;
}

.pss-slide-inner {
	width: 100%;
	max-width: 42rem; /* max-w-2xl */
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;   /* px-6 */
	padding-right: 1.5rem;
}

@media (min-width: 768px) {
	.pss-slide-inner { padding-left: 3rem; padding-right: 3rem; } /* md:px-12 */
}

@media (min-width: 1024px) {
	.pss-slide-inner { padding-left: 6rem; padding-right: 6rem; } /* lg:px-24 */
}

/* deco-line mb-6 = 1.5rem Abstand nach unten */
.pss-deco-line-wrap { margin-bottom: 1.5rem; }

/* h1: text-5xl md:text-7xl font-serif leading-tight mb-4 text-white | Titelzeile 2: italic text-sobel-sand/90 */
.pss-slide-title {
	font-family: "Playfair Display", serif;
	font-size: 3rem;        /* text-5xl */
	line-height: 1.25;     /* leading-tight */
	margin-bottom: 1rem;   /* mb-4 */
	margin-top: 0;
	color: #fff;
}

@media (min-width: 768px) {
	.pss-slide-title { font-size: 4.5rem; } /* md:text-7xl = 4.5rem */
}

.pss-slide-title .pss-italic {
	font-style: italic;
	color: rgba(232, 227, 217, 0.9); /* text-sobel-sand/90 */
}

/* p: text-lg md:text-xl font-light mb-10 leading-relaxed text-sobel-sand/90 */
.pss-slide-subtitle {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 1.125rem;   /* text-lg */
	font-weight: 300;      /* font-light */
	line-height: 1.625;    /* leading-relaxed */
	margin-bottom: 2.5rem; /* mb-10 */
	margin-top: 0;
	color: rgba(232, 227, 217, 0.9);
}

@media (min-width: 768px) {
	.pss-slide-subtitle { font-size: 1.25rem; } /* md:text-xl */
}

/* Button: inline-flex gap-2 border border-sobel-sand/50 px-8 py-4 rounded-full text-sm tracking-wider uppercase */
.pss-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;          /* gap-2 */
	padding: 1rem 2rem;   /* py-4 px-8 */
	border-radius: 9999px;
	font-size: 0.875rem;  /* text-sm */
	font-family: "Plus Jakarta Sans", sans-serif;
	letter-spacing: 0.05em; /* tracking-wider */
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.3s, background-color 0.3s, border-color 0.3s;
	border: 1px solid rgba(232, 227, 217, 0.5);
	color: #E8E3D9;
	background: transparent;
}

.pss-btn:hover {
	background: #E8E3D9;
	color: #1A1A1A;
}

.pss-btn.pss-btn-filled {
	background: #E8E3D9;
	color: #1A1A1A;
	border-color: #E8E3D9;
}

.pss-btn.pss-btn-filled:hover {
	background: transparent;
	color: #E8E3D9;
}

/* Controls: absolute bottom-12 left-0 w-full flex justify-between items-center px-6 md:px-12 lg:px-24 */
.pss-controls-wrap {
	position: absolute;
	bottom: 3rem;         /* bottom-12 */
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

@media (min-width: 768px) {
	.pss-controls-wrap { padding-left: 3rem; padding-right: 3rem; }
}

@media (min-width: 1024px) {
	.pss-controls-wrap { padding-left: 6rem; padding-right: 6rem; }
}

.pss-pagination {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.pss-nav-buttons {
	display: flex;
	gap: 1rem;
}

/* nav-btn: w-12 h-12 rounded-full border border-sobel-sand/30 flex items-center justify-center text-sobel-sand */
.pss-nav-btn {
	width: 3rem;   /* w-12 */
	height: 3rem;  /* h-12 */
	border-radius: 9999px;
	border: 1px solid rgba(232, 227, 217, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #E8E3D9;
	background: transparent;
	cursor: pointer;
}

.pss-nav-btn:hover { color: #fff; }

/* Icon-Größen wie index.html (w-4 h-4 im Button, w-5 h-5 in Nav) */
.pss-btn [data-lucide],
.pss-btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.pss-nav-btn [data-lucide],
.pss-nav-btn svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
