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

:root {
    --primary-green: #4a7c59;
    --light-green: #7cb388;
    --soft-bg: #f8f5f2;
    --accent-sand: #e8dcc8;
    --text-dark: #3d3d3d;
    --text-light: #5a5a5a;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Header */
.header {
    background-color: var(--primary-green);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-align: left;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 0.95rem;
    color: var(--accent-sand);
    margin-top: 0.2rem;
}

.contact-mini {
    text-align: right;
    color: var(--white);
}

.contact-mini p {
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.contact-info {
    font-size: 0.85rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Navigation */
.nav {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.nav-list li {
    margin: 0 1rem;
}

.nav-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-list a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(60, 80, 60, 0.5), rgba(60, 80, 60, 0.5)),
                url('pictures/Background_Blumenwiese.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: var(--white);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--accent-sand);
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-text p {
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--accent-sand);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styling */
section {
    padding: 4rem 0;
}

h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-sand);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* About Section */
.about {
    background-color: var(--soft-bg);
}

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

.about-text h3 {
    color: var(--light-green);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services {
    background-color: var(--white);
}

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

.services-text h3 {
    color: var(--light-green);
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.service-item p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-item ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 1rem;
}

.service-item li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.service-item li::before {
    content: '🌿';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.service-benefit {
    background-color: var(--soft-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-sand);
    margin-top: 1.5rem;
}

.service-benefit h3 {
    margin-top: 0;
}

.service-benefit p {
    margin-top: 1rem;
    color: var(--text-light);
}

.service-benefit li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.services-image {
    text-align: center;
}

.services-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Details Section */
.details {
    background-color: var(--soft-bg);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.detail-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.detail-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Process Section */
.process {
    background-color: var(--white);
}

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

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--soft-bg);
    border-radius: 12px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 300;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Practice Locations */
.practice-locations {
    background-color: var(--accent-sand);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.location-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.location-item h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

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

.contact-info-card {
    background-color: var(--soft-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--light-green);
}

.contact-label {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-value a {
    color: var(--primary-green);
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

.note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--accent-sand);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-style: italic;
}

.contact-image {
    text-align: center;
}

.contact-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Imprint Section */
.imprint {
    background-color: var(--soft-bg);
}

.imprint-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.imprint-section {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.imprint-section h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.imprint-section p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.imprint-section strong {
    color: var(--text-dark);
}

/* Footer */
.footer {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer a {
    color: var(--accent-sand);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .header {
        padding: 0.8rem 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 1rem;
    }

    .contact-mini {
        text-align: center;
    }

    /* Mobile Navigation */
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-green);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: 0;
        text-align: center;
    }

    .nav-list li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-list a {
        display: block;
        padding: 1rem;
    }

    .hero {
        min-height: 60vh;
        padding: 3rem 1.5rem;
    }

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

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

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

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    h2 {
        font-size: 1.6rem;
        padding-left: 0.5rem;
    }

    h2::after {
        left: 0.5rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    /* Mobile - About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        max-width: 100%;
    }

    /* Mobile - Services */
    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-image {
        order: -1;
    }

    .services-image img {
        max-width: 100%;
    }

    /* Mobile - Details */
    .details-grid,
    .process-grid,
    .locations-grid,
    .imprint-content {
        grid-template-columns: 1fr;
    }

    /* Mobile - Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-image {
        order: -1;
    }

    .contact-image img {
        max-width: 100%;
    }

    /* Mobile - Hamburg Animation */
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.6rem 0.8rem;
    }

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

    .subtitle {
        font-size: 0.85rem;
    }

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

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

    h2 {
        font-size: 1.4rem;
    }

    .service-item p,
    .service-item li,
    .detail-card p {
        font-size: 0.9rem;
    }

    .footer {
        padding: 1.5rem;
    }

    footer p {
        font-size: 0.85rem;
    }
}
