/*
Theme Name: Gleichfeld Premium
Theme URI: https://www.gleichfeld.com/
Author: Baltic AdWise OÜ
Author URI: https://balticadwise.com/
Description: Maßgeschneidertes Premium WordPress Theme für Gleichfeld Gebäudereinigung & -service GmbH (Berlin). Modern Retro Design, Mobile First, interaktiver Bedarfs-Check und DSGVO-konforme Karriere-Karte.
Version: 1.6.2
License: Proprietary
Text Domain: gleichfeld
*/

:root {
    --color-primary: #1A2B48; /* Deep Navy */
    --color-accent: #00AEEF;  /* Electric Cyan */
    --color-bg-card: #F4F7F9; /* Soft Slate */
    --color-text-main: #334155;
    --color-white: #FFFFFF;
    --font-heading: 'Outfit', 'Montserrat', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-soft: 0 4px 6px -1px rgba(26, 43, 72, 0.06), 0 2px 4px -2px rgba(26, 43, 72, 0.04);
    --shadow-hover: 0 10px 15px -3px rgba(26, 43, 72, 0.1), 0 4px 6px -2px rgba(26, 43, 72, 0.05);
    --radius-md: 12px;
    --radius-lg: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
}

.service-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.heritage-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 174, 239, 0.3);
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .mobile-sticky-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 64px;
        background: var(--color-primary);
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }
}
