/*
Theme Name: Naturheilpraxis Völker
Text Domain: naturheilpraxis
Version: 1.0.0
Description: Custom theme for Naturheilpraxis Völker - replacing Elementor with clean, performant code
Author: Custom Development
*/

/* Eigenständiges Theme ohne Parent-Theme */

/* Minimaler Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure {
    margin: 0;
    padding: 0;
}

/* Einheitliche Basis-Typografie für alle Überschriften */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: inherit;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

ul, ol {
    list-style: none;
}

a,
a:visited {
    text-decoration: none;
    color: inherit;
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Standard-Abstände für Fließtext-Bereiche */
.content-section p,
.impressum-content p,
.vita-desc p,
.treatment-lead + p {
    margin-bottom: 15px;
}

.impressum-content h2,
.vita-content h2 {
    margin-bottom: 20px;
}

.impressum-content h3 {
    margin-top: 30px;
    margin-bottom: 12px;
}

.leistungen-liste li {
    margin-bottom: 6px;
}

/* Custom Variables */
:root {
    --primary-color: #711521;
    --secondary-color: #6B8F71;
    --accent-color: #4A6B50;
    --text-dark: #1c1c1c;
    --text-light: #ffffff;
    --bg-light: #3b4656;
    --bg-gradient-start: #8a2a3a;
    --bg-gradient-end: #5a1018;
    --border-color: #4A6B50;
    --font-heading: 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Helvetica Neue', Arial, sans-serif;
}

/* Maintenance Notice Banner */
.maintenance-notice {
    background-color: var(--accent-color);
    color: #ffffff;
    text-align: center;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Reset and Base Styles */
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 5px solid var(--accent-color);
    min-height: 90px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.header-logo a {
    display: block;
}

.header-title {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.site-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-color);
    line-height: 1.1;
}

.site-tagline {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
}

.header-contact {
    white-space: nowrap;
}

.header-phone {
    display: inline-block;
    padding: 8px 18px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.header-phone:hover {
    background: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 36px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s;
}

.site-logo {
    max-width: 120px;
    height: auto;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin: 0;
}

/* Navigation */
.main-navigation {
    background-color: var(--primary-color);
    padding: 0;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a,
.main-navigation a:visited {
    display: block;
    padding: 15px 20px;
    color: #ffffff !important;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 300;
    font-size: 13px;
}

.main-navigation a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-navigation li {
    position: relative;
}

.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: linear-gradient(160deg, #575860, #3a3a3a) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 100;
    flex-direction: column;
}

.main-navigation li:hover > .sub-menu {
    display: flex;
}

.main-navigation .sub-menu a,
.main-navigation .sub-menu a:visited {
    font-size: 13px;
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    white-space: normal;
    color: #ffffff !important;
    background-color: transparent !important;
}

.main-navigation .sub-menu a:hover {
    background-color: rgba(255,255,255,0.15) !important;
    color: var(--text-light) !important;
}

.main-navigation .menu-item-has-children > a::after {
    content: ' ▾';
    font-size: 10px;
}

@media (max-width: 768px) {
    .main-navigation .sub-menu {
        position: static;
        box-shadow: none;
        background: rgba(0,0,0,0.15);
    }

    .main-navigation li:hover > .sub-menu {
        display: none;
    }

    .main-navigation li.menu-open > .sub-menu {
        display: flex;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
}

.btn-primary,
.btn-primary:visited {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #5a1018;
    border-color: #5a1018;
    color: #fff;
}

.btn-secondary,
.btn-secondary:visited {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.btn-outline,
.btn-outline:visited {
    background: rgba(255,255,255,0.9);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-light,
.btn-light:visited {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.btn-light:hover {
    background: #e8e8e8;
    color: var(--primary-color);
    border-color: #e8e8e8;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    min-height: 740px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero-small {
    min-height: 320px;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    padding: 40px 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-primary {
    background: var(--primary-color);
}

/* Intro Block (Startseite) */
.intro-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Gallery Grid (Startseite) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.service-card .service-icon-text,
.service-card .service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

.service-card h3,
.service-card p {
    padding: 0 25px;
}

.service-card p {
    flex: 1;
}

.service-link {
    display: block;
    padding: 12px 25px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    border-top: 1px solid #eee;
    transition: background 0.2s, color 0.2s;
}

.service-link:hover {
    background: var(--primary-color);
    color: #fff;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #575860, #3a3a3a);
    color: var(--text-light);
    padding: 70px 0 20px;
    border-top: 10px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 6px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--text-light);
}

.footer-about {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 20px;
    font-style: normal;
    opacity: 0.8;
}

.footer-member-note {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 22px;
    margin-top: 20px;
}

.social-icon {
    width: 16px;
    height: 16px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 900px) {
    .header-title {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-header {
        min-height: auto;
        padding: 12px 0;
    }

    .site-logo {
        max-width: 80px;
    }

    .nav-toggle {
        display: flex;
    }

    .header-contact {
        display: none;
    }

    #main-nav {
        display: none;
    }

    #main-nav.is-open {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: stretch;
    }

    .main-navigation a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }

    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .intro-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .praxis-gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .vita-block {
        grid-template-columns: 1fr;
    }

    .vita-entry {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }

    .kontakt-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .treatment-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .treatment-detail-image img {
        height: 240px;
    }

    .page-header-title {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

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

    .praxis-gallery-item--large {
        grid-column: span 1;
    }
}

/* Page Header (kleiner Hero für Unterseiten) */
.page-header {
    min-height: 280px;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.page-header .container {
    display: block;
}

.breadcrumbs {
    font-size: 13px;
    margin-bottom: 15px;
    opacity: 0.85;
}

.breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

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

.breadcrumb-sep {
    margin: 0 8px;
    opacity: 0.6;
}

.breadcrumb-current {
    font-weight: 600;
}

.page-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.page-header-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

.section-intro {
    text-align: center;
    max-width: 650px;
    margin: -20px auto 40px;
    color: #666;
}

/* Treatment Grid / Cards (Behandlungsmethoden-Übersicht) */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.treatment-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.treatment-card-image {
    position: relative;
    height: 190px;
}

.treatment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.treatment-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.treatment-badge--inline {
    position: static;
    display: inline-block;
    background: #f1e6a1;
    color: #6b5900;
    margin-bottom: 15px;
}

.treatment-card-body {
    padding: 20px 25px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.treatment-card-body h3 {
    color: var(--primary-color);
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.treatment-card-body p {
    color: #666;
    flex: 1;
    margin: 0 0 15px;
}

.treatment-card-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

/* Treatment Detail (Einzelseite) */
.treatment-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 30px;
}

.treatment-detail-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.treatment-lead {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 25px;
}

.treatment-back-link {
    margin-top: 20px;
}

.treatment-back-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.treatment-back-link a:hover {
    text-decoration: underline;
}

/* Rechtsseiten (Impressum, Datenschutz) */
.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.impressum-content h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.impressum-content h3 {
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 12px;
}

.impressum-content a {
    color: var(--primary-color);
}

/* Kontakt-Seite */
.kontakt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.kontakt-info h2,
.kontakt-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.kontakt-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.kontakt-icon {
    font-size: 24px;
    min-width: 36px;
}

.kontakt-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.kontakt-card a:hover {
    text-decoration: underline;
}

.kontakt-hinweis {
    margin-top: 20px;
    padding: 18px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.7;
}

.kontakt-hinweis a {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Vita-Seite */
.vita-block {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.vita-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.vita-subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.vita-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vita-entry {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.vita-entry:last-child {
    border-bottom: none;
}

.vita-year {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    padding-top: 2px;
}

.vita-desc strong {
    color: var(--primary-color);
}

.weiterbildung-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.weiterbildung-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-top: 4px solid var(--accent-color);
}

.wb-year {
    display: inline-block;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Praxis-Galerie */
.praxis-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.praxis-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.praxis-gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.praxis-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
    min-height: 200px;
}

.praxis-gallery-item:hover img {
    transform: scale(1.04);
    opacity: 0.85;
}

.praxis-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: #fff;
    padding: 20px 15px 10px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.praxis-gallery-item:hover .praxis-gallery-caption {
    opacity: 1;
}

/* CTA Band */
.cta-band .cta-title {
    color: #fff;
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta-band .cta-text {
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-band .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-band .cta-address {
    color: rgba(255,255,255,0.6);
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* ============================================
   RESPONSIVE OVERRIDES – müssen NACH den
   Komponentenstilen stehen (CSS-Reihenfolge)
   ============================================ */
@media (max-width: 768px) {
    .vita-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vita-entry {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }

    .kontakt-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .treatment-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .treatment-detail-image img {
        height: 240px;
    }

    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-band .cta-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .vita-entry {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .vita-year {
        font-size: 0.85rem;
    }
}

/* Accessibility */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
