<style>
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html {
    scroll-behavior: smooth;
}
body{
    font-family: "Segoe UI", sans-serif;
    background:
    linear-gradient(
        rgba(8,12,25,0.92),
        rgba(8,12,25,0.97)
    ),
    radial-gradient(
        circle at top,
        #223055,
        #080c19 70%
    );
    color:#f5f5f5;
    line-height:1.8;
}
ul{
    padding-left:0px;
}
li{
    margin-bottom:10px;
}
a,.img-trigger{
    color: #d9b76c;
    text-decoration: none;
    border-bottom: 1px dotted rgba(217,183,108,0.6);
    transition: all 0.3s ease;
}
a:hover,.img-trigger:hover {
    color: #f0d38f;
    border-bottom: 1px solid #f0d38f;
}
.nav-unread-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:20px;
    height:20px;
    margin-left:7px;
    padding:0 6px;
    border-radius:11px;
    background:#d9b76c;
    color:#101522;
    font-size:12px;
    font-weight:700;
    line-height:1;
    vertical-align:middle;
}
.blog-navigation{
    display:flex;
    margin-top:60px;
    padding-top:30px;
    border-top:1px solid rgba(217,183,108,0.25);
}
.blog-next{
    margin-right:auto;
}
.blog-prev{
    margin-left:auto;
}
.container{
    width:90%;
    max-width:1000px;
    margin:auto;
}
.hero{
    text-align:center;
    padding-top:35px;
    padding-bottom:70px;
    padding-left:20px;
    padding-right:20px;
}
.hero h1{
    font-size:2.5rem;
    color:#d9b76c;
    margin-bottom:20px;
    font-weight:300;
}
.hero p{
    font-size:1.4rem;
    color:#d6d6d6;
    max-width:800px;
    margin:auto;
}
.quote{
    font-style:italic;
    color:#d9b76c;
    margin-top:50px;
    font-size:1.5rem;
}
.section{
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:50px;
    margin-bottom:50px;
}
.section h2{
    color:#d9b76c;
    margin-bottom:30px;
    font-size:2rem;
}
.section p{
    margin-bottom:20px;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}
