body {
    margin:0;
    font-family:Arial, sans-serif;
    background:#1e2623;
    color:#f2d675;
}

.hero {
    position:relative;
    height:220px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.pulse-bg {
    position:absolute;
    width:140%;
    height:140%;
    background:radial-gradient(circle, rgba(184,80,78,0.35), transparent 70%);
    animation:pulse 5s ease-out forwards;
}

@keyframes pulse {
    from { transform:scale(0.7); opacity:1; }
    to { transform:scale(1.2); opacity:0; }
}

.logo { max-width:260px; z-index:2; }

.navbar {
    display:flex;
    justify-content:center;
    gap:30px;
    padding:18px;
    background:#2c3b35;
}

.nav-item {
    color:#f2d675;
    text-decoration:none;
    position:relative;
}

.nav-item::after {
    content:'';
    position:absolute;
    bottom:-5px;
    left:0;
    width:100%;
    height:3px;
    background:#f2d675;
    opacity:0;
}

.nav-item:hover::after { opacity:1; }

.container {
    max-width:900px;
    margin:auto;
    padding:40px;
}

.card {
    background:#2c3b35;
    padding:25px;
    border-radius:10px;
    border-left:5px solid #b8504e;
}






@media (max-width: 768px) {
    body.home::before {
        background-size: 180%;
        background-position: center;
        opacity: 0.45;
    }
}


/* Link-Farbe pixelgenau nach Logo */
a {
    color: rgb(184, 80, 78);
    text-decoration: none;
}

a:hover {
    color: rgb(200, 95, 92);
    text-decoration: underline;
}


/* Minimal Button Animation – medizinisch ruhig */
.navbar a,
button,
.btn {
    transition: 
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.navbar a:hover,
button:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.navbar a:active,
button:active,
.btn:active {
    transform: translateY(0);
    box-shadow: none;
}
