

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



.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 */



/* Global Olive Background */


/* Einheitliche Schriftfarbe (alles Gelb) */
body, p, li, span, div, h1, h2, h3, h4, h5, h6, a {
    color: #E6C65C !important;
}

/* Größere Textbalken */
.card p,
.intro-section p,
.container p {
    font-size: 1.18rem;
    line-height: 1.85;
}

/* Überschriften größer */
h1 { font-size: 2.3rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.5rem; }


/* ===============================
   ULTRA REFINED LUXURY VERSION
   =============================== */

/* Refined Olive Background (better contrast) */
body {
    background-color: #7F8768;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.02em;
}

/* Global Text Color */
body, p, li, span, div, h1, h2, h3, h4, h5, h6, a {
    color: #E6C65C !important;
}

/* Typography Refinement */
p {
    font-size: 1.2rem;
    line-height: 1.95;
    margin-bottom: 1.4rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

h3 {
    font-size: 1.6rem;
}

/* Luxury spacing */
.container,
.card,
.intro-section {
    padding: 3rem 3.5rem;
    margin: 3.5rem auto;
    border-radius: 14px;
}

/* Softer card background for depth */
.card,
.intro-section {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
}

/* Navigation spacing */
.navbar a {
    padding: 0.8rem 1.2rem;
    font-size: 1.05rem;
}

/* Smooth hover */
a:hover {
    color: #F2D97A !important;
    transition: all 0.25s ease;
}

/* Mobile refinement */
@media (max-width: 768px) {
    .container,
    .card,
    .intro-section {
        padding: 2rem;
        margin: 2rem 1rem;
    }
}



/* ===============================
   HEADER LOGO OPTIMIERUNG
   =============================== */

header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    overflow: visible;
}



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



/* ===============================
   FINAL LOGO REFINEMENT
   =============================== */



/* Extra safe spacing */
header {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

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



/* ===============================
   FULL LOGO VISIBILITY FIX
   =============================== */

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 1rem;
    background: transparent;
}

header img {
    max-width: 360px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    header img {
        max-width: 240px;
    }
}







/* ===============================
   CLEAN TOP NAVIGATION
   =============================== */

.navbar {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    padding: 1.4rem 1rem;
    background: rgba(0,0,0,0.08);
}

/* Navigation buttons */
.navbar a {
    padding: 0.6rem 1.1rem;
    font-size: 1.05rem;
}

/* ===============================
   LOGO REFINED & FULLY VISIBLE
   =============================== */

header {
    padding: 2.2rem 1rem;
    text-align: center;
}

header img {
    max-width: 240px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* ===============================
   MOBILE OPTIMIZATION
   =============================== */

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 0.5rem;
    }

    .navbar a {
        width: 94%;
        text-align: center;
        padding: 1rem;
        font-size: 1.08rem;
        border-radius: 14px;
        background: rgba(255,255,255,0.08);
    }

    header img {
        max-width: 170px;
    }
}

