:root {
    --black: #111;
    --orange: #ff8800;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.6;
}

a { text-decoration: none; }

header {
    background: var(--black);
    padding: 20px;
}

nav {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav img {
    height: 100px;
    max-width: 200px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--orange); }

.burger {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.hero {
    background: linear-gradient(to right, #111, #222);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero .service-box {
    color: #fff; /* Weiß */
}

.hero .service-box h3,
.hero .service-box p {
    color: #fff; /* Weiß für Überschrift & Text */
}

.container { max-width: 1100px; margin: auto; padding: 40px 20px; }

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-box {
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 6px;
    text-decoration: none;
    color: #222;
    transition: 0.3s;
    display: block;
}

.service-box:hover {
    color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.button {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.button:hover { background: #ff6600; }

footer {
    background: var(--black);
    color: #ccc;
    padding: 30px 20px;
    font-size: 0.9em;
}

footer a {
    color: #ccc;
    margin-right: 15px;
}

footer a:hover { color: var(--orange); }

@media (max-width:768px){
    .nav-links { display: none; flex-direction: column; background: #111; position: absolute; top: 140px; right: 20px; padding: 20px; }
    .nav-links.active { display: flex; }
    .burger { display: block; }
}
