/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2C3E50;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    color: #3498DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980B9;
    text-decoration: underline;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER ===== */
.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
}

/* ===== MAIN CONTENT ===== */
.main {
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
}

/* ===== HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    font-weight: 400;
    margin: 0;
}

/* ===== CONTENT SECTIONS ===== */
.content {
    max-width: 800px;
    margin: 0 auto;
}

.text-block {
    margin-bottom: 3rem;
}

.text-block p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
}

.quote-block {
    background-color: #F8FAFC;
    border-left: 4px solid #E74C3C;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 8px 8px 0;
}

.quote-block blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #2C3E50;
    margin: 0;
    line-height: 1.6;
}

/* ===== PAGE TITLES ===== */
.page-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2C3E50;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.breadcrumb a {
    color: #6B7280;
}

.breadcrumb a:hover {
    color: #3498DB;
}

/* ===== IMPRESSUM CONTENT ===== */
.impressum-content h2,
.datenschutz-content h2,
.nutzungsbedingungen-content h2 {
    color: #2C3E50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.impressum-content h3,
.datenschutz-content h3,
.nutzungsbedingungen-content h3 {
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.impressum-content p,
.datenschutz-content p,
.nutzungsbedingungen-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.impressum-content ul,
.datenschutz-content ul,
.nutzungsbedingungen-content ul {
    margin: 1rem 0 1rem 2rem;
}

.impressum-content li,
.datenschutz-content li,
.nutzungsbedingungen-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.last-updated {
    font-style: italic;
    color: #6B7280;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #F8FAFC;
    border-top: 1px solid #E5E7EB;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #6B7280;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #3498DB;
    text-decoration: none;
}

.footer-copyright {
    text-align: center;
    color: #9CA3AF;
    font-size: 0.875rem;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .text-block p {
        font-size: 1rem;
    }
    
    .quote-block {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .quote-block blockquote {
        font-size: 1.125rem;
    }
    
    .footer-nav {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== FOCUS STATES ===== */
a:focus,
button:focus {
    outline: 2px solid #3498DB;
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .breadcrumb {
        display: none;
    }
    
    .main {
        padding: 0;
    }
    
    .hero {
        padding: 1rem 0;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
} 