.card{
    background:rgba(255,255,255,0.06);
    border-radius:15px;
    padding:35px;
}
.card h3{
    color:#d9b76c;
    margin-bottom:10px;
}
.price{
    font-size:2rem;
    margin:20px 0;
    color:#ffffff;
}
.cta{
    text-align:center;
    margin-top:50px;
}
.button{
    display:inline-block;
    background:#d9b76c;
    color:#111;
    text-decoration:none;
    padding:18px 40px;
    border-radius:10px;
    font-weight:bold;
    transition:0.3s;
}
.button:hover{
    background:#f0d38f;
    color:#111;
    transform:translateY(-2px);
    box-shadow:
        0 5px 20px rgba(217,183,108,0.3);
}
.footer{
    text-align:center;
    padding:60px 20px;
    color:#999;
}
.bloglink
{
    text-align:center;
 
}
.modal{
display:none;
position:fixed;
z-index:1000;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
}
.modal-content{
background:#111827;
color:white;
max-width:700px;
margin:8% auto;
padding:40px;
border-radius:20px;
position:relative;
box-shadow:0 0 40px rgba(0,0,0,0.6);
max-height:85vh;
overflow-y:auto;
}
.close{
position:absolute;
top:15px;
right:20px;
font-size:34px;
cursor:pointer;
color:#d9b76c;
}
.modal-content::-webkit-scrollbar {
    width:10px;
}
.modal-content::-webkit-scrollbar-track {
    background:#111827;
}
.modal-content::-webkit-scrollbar-thumb {
    background:#d9b76c;
    border-radius:10px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background:#f0d38f;
}
.image-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.85);
    justify-content:center;
    align-items:center;
    z-index:9999;
}
.image-content{
    max-width:90%;
    max-height:90%;
    text-align:center;
    position:relative;
}
.image-content img{
    max-width:100%;
    max-height:80vh;
    border-radius:12px;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.6);
}
#modalCaption{
    margin-top:20px;
    color:#e0e0e0;
    line-height:1.6;
}
.image-close{
    position:absolute;
    top:-15px;
    right:-15px;
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
    border-radius:50%;
    background:#d9b76c;
    color:#0f1728;
    font-size:28px;
    cursor:pointer;
}
.popup-link {
    color: #d9b76c;
    text-decoration: none;
    border-bottom: 1px dotted rgba(217,183,108,0.6);
    transition: all 0.3s ease;
}
.popup-link:hover {
    color: #f0d38f;
    border-bottom: 1px solid #f0d38f;
}
.navbar{
    position:sticky;
    top:0;
    z-index:100;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:5px 40px;
    background:rgba(8,12,25,0.75);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(217,183,108,0.15);
}
.nav-logo{
    color:#d9b76c;
    font-size:1.2rem;
    font-weight:200;
    letter-spacing:1px;
}
.nav-desktop{
	display:flex;
    gap:20px;
    list-style:none;
    list-style:none;
    display:flex;
}
.nav-desktop li{
    margin:0;
}
.nav-desktop a{
    color:#e0e0e0;
    text-decoration:none;
    font-size:1rem;
    position:relative;
    transition:all .3s ease;
}
.mobile-menu{
    position:fixed;
    top:0;
    right:-320px;
    width:300px;
    height:100vh;
    background:#0f1728;
    z-index:9999;
    transition:right 0.3s ease;
    box-shadow:
        -10px 0 30px rgba(0,0,0,0.4);
    overflow-y:auto;
}
.mobile-menu.open{
    right:0;
}
.mobile-header{
    display:flex;
    justify-content:flex-end;
    padding:10px;
}
.close-menu{
    font-size:2rem;
    cursor:pointer;
    color:#d9b76c;
}
.mobile-menu ul{
    list-style:none;
    padding:0;
    margin:0;
}
.mobile-menu li{
    border-bottom:
        1px solid rgba(255,255,255,0.08);
}
.mobile-menu a{
    display:block;
    padding:5px 24px;
    color:#e0e0e0;
    text-decoration:none;
}
.mobile-menu a:hover{
    color:#d9b76c;
}
.mobile-dropdown-menu{
    display:none;
    background:
        rgba(255,255,255,0.03);
}
.mobile-dropdown-menu.open{
    display:block;
}
.mobile-dropdown-menu a{
    padding-left:40px;
    font-size:0.95rem;
}
.menu-toggle{
    display:none;
}
@media (max-width:768px)
{
	 .container{
        width:96%;
    }
    .section{
        padding:22px;
    }
    .hero{
        padding-left:10px;
        padding-right:10px;
    }
    .nav-desktop{
        display:none;
    }
    .menu-toggle{
        display:block;
        font-size:2rem;
        color:#d9b76c;
        cursor:pointer;
    }
}
.menu-backdrop{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    z-index:9998;
}
.menu-backdrop.open{
    display:block;
}
.order-form{
display:flex;
flex-direction:column;
gap:22px;
}
.form-group{
display:flex;
flex-direction:column;
}
.form-group label{
margin-bottom:8px;
font-size:0.95rem;
color:#d9b76c;
}
.form-group input,
.form-group textarea{
padding:14px;
border:none;
border-radius:10px;
background:rgba(255,255,255,0.08);
color:white;
font-size:1rem;
outline:none;
}
.form-group input:focus,
.form-group textarea:focus{
box-shadow:
0 0 0 2px rgba(217,183,108,0.5);
}
textarea::placeholder {
    color: #888;
    opacity: 1;
}
.checkbox{
display:flex;
align-items:flex-start;
gap:12px;
font-size:0.9rem;
line-height:1.5;
}
.checkbox input{
margin-top:4px;
width:18px;
height:18px;
flex-shrink:0;
}
.price-box{
text-align:center;
padding:20px;
margin-bottom:35px;
border-radius:15px;
background:rgba(217,183,108,0.08);
border:1px solid rgba(217,183,108,0.2);
}
.price{
font-size:2rem;
font-weight:bold;
color:#d9b76c;
margin-top:10px;
}
.submit-button{
width:100%;
padding:18px;
border:none;
border-radius:12px;
background:#d9b76c;
color:#111;
font-size:1.1rem;
font-weight:bold;
cursor:pointer;
transition:all .3s ease;
}
.submit-button:hover{
background:#f0d38f;
transform:translateY(-2px);
box-shadow:
0 8px 25px rgba(217,183,108,0.35);
}

