/* ===== PRINT STYLES ===== */

/* Hide unnecessary elements when printing */
.header,
.footer,
.breadcrumb {
    display: none !important;
}

/* Adjust layout for print */
body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
}

.container {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.main {
    padding: 0 !important;
    min-height: auto !important;
}

/* Typography adjustments for print */
h1, h2, h3, h4, h5, h6 {
    color: #000 !important;
    page-break-after: avoid;
    page-break-inside: avoid;
}

h1 { font-size: 18pt; }
h2 { font-size: 16pt; }
h3 { font-size: 14pt; }
h4 { font-size: 12pt; }
h5 { font-size: 11pt; }
h6 { font-size: 10pt; }

p {
    font-size: 11pt;
    margin-bottom: 0.5em;
    orphans: 3;
    widows: 3;
}

/* Links */
a {
    color: #000 !important;
    text-decoration: underline;
}

a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
}

/* Hero section adjustments */
.hero {
    padding: 1em 0 !important;
    margin-bottom: 1em !important;
    text-align: left !important;
}

.hero-title {
    font-size: 20pt !important;
    margin-bottom: 0.5em !important;
}

.hero-subtitle {
    font-size: 12pt !important;
    color: #666 !important;
}

/* Content adjustments */
.content {
    max-width: none !important;
    margin: 0 !important;
}

.text-block {
    margin-bottom: 1em !important;
}

.text-block p {
    font-size: 11pt !important;
}

/* Quote block adjustments */
.quote-block {
    background: #f9f9f9 !important;
    border-left: 3pt solid #ccc !important;
    padding: 1em !important;
    margin: 1em 0 !important;
    page-break-inside: avoid;
}

.quote-block blockquote {
    font-size: 11pt !important;
    margin: 0 !important;
}

/* Page titles */
.page-title {
    font-size: 18pt !important;
    margin-bottom: 1em !important;
    color: #000 !important;
}

/* Content sections */
.impressum-content,
.datenschutz-content,
.nutzungsbedingungen-content {
    font-size: 11pt;
}

.impressum-content h2,
.datenschutz-content h2,
.nutzungsbedingungen-content h2 {
    font-size: 14pt !important;
    margin-top: 1em !important;
    margin-bottom: 0.5em !important;
    color: #000 !important;
}

.impressum-content h3,
.datenschutz-content h3,
.nutzungsbedingungen-content h3 {
    font-size: 12pt !important;
    margin-top: 1em !important;
    margin-bottom: 0.5em !important;
    color: #000 !important;
}

.impressum-content p,
.datenschutz-content p,
.nutzungsbedingungen-content p {
    font-size: 11pt !important;
    margin-bottom: 0.5em !important;
}

.impressum-content ul,
.datenschutz-content ul,
.nutzungsbedingungen-content ul {
    margin: 0.5em 0 0.5em 1.5em !important;
}

.impressum-content li,
.datenschutz-content li,
.nutzungsbedingungen-content li {
    font-size: 11pt !important;
    margin-bottom: 0.25em !important;
}

.last-updated {
    font-size: 10pt !important;
    color: #666 !important;
    margin-top: 1em !important;
    padding-top: 0.5em !important;
    border-top: 1pt solid #ccc !important;
}

/* Page breaks */
.page-break {
    page-break-before: always;
}

.no-break {
    page-break-inside: avoid;
}

/* URLs and contact information */
a[href^="mailto:"]:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
}

/* Ensure good contrast for print */
* {
    -webkit-print-color-adjust: exact !important;
    color-adjust: exact !important;
}

/* Remove shadows and effects for print */
* {
    box-shadow: none !important;
    text-shadow: none !important;
}

/* Ensure text is readable */
body {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
} 