/* Basis-Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    background: #f4f4f4; 
}

/* Header & Navigation */
header { 
    background: #fff; 
    padding: 0.3rem 5%; 
    border-bottom: 3px solid #e67e22; 
}

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

/* Logo-Styling - Angepasst auf 40px */
nav .logo img { 
    height: 60px; 
    width: auto; 
    display: block; 
}

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { 
    text-decoration: none; 
    color: #333; 
    font-weight: 600; 
    transition: color 0.3s;
}
nav ul li a:hover { color: #e67e22; }

/* Hero-Section */
.hero { 
    padding: 120px 5% 150px; 
    text-align: center; 
    background-image: url('Hintergrund_die_gestalter.png'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    position: relative; 
    color: white; 
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.hero h1, .hero p, .hero .btn { 
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); 
}

.hero h1 { font-size: 3rem; margin-bottom: 15px; }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; }

.btn { 
    display: inline-block; 
    padding: 12px 25px; 
    background: #e67e22; 
    color: white; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold;
    transition: all 0.3s ease;
}
.btn:hover { background: #d35400; transform: translateY(-2px); }

/* Projekte */
.projects { padding: 40px 5%; }
.placeholder-box { 
    background: #fff; 
    padding: 40px; 
    border-radius: 8px; 
    border: 1px dashed #ccc; 
    text-align: center; 
    margin-top: 20px; 
}

footer { text-align: center; padding: 20px; font-size: 0.9rem; color: #777; }

/* Responsive */
@media (max-width: 768px) {
    nav { flex-direction: column; }
    nav ul { margin-top: 15px; }
}