.parallax-section {
	background-attachment: fixed !important;
	background-size: cover !important;
}
.bgimage {
	opacity: var(--bg-opacity) !important;
}
#parallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Für Parallax-Bewegung */
    object-fit: cover;
    object-position: center center;
    z-index: -1;
    will-change: transform;
}
.content {
    position: relative;
    z-index: 1;
    width:100%;
}
#home {
    display: flex;
    align-items: center;
    height: 100vh;
    position: relative;
    text-align: right;
    overflow: hidden;
}

.white-color {
	color: #fff;
}
.appicon {
	width:200px;
	height:200px;
}
.headershadow {
	text-shadow: 0px 0px 10px rgba(0, 0, 0, .9);
}
.subheadershadow {
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
}
.section-btn, .kaffee-btn {
	background: #000000;
	border-radius: 50px;
	color: #f0f0f0 !important;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1.5px;
	padding: 18px 32px !important;
	border: 1px solid white;
	text-transform: uppercase;
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
}

.kaffee-btn {

}

.section-btn:focus,
.section-btn:hover {
	background: #ffffff;
	color: #000000 !important;
}

.kaffee-btn:focus,
.kaffee-btn:hover {
	background: #efefef;
	color: #000000 !important;
	border: 1px solid #000;
}
.section-btn a:link, .kaffee-btn a:link, .section-btn a:visited, .kaffee-btn a:visited {
	color: #f0f0f0 !important;
}
.section-btn a:hover, .kaffee-btn a:hover {
	color: #000000 !important;
}
nav a:link {
	height: 30px !important;
}
nav ul li  {
	margin:0px !important;
}
/*---------------------------------------
  Pre loader              
-----------------------------------------*/

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	background: none repeat scroll 0 0 #ffffff;
}

.spinner {
	border: 1px solid transparent;
	border-radius: 5px;
	position: relative;
}

.spinner:before {
	content: '';
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 65px;
	height: 65px;
	margin-top: -10px;
	margin-left: -10px;
	border-radius: 50%;
	border: 2px solid #454545;
	border-top-color: #ffffff;
	animation: spinner .9s linear infinite;
}

@-webkit-@keyframes spinner {
	to {transform: rotate(360deg);}
}

@keyframes spinner {
	to {transform: rotate(360deg);}
}

@media (max-width: 768px) {
    #parallax-img {
        height: 100%; /* Weniger Überhang auf Mobile */
        object-fit: cover; 
    }
}