/* Reset und Grundstile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9fafb;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(102, 204, 153, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
    width: auto;
}

.desktop-nav {
    display: none;
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
}

.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    background-color: #66cc99;
    padding: 1rem;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 64px;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
}

/* About Section */
.about {
    padding: 4rem 0;
}

.about h2 {
    text-align: center;
    color: #009999;
    margin-bottom: 2rem;
}

.about-content {
    display: grid;
    gap: 2rem;
}

.about-images {
    display: grid;
    gap: 1rem;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: white;
}

.services h2 {
    text-align: center;
    color: #009999;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #009999;
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
}

.contact h2 {
    text-align: center;
    color: #009999;
    margin-bottom: 2rem;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding: 2rem;
    text-align: center;
}

.contact-image {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.contact-details {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-details a {
    color: #66cc99;
    text-decoration: none;
}

.icon {
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background-color: #66cc99;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

/* Media Queries */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-button {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.5rem;
    }
}

