@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Nunito',sans-serif;background:#fffaf0;color:#333;}
header{
    background: linear-gradient(135deg, #ff85a1 0%, #ffb347 100%);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 4px 15px rgba(255, 131, 161, 0.2);
    border-bottom: 4px solid #88d9a0;
}
.logo {
    height: 100px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(255, 131, 161, 0.3));
    margin: 10px 20px;
    border-radius: 12px;
}
.logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 12px rgba(255, 131, 161, 0.5));
}
nav a{margin:10px;color:white;text-decoration:none;font-weight:700;}
button{
    padding:12px 25px;
    border:none;
    border-radius:30px;
    cursor:pointer;
    font-weight:700;
    margin:5px;
}
.pastell-rosa{background:#ff85a1;color:white;}
.pastell-gelb{background:#ffb347;color:white;}
.pastell-gruen{background:#88d9a0;color:#333;}
.input{
    padding:12px;
    border:2px solid #ff85a1;
    border-radius:12px;
    width:100%;
    margin:8px 0;
    font-size:16px;
}
.container{
    max-width:1200px;
    margin:0 auto;
    padding:20px;
}
footer{
    background:#333;
    color:white;
    text-align:center;
    padding:20px;
    position:fixed;
    bottom:0;
    width:100%;
}
footer a{
    color:#88d9a0;
    margin:0 15px;
    text-decoration:none;
}
#ergebnisse {
    position: relative;
    z-index: 1000;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: white;
    border-radius: 12px;
    margin: 8px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s;
}

.autocomplete-item:hover {
    background: #fff0f4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,133,161,0.2);
}