<style>

body {
    margin: 0;
    font-family: "Quicksand", sans-serif;
    background: #fafafa;
    color: #333;
}

/* ===== Sidebar ===== */
.seitenleiste {
	top: 0px;
	left: 0px;
    position: fixed;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(112, 112, 112, 0.7);
    padding: 25px 20px;
    box-sizing: border-box;
    box-shadow: 2px 0 10px rgba(0,0,0,0.4);
    font-family: "Quicksand", sans-serif;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {display: none;}
}

/* Logo */
.logo-item img {
    width: 100%;
    max-width: 220px;
    margin-bottom: 20px;
}

/* Telefonnummer */
.telefon {
    display: block;
    color: #ead5e0;
    font-size: 1.6em;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Menü */
.menu-item, .menu-akv {
    margin: 10px 0;
    padding: 10px;
    font-size: 1.5em;
    border-radius: 8px;
    transition: 0.2s;

}

.menu-item a {
    text-decoration: none;
    color: #ffffff;
    display: block;
}

.menu-item:hover {
    background: #303030;
    font-family: "Quicksand", sans-serif;
}

.menu-akv {
    background: #ff4da6;
    color: white;
    font-family: "Quicksand", sans-serif;
}

/* ===== Main ===== */
#main {
    margin-left: 250px;
}

/* Headline */
#head1 h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-family: "Quicksand", sans-serif;
    color: #ff4da6;
    text-align: center;
}

/* Slideshow */
#slideshow {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
}

/* Alle Bilder übereinander legen */
#slideshow img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Nur aktives Bild sichtbar */
#slideshow img.active {
    opacity: 1;
    position: relative;
}

/* Content Box */
#inhalt {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ===== Burger ===== */
.burger {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    font-size: 28px;
    cursor: pointer;
    color: white;
    z-index: 1001;
    background: #717171;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* ===== Mobile Logo ===== */
.mobile-logo {
    display: none;
    text-align: center;
    margin-bottom: 15px;
}

.mobile-logo img {
    max-width: 300px;
}

/* ===== Call Button Mobile ===== */
.call-button {
    display: none;
}

#cookie-banner {
	    position: fixed;
	    bottom: 0;
	    left: 0px;
	    width: 100%;
	    background: #3a3a3a;
	    color: #ffffff;
	    padding: 5px;
	    z-index: 9999;
	    font-family: "Quicksand", sans-serif;
	    box-shadow: 0 -2px 10px rgba(0,0,0,0.25);
	}
.cookie-content{
    max-width:900px;
    margin:0 auto;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
}

.cookie-text{
    max-width:600px;
    font-size:14px;
}

.cookie-text a{
    color:#ff4fa3;
    text-decoration:none;
}

.cookie-buttons{
    margin-top:10px;
}

#cookie-accept,
#cookie-decline{
    border:none;
    padding:10px 18px;
    margin-left:8px;
    border-radius:4px;
    cursor:pointer;
    font-family:"Quicksand", sans-serif;
}

#cookie-accept{
    background:#ff4fa3;
    color:#fff;
}

#cookie-decline{
    background:#777;
    color:#fff;
}

#cookie-accept:hover{
    opacity:0.9;
}


p {
    font-size: 20px;
}

a,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

    .burger {
        display: block;
    }

    .seitenleiste {
        left: -260px;
        top: 0;
        width: 240px;
        transition: 0.3s;
        z-index: 1000;
        background: rgba(135, 135, 135, 0.85);
    }

    .seitenleiste.active {
		padding-top: 70px;
        left: 0;
        font-size: 1.8em;
        width: 100%;
    }

    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
    }

    #main {
        margin-left: 0;
        padding: 20px 15px;
    }

    #head1 h1 {
        font-size: 1.6rem;
        text-align: center;
        font-family: "Quicksand", sans-serif;
    }

    #inhalt {
        padding: 18px;
    }

    .call-button {
        display: block;
        position: fixed;
        bottom: 15px;
        left: 15px;
        right: 15px;
        background: #ff4da6;
        color: white;
        text-align: center;
        padding: 15px;
        border-radius: 12px;
        font-size: 1.7rem;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        z-index: 1000;
        font-family: "Quicksand", sans-serif;
    }
	
	.cookie-text {
	    font-size: 16px;
	    line-height: 1.5;
	    width: 94%
	}
	
	.cookie-buttons {
	    width: 94%;
	    margin-top: 15px;
	}
	
	#cookie-accept,
	#cookie-decline {
	    width: 100%;
	    padding: 14px;
	    margin: 8px 0;
	    font-size: 16px;
	    border-radius: 10px;
	}
	
	/* Buttons optisch stärker */
	#cookie-accept {
	    background: #ff4da6;
	}
	
	#cookie-decline {
	    background: #555;
	}

	#cookie-banner {
	    position: fixed;
	    bottom: 0;
	    left: 0;
	    background: #3a3a3a;
	    color: #ffffff;
	    padding: 18px;
	    z-index: 9999;
	    font-family: "Quicksand", sans-serif;
	    box-shadow: 0 -2px 10px rgba(0,0,0,0.25);
	}
}

/* Standard: Desktop */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block;
}

/* Mobile */
@media (max-width: 768px) {

    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none;
    }

}

</style>