

.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;
}


/* Zentrierter Footer */
.footer-center {
    text-align: center;
    margin-top: 3rem;
}


/* Zweites Feld Startseite – Eröffnung */
.intro-section {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: center;
    margin: 4rem auto;
    max-width: 1100px;
    padding: 2.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
}

.intro-text h2 {
    margin-top: 0;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
    .intro-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
}




/* Schriftfarbe auf dunklen Bereichen */
header,
.navbar,
.footer {
    color: #E6C65C;
}

header a,
.navbar a,
.footer a {
    color: #E6C65C;
}


/* --- Finaler Feinschliff --- */

/* Überschriften auf dunklem Hintergrund etwas ruhiger */
header h1, header h2, .navbar a {
    letter-spacing: 0.04em;
}

/* Gelbe Akzente minimal abdunkeln bei Hover */
a:hover {
    color: #D8B84E;
}

/* Buttons noch ruhiger */
button:hover, .btn:hover {
    transform: translateY(-1px);
}

/* Print-Version */
@media print {
    
    header, nav, footer {
        display: none;
    }
}


/* Gelber Claim & Aktuelles-Text */
.claim,
.claim p,
.aktuelles p {
    color: #E6C65C;
}





/* ===============================
   Luxus-Farbvariante
   =============================== */

/* Fließtext */
body, p, li, span, div {
    color: #F5F4EE;
}

/* Überschriften & Akzente */
h1, h2, h3, h4, h5, h6,
.claim,
.navbar a,
footer strong {
    color: #E6C65C;
}

/* Links */
a {
    color: #E6C65C;
}

a:hover {
    color: #D8B84E;
}

/* Cards leicht heller für Luxus-Kontrast */
.card, .intro-section {
    background: rgba(255,255,255,0.06);
}


/* Global Olive Green Background */
body {
    background-color: #8A9274;
}