.honeypot{
position:absolute;
left:-9999px;
top:-9999px;
}
.dropdown{
    position:relative;
}
.dropdown:hover .dropdown-menu{
display:block;
}
.dropdown-menu li{
    list-style:none;
}
.dropdown-menu a{
	border-left:3px solid transparent;
    display:block;
    padding:6px 12px;
    color:#e0e0e0;
    text-decoration:none;
}
.dropdown-menu a:hover{
	border-left:3px solid #d9b76c;
    background:none;
    color:#d9b76c;
    text-shadow:
        0 0 8px rgba(217,183,108,0.5);
}
.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:250px;
    max-height:70vh;      /* oder 80vh */
    overflow-y:auto;
    z-index:999;
    background:#0f1728;
    border-radius:12px;
    box-shadow:
        0 15px 35px rgba(0,0,0,0.45);
}
.dropdown-menu::-webkit-scrollbar{
    width:8px;
}
.dropdown-menu::-webkit-scrollbar-thumb{
    background:#d9b76c;
    border-radius:8px;
}
.dropdown-menu::-webkit-scrollbar-track{
    background:#0f1728;
}
/* Gemeinsame Abstände */
.ki-chat-message-actions{
display:flex;
align-items:center;
gap:7px;
margin-top:8px;
}
.ki-chat-copy-button{
position:relative;
display:block;
width:28px;
height:28px;
margin-top:0;
padding:0;
border:1px solid rgba(217,183,108,0.4);
border-radius:6px;
background:transparent;
color:#d9b76c;
cursor:pointer;
opacity:.65;
transition:
opacity .2s ease,
background .2s ease,
border-color .2s ease;
}
.ki-chat-copy-button::before,
.ki-chat-copy-button::after{
content:"";
position:absolute;
width:9px;
height:11px;
border:1px solid currentColor;
border-radius:2px;
}
.ki-chat-copy-button::before{
left:8px;
top:7px;
}
.ki-chat-copy-button::after{
left:11px;
top:10px;
background:inherit;
}
.ki-chat-copy-button:hover,
.ki-chat-copy-button:focus-visible{
opacity:1;
border-color:#d9b76c;
background:rgba(217,183,108,0.08);
outline:none;
}
.ki-chat-copy-button.is-copied{
opacity:1;
background:rgba(217,183,108,0.14);
}
.ki-chat-copy-button.is-copied::before{
content:"✓";
left:0;
top:2px;
width:100%;
height:auto;
border:0;
font-size:17px;
line-height:22px;
text-align:center;
}
.ki-chat-copy-button.is-copied::after{
display:none;
}
.ki-chat-repair-button{
display:flex;
align-items:center;
justify-content:center;
width:28px;
height:28px;
margin:0;
padding:0;
border:1px solid rgba(217,183,108,0.4);
border-radius:6px;
background:transparent;
color:#d9b76c;
font-size:18px;
line-height:1;
cursor:pointer;
opacity:.65;
transition:
opacity .2s ease,
background .2s ease,
border-color .2s ease;
}
.ki-chat-repair-button:hover,
.ki-chat-repair-button:focus-visible{
opacity:1;
border-color:#d9b76c;
background:rgba(217,183,108,0.08);
outline:none;
}
.ki-chat-repair-button:disabled{
cursor:default;
}
.ki-chat-repair-button.is-repaired{
opacity:1;
background:rgba(217,183,108,0.14);
}

.chat-ai,
.chat-user,
.reflection,
.quote-box{
    margin-top:30px;
    margin-bottom:30px;
}
/* KI links */
.chat-ai{
    max-width:75%;
    margin-left:auto;
    padding:6px;
    border-radius:20px;
    background:rgba(255,255,255,0.04);
    border-right:4px solid #d9b76c;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.25);
}
.chat-ai p{
    margin:0 0 10px 0;
    line-height:1;
}
/* Mirko rechts */
.chat-user{
    max-width:75%;
	margin-right:auto;
    padding:6px;
    border-radius:20px;
    background:rgba(217,183,108,0.08);
    border-left:4px solid #d9b76c;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.25);
}
.chat-user p{
    margin:0 0 10px 0;
    line-height:1;
}
/* Gedanke mittig */
.reflection{
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
    padding:10px;
    text-align:center;
    border-radius:25px;
    border:1px solid rgba(217,183,108,0.5);
    background:
        rgba(217,183,108,0.05);
    font-style:italic;
    color:#f0e6c8;
}
.reflection p{
    margin:0;
    line-height:1;
}
/* Zitat */
.quote-box{
    max-width:800px;
    margin-left:auto;
    margin-right:auto;
    padding:40px;
    text-align:center;
    font-size:1.3rem;
    line-height:1.8;
    border-top:
        1px solid #d9b76c;
    border-bottom:
        1px solid #d9b76c;
    color:#d9b76c;
}
.quote-box p{
    margin:0;
}
/* Titel */
.dialog-title{
    text-align:center;
    margin-top:70px;
    margin-bottom:50px;
    font-size:2.3rem;
    color:#d9b76c;
    font-weight:300;
    letter-spacing:1px;
}
.dialog-title::after{
    content:"";
    display:block;
    width:80px;
    height:1px;
    background:#d9b76c;
    margin:20px auto 0 auto;
}
.fold{
    margin:25px 0;
	border:1px solid rgba(217,183,108,.4);
    border-radius:18px;
    background:rgba(217,183,108,.05);
    overflow:hidden;
}
.fold-header{
	padding:14px 18px;
    cursor:pointer;
    font-style:italic;
    color:#d9b76c;
    cursor:pointer;
    font-style:italic;
    color:#d9b76c;
    transition:.25s;
}
.fold-header:hover{
    background:
        rgba(217,183,108,.12);
}
.fold-content{
    display:none;
    padding:0 18px 18px 18px;
}
.fold.open .fold-content{
    display:block;
}
.arrow{
    display:inline-block;
    width:18px;
    font-weight:bold;
}

.ortssuche
{
    position: relative;
}

.ortsvorschlaege
{
    position: absolute;
    z-index: 1000;
    top: 100%;
    left: 0;
    right: 0;

    max-height: 260px;
    overflow-y: auto;

    background: white;
    border: 1px solid #aaa;
}

.ortsvorschlaege[hidden]
{
    display: none !important;
}

.ortsvorschlag
{
    padding: 8px 10px;
    cursor: pointer;
	    color: #222;
}

.ortsvorschlag:hover,
.ortsvorschlag.aktiv
{
    background: #eeeeee;
}

.ort-name
{
    font-weight: bold;
    color: #222;
}

.ort-zusatz
{
    color: #666;
    font-size: 0.9em;
}
</style>
