/* Reset und Basis-Styling */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #3E3A33; background: #FAF9F6; }

/* Header & Navigation */
header { 
    background: #FAF9F6; color: #3E3A33; padding: 0; 
    height: 150px;
    display: flex; justify-content: space-between; align-items: stretch; flex-wrap: wrap; 
}
.header-content { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; flex: 1; padding: 1.5rem 1rem; }
.header-img { height: 110px; margin-top: 20px; margin-left: 100px; margin-bottom: 20px;object-fit: cover; flex-shrink: 0; }
header h1 { font-size: 2.5rem; letter-spacing: 1px; text-align: center; color: #3E3A33; }
nav ul { list-style: none; display: flex; gap: 1.8rem; flex-wrap: wrap; justify-content: center; }
nav a { color: #3E3A33; font-size: 1.5rem; text-decoration: none; font-weight: 700; transition: color 0.3s; }
nav a:hover { color: #C7A142; }
nav a.active { color: #C7A142; text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 6px; }

/* Sub-Header Balken (für Seiten ohne Hero-Sektion) */
.sub-header-bar {
    height: 70px;
    background-color: #7ECF28;
    width: 100%;
}

/* Layout Container */
.container { font-size: 1.2rem; max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; text-align: center; }
.container h2 { font-size: 2rem; margin-bottom: 1rem; color: #3E3A33; }
.container h3 { font-size: 1.2rem; margin-bottom: 1rem; color: #76C148; }

/* Hero Section */
.hero {
    background: url('/img/Harrlywood_wallpaper_flat.jpg') no-repeat center top / 100% auto;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #76C148;;
    text-align: center;
    padding: 0 ;
}
.hero-content { width: 100%; max-width: 1400px; }
.hero h2 { font-size: 2.8rem; margin-bottom: 2rem; max-width: 800px; }
.cta-button {
    font-size: 1.8rem;
    display: inline-block; background: #C7A142; color: #FFFFFF; padding: 1rem 2rem;
    text-decoration: none; border-radius: 5px; font-weight: bold; margin: 0.5rem;
    transition: all 0.3s; border: 2px solid #C7A142;
}
.cta-button:hover { background: #a68434; border-color: #a68434; color: #FFFFFF; }
.cta-button.secondary { background: transparent; border: 2px solid #C7A142; color: #C7A142; }
.cta-button.secondary:hover { background: #C7A142; color: #FFFFFF; }
.hero .cta-button.secondary { border-color: #FFFFFF; color: #FFFFFF; }
.hero .cta-button.secondary:hover { background: #FFFFFF; color: #7ECF28; }

/* Cards / Grid (Highlights & Projekte) */
.grid { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.card {
    background: #FAF9F6; padding: 2rem; border-radius: 8px; width: 100%; max-width: 350px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: transform 0.3s; border: 1px solid #4A7E30; color: #3E3A33;
}
.card:hover { transform: translateY(-5px); }
.card h4 { margin-bottom: 0.5rem; color: #76C148; }

/* Social Proof */
.social-proof { background: #76C148; color: #FFFFFF; padding: 4rem 2rem; font-style: italic; font-size: 1.2rem; }

/* Footer */
footer { background: #4A7E30; color: #FFFFFF; text-align: center; padding: 3rem 1rem; }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
footer a { color: #C7A142; text-decoration: none; margin: 0 0.5rem; transition: color 0.3s; }
footer a:hover { color: #FFFFFF; text-decoration: underline; }

/* Responsive Anpassungen für Mobile Endgeräte */
@media (max-width: 768px) {
    header { flex-direction: column; text-align: center; gap: 0; height: auto; }
    .header-img { height: 10px; object-fit: cover; }
    .header-content { padding: 1rem; }
    nav ul { justify-content: center; }
    .hero h2 { font-size: 2rem; }
    .cta-button { display: block; margin: 1rem auto; width: 80%; }
}