/*
 * impressum.css
 * 
 * Gemeinsame Styles (Navigation, Footer, Buttons, etc.) 
 * sind in /includes/common.css
 * 
 * Hier nur noch page-spezifische Styles
 */

/* 
 * impressum.css - Page-specific styles
 * Common styles loaded from common.css
 */

/* Navigation - Burger-Styles sind in common.css */

/* Page Header */
.page-header {
    margin-top: 100px;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-blue) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Content Section */
section {
    padding: 4rem 2rem 6rem;
    background: var(--off-white);
}

/* Impressum Cards */
.impressum-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(43, 75, 140, 0.08);
    border: 1px solid var(--border-light);
}

.impressum-card h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--ice-blue);
}

/* Label-Value Rows */
.impressum-row {
    display: flex;
    gap: 2rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border-light);
}

.impressum-row:last-child {
    border-bottom: none;
}

.impressum-label {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    min-width: 160px;
    padding-top: 0.1rem;
}

.impressum-value {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.impressum-value a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-value a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Disclaimer Section */
.disclaimer-header {
    margin: 3rem 0 1.5rem;
    text-align: center;
}

.disclaimer-header h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.disclaimer-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--light-blue);
}

.disclaimer-card {
    border-left: 4px solid var(--light-blue);
}

.disclaimer-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.disclaimer-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.disclaimer-card p:last-child {
    margin-bottom: 0;
}

/* Source Note */
.source-note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.source-note a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.source-note a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-header h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .page-header h1 { font-size: 2.4rem; }
    .impressum-card { padding: 2rem 1.5rem; }
    .impressum-row { flex-direction: column; gap: 0.4rem; }
    .impressum-label { min-width: auto; }
    .disclaimer-header h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .page-header h1 { font-size: 2rem; }
    .page-header p { font-size: 0.9rem; }
    .impressum-card { padding: 1.5rem 1rem; }
    .impressum-card h2 { font-size: 1.4rem; }
    .disclaimer-header h2 { font-size: 1.8rem; }
}
