* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5A9B6F;
    --secondary-color: #6BAD7F;
    --accent-color: #3D6B47;
    --nature-green: #7A9B6F;
    --nature-brown: #8B6F47;
    --dark-brown: #6B4423;
    --light-green: #A8C99E;
    --light-brown: #C4A474;
    --text-dark: #2C3E50;
    --text-light: #7A8A7F;
    --bg-light: #F5F8F4;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    position: relative;
}

/* ===== ANIMIERTER FARBVERLAUF HINTERGRUND ===== */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(
        -45deg,
        #A8C99E,
        #5A9B6F,
        #C4A474,
        #6BAD7F,
        #8B6F47,
        #7A9B6F
    );
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    pointer-events: none;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ===== WELLEN-ANIMATION ===== */
.waves-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 2;
    pointer-events: none;
}

/* ===== Navigation ===== */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gears-container {
    display: flex;
    gap: 5px;
    font-size: 1.8rem;
}

.gear {
    animation: spin 8s linear infinite;
    display: inline-block;
}

.gear1 {
    animation-direction: normal;
}

.gear2 {
    animation-direction: reverse;
    animation-duration: 10s;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-brown) 100%);
    padding: 150px 20px 100px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== Sections ===== */
section {
    padding: 80px 20px;
    position: relative;
    z-index: 10;
    margin-bottom: 0;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ===== About Section ===== */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-text .subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    gap: 1.5rem;
}

.stat {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-brown) 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
}

.stat h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===== Services Section ===== */
.services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* ===== Prices Section ===== */
.prices {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-brown) 100%);
}

.prices h2 {
    color: var(--white);
}

.prices h2::after {
    background: rgba(255, 255, 255, 0.5);
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.price-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price-card.featured h3 {
    color: var(--white);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.price-card.featured .price-amount {
    color: var(--white);
}

.price-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.price-card.featured .price-desc {
    color: rgba(255, 255, 255, 0.9);
}

.price-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.price-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid #e0e0e0;
}

.price-card.featured .price-features li {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* ===== FAHRKOSTENHINWEIS ===== */
.fare-notice {
    background: linear-gradient(135deg, rgba(61, 107, 71, 0.15) 0%, rgba(196, 164, 116, 0.15) 100%);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
}

.fare-notice h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fare-notice p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== Blog Section ===== */
.blog {
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-post h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-post p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--primary-color);
    margin-left: 5px;
}

/* ===== Contact Section ===== */
.contact {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-brown) 100%);
}

.contact h2 {
    color: var(--white);
}

.contact h2::after {
    background: rgba(255, 255, 255, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info,
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.info-block {
    margin-bottom: 1.5rem;
}

.info-block h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--text-dark);
}

.info-block a {
    color: var(--secondary-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(90, 155, 111, 0.2);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 3rem 20px 1rem;
    position: relative;
    z-index: 10;
    margin-bottom: 120px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--light-green);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--light-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

    section {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 40px 15px;
    }

    .services-grid,
    .prices-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        margin-bottom: 100px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .fare-notice {
        padding: 1.5rem;
    }

    .fare-notice h3 {
        font-size: 1rem;
    }

    .fare-notice p {
        font-size: 0.9rem;
    }
}