/*
Theme Name: Mein Business Pro 2026
Author: Lolo
Description: Professionelles Theme für Makler, Bauphysik und Drohnenvermessung.
Version: 1.4
*/

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; margin: 0; color: #333; background: #fdfdfd; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header & Logo */
header { background: #fff; border-bottom: 1px solid #eee; padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { max-height: 60px; width: auto; }
nav ul { list-style: none; display: flex; gap: 25px; margin: 0; }
nav a { text-decoration: none; color: #004a7c; font-weight: bold; }

/* Hero Bereich mit Bild-Support */
.hero { 
    position: relative; 
    min-height: 450px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white; 
    background-color: #004a7c; /* Fallback Farbe */
    background-size: cover; 
    background-position: center;
}
.hero::before { 
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0, 0, 0, 0.4); /* Dunkler Schleier für Lesbarkeit */
    z-index: 1; 
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: 3rem; margin: 0; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }

/* Service Grids auf der Startseite */
.grid-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 60px 0; }
.service-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: 0.3s; text-align: center; border: 1px solid #eee; }
.service-card:hover { transform: translateY(-5px); }
.card-image { height: 220px; background-size: cover; background-position: center; }
.card-body { padding: 25px; }
.btn { display: inline-block; background: #004a7c; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin-top: 15px; }

/* Unterseiten Layout */
.content-area { padding: 60px 0; }

footer { background: #111; color: #ccc; padding: 40px 0; text-align: center; font-size: 0.9rem; }