 /*================================================
* Template Name: Park4-Holiday
* Version: 1.0
===================================================*/

.my_hero_wrapper {
	position: relative;
	width: 100%;
	height: 450px;
	overflow: hidden;
}

/* SLIDER */
.simple-slider {
	position: absolute;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

/* Aktives Bild */
.slide.active {
	opacity: 1;
}

/* FORMULAR */
.booking-overlay {
	position: absolute;
	top: 50px;
	right: 50px;
	z-index: 10;
	width: 340px;
}

/* 📱 MOBILE OPTIMIERUNG */
@media (max-width: 768px) {

	.my_hero_wrapper {
		height: auto; /* wichtig → wächst mit Inhalt */
	}

	.simple-slider {
		position: relative;
		height: 250px; /* kleinere Höhe für Handy */
	}

	.booking-overlay {
		position: relative;
		top: auto;
		right: auto;
		width: 100%;
		margin-top: 15px;
		padding: 0 15px;
	}
}	
