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

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

/* Header & Navigation */
header {
    background-color: #106339;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
}

.logo-text {
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('../images/33131-1-1920x1024.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    margin-top: 70px;
}

.hero-wrapper {
    max-width: 1400px;
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
}

.hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-quote {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #106339;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
}

.hero-button:hover {
    transform: translateY(-3px);
    background-color: #0d4d2a;
}

/* About Section */
.about {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    background: url('../images/luftbild.jpg') center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 1.2rem;
}

.about-text h2 {
    color: #106339;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-text .signature {
    margin-top: 2rem;
    font-style: italic;
}

/* CTA Section */
.cta {
    background-color: #106339;
    color: #ffffff;
    padding: 4rem 5%;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #106339;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Gallery Section */
.gallery {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.gallery-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.gallery-image {
    width: 100%;
    height: 250px;
    background: #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
}

.gallery-caption {
    padding: 1.5rem;
    background: #ffffff;
    color: #000000;
    text-align: center;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #106339;
    color: #ffffff;
    padding: 3rem 5%;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

.footer-links {
    margin: 1rem 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #106339;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-quote {
        font-size: 1.1rem;
    }

    .hero-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .gallery-row {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    nav {
        padding: 1rem 3%;
    }

    .logo-img {
        height: 45px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-quote {
        font-size: 0.9rem;
    }

    .hero-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    .about {
        padding: 3rem 3%;
    }

    .gallery {
        padding: 3rem 3%;
    }
}