/* Grundlayout */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: #222;
    background: #fafafa;
}
a {
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.site-header {
    background: #111;
    color: #fff;
}
.site-header .topbar {
    padding: 8px 0;
    font-size: 14px;
    opacity: 0.8;
}
.site-header .branding {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.site-header .logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.site-header nav {
    display: flex;
    gap: 18px;
}
.site-header nav a {
    text-decoration: none;
    font-size: 15px;
    padding: 6px 0;
    position: relative;
}
.site-header nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.2s;
}
.site-header nav a:hover::after,
.site-header nav a.active::after {
    width: 100%;
}

/* Mobile Nav */
.nav-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .site-header nav {
        display: none;
        flex-direction: column;
        padding: 10px 0 16px;
    }
    .site-header nav.open {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
}

/* Footer */
.site-footer {
    background: #111;
    color: #eee;
    padding: 30px 0 15px;
    margin-top: 60px;
    font-size: 14px;
}
.site-footer a {
    color: #eee;
    text-decoration: none;
}
.site-footer a:hover {
    text-decoration: underline;
}
.site-footer .footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.site-footer .footer-col {
    min-width: 200px;
}
.site-footer .footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 10px;
    text-align: center;
    opacity: 0.7;
}

/* Content-Seiten */
.text-block {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-size: 16px;
}
.text-block h2 {
    margin-top: 24px;
}

/* Zahngold Bereich – Bild rechts, oben ausgerichtet */
.zahngold-flex {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 40px;
    flex-wrap: wrap;
}

.zahngold-text {
    flex: 1;
    min-width: 260px;
}

.zahngold-image {
    flex: 1;
    max-width: 350px;
    min-width: 260px;
    display: flex;
    align-items: flex-start;
}

.zahngold-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin-top: -10px; /* Bild sichtbar höher */
}
