/* OYROPA LAYOUT & LESBARKEIT FIXES */
/* Generiert von Playwright Audit */

/* ===== HEADER FIXES ===== */
/* Header Links besser lesbar machen */
header a,
nav a,
.navbar a,
.header-nav a {
    color: #FFFFFF !important; /* Weiß für perfekte Lesbarkeit */
    font-weight: 500;
    transition: all 0.3s ease;
}

header a:hover,
nav a:hover,
.navbar a:hover,
.header-nav a:hover {
    color: #D69E2E !important; /* Gold bei Hover */
    text-decoration: none;
    transform: translateY(-1px);
}

/* Header Background sicherstellen */
header, nav, .navbar {
    background-color: #1A365D !important; /* Navy Blue */
    backdrop-filter: none !important;
}

/* ===== FOOTER FIXES ===== */
/* Footer Links besser lesbar machen */
footer a,
.footer a,
.footer-links a {
    color: #FFFFFF !important; /* Weiß statt Navy */
    font-weight: 400;
    opacity: 0.95;
    transition: all 0.3s ease;
}

footer a:hover,
.footer a:hover,
.footer-links a:hover {
    color: #D69E2E !important; /* Gold bei Hover */
    opacity: 1;
    transform: translateX(3px);
}

/* Footer Background sicherstellen */
footer, .footer {
    background-color: #1A365D !important; /* Navy Blue */
    color: #FFFFFF;
    backdrop-filter: none !important;
}

/* Footer Überschriften */
footer h3, footer h4,
.footer h3, .footer h4 {
    color: #D69E2E !important; /* Gold für Überschriften */
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== MOBILE OPTIMIERUNGEN ===== */
@media (max-width: 768px) {
    /* Größere Touch-Targets */
    button,
    a.button,
    .btn,
    .card-button {
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
    }

    /* Bessere Lesbarkeit */
    body {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    p, span, li {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    /* Header Mobile */
    header a, nav a {
        padding: 12px 16px !important;
        display: inline-block;
    }

    /* Footer Mobile */
    footer {
        padding: 30px 15px !important;
    }

    footer a {
        padding: 8px 0;
        display: inline-block;
    }

    /* Keine transparenten Overlays */
    .overlay,
    .backdrop {
        backdrop-filter: none !important;
        background: rgba(26, 54, 93, 0.95) !important;
    }
}

/* ===== KONTRAST VERBESSERUNGEN ===== */
/* Buttons mit besserem Kontrast */
.primary-button,
.cta-button {
    background: linear-gradient(135deg, #D69E2E, #B7791F) !important;
    color: #FFFFFF !important;
    border: none !important;
    font-weight: 600;
}

.primary-button:hover,
.cta-button:hover {
    background: linear-gradient(135deg, #B7791F, #975A1F) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(183, 121, 31, 0.3);
}

/* Cards besser lesbar */
.card,
.service-card {
    background: #FFFFFF !important;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card h3,
.service-card h3 {
    color: #1A365D !important;
    font-weight: 600;
}

.card p,
.service-card p {
    color: #4A5568 !important;
    line-height: 1.6;
}

/* ===== GENERELLE VERBESSERUNGEN ===== */
/* Alle Links ohne Unterstreichung */
a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

/* Bessere Fokus-Zustände */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #D69E2E !important;
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Entferne alle Backdrop-Filter für Performance */
* {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* Print Styles */
@media print {
    header, footer {
        background: #1A365D !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}