/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e646e;
    --primary-dark: #0c0c0c;
    --accent-color: #deb887;
    --text-dark: #000000;
    --text-light: #5e5e5e;
    --text-gray: #a1a9b0;
    --bg-light: #f8f9fa;
    --bg-gray: #979fa3;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== Navigation ===== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    flex-shrink: 0;
}

.logo-image img {
    height: 80px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-osteopathie {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-ander {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-maistrasse {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-first {
    color: var(--accent-color);
}

.logo-ander .logo-first {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--accent-color);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--white);
    margin-top: 100px;
    padding: 2rem 0;
}

.hero-content {
    width: 100%;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.hero-logo-image {
    flex-shrink: 0;
}

.hero-logo-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    text-align: left;
    padding-top: 50px;
}

.hero-logo-osteopathie {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-logo-ander {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-logo-maistrasse {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-logo-first {
    color: var(--accent-color);
}

.hero-logo-ander .hero-logo-first {
    color: var(--primary-color);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c8a170;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== Quote Sections (Grundgedanke & Behandlung) ===== */
.grundgedanke {
    padding: 50px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.behandlung {
    padding: 50px 0;
    background-color: var(--bg-light);
    color: var(--text-light);
}

.grundgedanke h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.behandlung h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.grundgedanke h2 .highlight {
    color: var(--accent-color);
}

.behandlung h2 .highlight {
    color: var(--accent-color);
}

.section-divider {
    width: 30%;
    max-width: 200px;
    margin: 0 auto 2rem;
    border: none;
    height: 2px;
    background-color: currentColor;
}

.grundgedanke .section-divider {
    background-color: var(--white);
}

.behandlung .section-divider {
    background-color: var(--primary-color);
}

.quote-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-box blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    padding: 2rem;
}

.quote-box blockquote p {
    margin-bottom: 1.5rem;
}

.quote-box cite {
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

.quote-box cite a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: var(--transition);
}

.quote-box cite a:hover {
    opacity: 0.7;
    border-bottom-color: transparent;
}

/* ===== Therapeuten Section ===== */
.therapeuten {
    padding: 80px 0;
    background-color: var(--white);
}

.therapeuten h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.therapeuten-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.therapeut-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.therapeut-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.therapeut-image {
    width: 100%;
    overflow: hidden;
}

.therapeut-image img {
    width: 100%;
    height: auto;
    display: block;
}

.therapeut-info {
    padding: 2rem;
}

.therapeut-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.qualifications {
    list-style: none;
    margin-bottom: 1.5rem;
}

.qualifications li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.qualifications li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-info {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* ===== Leistungen Section ===== */
.leistungen {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.leistungen h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.leistung-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
    text-align: center;
}

.leistung-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.leistung-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.leistung-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Praxis Gallery Section ===== */
.praxis {
    padding: 80px 0;
    background-color: var(--white);
}

.praxis h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.praxis-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Kosten Section ===== */
.kosten {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.kosten h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.kosten-content {
    max-width: 800px;
    margin: 0 auto;
}

.kosten-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.kosten-content strong {
    font-weight: 700;
}

/* ===== Parkplätze Section ===== */
.parkplaetze {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.parkplaetze h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.parking-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.parking-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.parking-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.parking-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.parking-item ul {
    list-style: none;
    margin-top: 1rem;
}

.parking-item li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.parking-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ===== Kontakt Section ===== */
.kontakt {
    padding: 80px 0;
    background-color: var(--white);
}

.kontakt h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.info-box p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-box a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-box a:hover {
    color: var(--accent-color);
}

/* ===== Contact Form ===== */
.kontakt-form-wrapper {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.kontakt-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 100, 110, 0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===== Map Container ===== */
.map-container {
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    margin: 0;
    opacity: 0.9;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-right a {
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-right a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-right .separator {
    opacity: 0.5;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-logo-image img {
        max-width: 350px;
    }

    .hero-logo-osteopathie,
    .hero-logo-ander,
    .hero-logo-maistrasse {
        font-size: 3rem;
    }

    .therapeuten-grid {
        gap: 2rem;
    }

    .praxis-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .logo-image img {
        height: 60px;
    }

    .logo-osteopathie,
    .logo-maistrasse {
        font-size: 0.9rem;
    }

    .logo-ander {
        font-size: 0.75rem;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        text-align: center;
        border-bottom: 1px solid var(--bg-light);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1.2rem 1.5rem;
        font-size: 1.05rem;
        font-weight: 600;
        transition: var(--transition);
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: var(--bg-light);
        color: var(--primary-color);
    }

    .hero {
        min-height: auto;
        margin-top: 80px;
        padding: 1.5rem 0 3rem;
    }

    .hero-logo {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-logo-image img {
        max-width: 300px;
    }

    .hero-logo-text {
        text-align: center;
        padding-top: 0;
    }

    .hero-logo-osteopathie,
    .hero-logo-ander,
    .hero-logo-maistrasse {
        font-size: 2rem;
    }

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

    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .quote-box blockquote {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        margin-top: 70px;
        padding: 1rem 0 2.5rem;
    }

    .hero-logo {
        gap: 0.75rem;
    }

    .hero-logo-image img {
        max-width: 250px;
    }

    .hero-logo-text {
        padding-top: 0;
    }

    .hero-logo-osteopathie,
    .hero-logo-ander,
    .hero-logo-maistrasse {
        font-size: 1.5rem;
    }

    .logo-container {
        gap: 0.5rem;
    }

    .logo-image img {
        height: 50px;
    }

    .logo-osteopathie,
    .logo-maistrasse {
        font-size: 0.75rem;
    }

    .logo-ander {
        font-size: 0.65rem;
    }

    h2 {
        font-size: 2rem !important;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .therapeut-info {
        padding: 1.5rem;
    }

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