/* ==========================================================================
   PRESANT - LOKALE ASSISTENZ & ALLTAGSHILFE STYLES
   ========================================================================== */
:root {
    --bg-body: #fbfbf9;
    --bg-surface: #ffffff;
    --text-main: #1c2d27;
    --text-muted: #52665e;
    --border-color: #e2e8f0;
    
    /* Presant Brand Colors (Warmes Smaragdgrün / Vertrauen & Natur) */
    --primary: #065f46;       /* Tiefes Grün / Vertrauen */
    --accent: #059669;        /* Frisches Smaragdgrün / Aktion */
    --accent-light: #ecfdf5;  /* Soft Green BG */
    --accent-border: #a7f3d0;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08);
    --radius-lg: 16px;
    --radius-md: 10px;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
}

/* HEADER & NAVIGATION */
header {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent);
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--accent);
}

.btn-header {
    background-color: var(--accent);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.btn-header:hover {
    background-color: #047857;
}

/* HERO SECTION WITH PLZ SEARCH */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.badge-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    background-color: var(--accent-light);
    border: 1px solid var(--accent-border);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero h1 span.highlight {
    color: var(--accent);
}

.hero p.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.plz-box {
    background: var(--bg-surface);
    border: 2px solid var(--accent-border);
    padding: 6px 6px 6px 20px;
    border-radius: 40px;
    display: flex;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.plz-box input {
    background: transparent;
    border: none;
    padding: 12px;
    color: var(--text-main);
    flex-grow: 1;
    outline: none;
    font-size: 1rem;
}

.plz-box button {
    background-color: var(--accent);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.plz-box button:hover {
    background-color: #047857;
}

/* MAIN CONTENT */
.container {
    max-width: var(--max-width);
    margin: 50px auto 80px;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* RECHTLICHE SEITEN (IMPRESSUM / DATENSCHUTZ) */
.legal-container {
    max-width: 800px;
    margin: 60px auto 100px;
    padding: 0 20px;
}

.legal-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.legal-card h1 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.legal-card h2 {
    font-size: 1.25rem;
    margin: 28px 0 12px;
    color: var(--text-main);
}

.legal-card p, .legal-card ul {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-card ul {
    padding-left: 20px;
}

/* FOOTER */
footer {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .header-container { flex-direction: column; gap: 15px; }
}
