/* Globale Einstellungen und Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* Typografie */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #222;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
}

/* KORREKTUR: Orange Akzentfarbe für Titel */
h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #ff8c00; /* DUNKEL ORANGE / OCKER */
}

/* Container für Zentrierung */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Hero Sektion */
.hero {
    /* KORREKTUR: Orange als Hintergrund */
    background-color: #ff8c00; 
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.main-logo {
    max-width: 1200px;
    height: auto;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #fff;
}

.hero .hero-subtext {
    font-size: 1.2em;
    font-weight: 400;
}

/* Navigation Bar */
.navbar {
    background-color: #333;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1em;
    padding: 5px 10px;
    transition: color 0.3s;
}

/* KORREKTUR: Orange Hover-Effekt */
.navbar a:hover {
    color: #ff8c00;
}

/* Allgemeine Sektionen */
.section-padded {
    padding: 80px 0;
}

.section-alt {
    background-color: #f0f0f0;
}

/* Service Grid (Leistungen) */
.service-grid {
    display: grid;
    /* Erzwingt eine einzige Spalte, damit alle Service-Boxen UNTEREINANDER stehen */
    grid-template-columns: 1fr; 
    gap: 30px;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* STYLES FÜR SERVICE BILDER */
.service-image {
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    margin-bottom: 15px; 
    border-radius: 5px; 
}

/* Kontaktformular */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.btn {
    /* KORREKTUR: Orange Button */
    background-color: #ff8c00;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: background-color 0.3s;
}

.btn:hover {
    /* KORREKTUR: Dunkleres Orange beim Hover */
    background-color: #cc7000;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

/* KORREKTUR: Orange Hover-Effekt im Footer */
footer a:hover {
    color: #ff8c00;
}

/* Icon Definitionen */
.icon-trash::before { content: "\f2ed"; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-right: 10px; color: #ff8c00; }
.icon-paint::before { content: "\f1fc"; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-right: 10px; color: #ff8c00; }
.icon-house::before { content: "\f015"; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-right: 10px; color: #ff8c00; }
.icon-brush::before { content: "\f55d"; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-right: 10px; color: #ff8c00; }

/* Responsive Design (optional, falls du es später anpassen möchtest) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .navbar .container {
        flex-direction: column;
        gap: 10px;
    }
}