/* Reset und Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0 auto;
}

.nav-phone {
    background-color: #8b4789;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    white-space: nowrap;
}

nav a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #8b4789;
}

/* Hero Section */
#hero {
    background-color: #fff;
    color: #333;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #8b4789 0%, #b565b0 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

#hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 20px;
}

#hero .hero-content {
    text-align: left;
    padding-right: 2rem;
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #8b4789;
    line-height: 1.2;
}

#hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #8b4789;
    margin: 1.5rem 0 0 0;
    border-radius: 2px;
}

#hero p {
    font-size: 1.3rem;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

#hero .hero-cta {
    display: inline-block;
    background-color: #8b4789;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(139, 71, 137, 0.3);
}

#hero .hero-cta:hover {
    background-color: #9d5a9a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 71, 137, 0.4);
}

#hero .hero-visual {
    position: relative;
    z-index: 2;
}

/* Image Slider */
.image-slider {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(139, 71, 137, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.slider-btn:hover {
    background-color: rgba(139, 71, 137, 1);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    text-align: center;
    margin-top: 1rem;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
    background-color: #8b4789;
}

/* Sections */
section {
    padding: 4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #8b4789;
    font-weight: 500;
}

section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #333;
    font-weight: 500;
}

section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    margin-top: 1rem;
    color: #555;
    font-weight: 500;
}

section p {
    margin-bottom: 1rem;
    color: #555;
}

section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

section li {
    margin-bottom: 0.5rem;
    color: #555;
}

section a {
    color: #8b4789;
    text-decoration: none;
}

section a:hover {
    text-decoration: underline;
}

/* Behandlungsspektrum */
.treatment-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #666;
    max-width: 800px;
}

.treatments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.treatment-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 3px solid #8b4789;
    transition: transform 0.3s, box-shadow 0.3s;
}

.treatment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(139, 71, 137, 0.2);
}

.treatment-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #8b4789;
}

.treatment-item p {
    margin-bottom: 0;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-grid h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #8b4789;
}

/* Map Container */
.map-container {
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* Footer */
footer {
    background-color: #8b4789;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .nav-phone {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    #hero {
        min-height: auto;
    }

    #hero::before {
        width: 100%;
        clip-path: none;
        height: 50%;
        bottom: 0;
        top: auto;
    }

    #hero .container {
        grid-template-columns: 1fr;
        padding: 3rem 20px;
    }

    #hero .hero-content {
        padding-right: 0;
        text-align: center;
    }

    #hero h1 {
        font-size: 2.2rem;
    }

    #hero h1::after {
        margin: 1.5rem auto 0;
    }

    #hero p {
        font-size: 1.1rem;
    }

    #hero .hero-visual {
        order: -1;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .slider-container {
        height: 250px;
    }

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

    .treatments {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}