/* Google Fonts - Mit barrierefreier Schrift */
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@400;500;600;700&display=swap');

/* Reset und Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Farbenblind-freundliche Farben (Blau/Orange) */
    --text-color: #1A1A1A;      /* Weiches Schwarz für bessere Lesbarkeit */
    --bg-color: #E8E4DE;        /* Deutlich dunklerer Hintergrund - warmes Grau */
    --accent-blue: #003D7A;     /* Viel dunkleres Blau für besseren Kontrast */
    --accent-orange: #E85D00;   /* Kräftiges Orange für Kategorien */
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #C5C0B8;      /* Angepasst an dunkleren Hintergrund */
    --border-color: #B5B0A8;    /* Angepasst an dunkleren Hintergrund */
    --subtle-bg: #DDD9D3;       /* Für Boxen etc. */
    --accent-color: var(--accent-blue);  /* Fallback für alte Referenzen */

    /* Layout */
    --max-width: 1200px;
    --article-width: 720px;

    /* Barrierefreie Schriften */
    --serif-font: 'Atkinson Hyperlegible', Georgia, serif;
    --sans-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Basis-Typography - Optimiert für Lesbarkeit */
body {
    font-family: var(--serif-font);
    font-size: 19px;               /* Größer für bessere Lesbarkeit */
    line-height: 1.8;              /* Mehr Zeilenhöhe */
    color: var(--text-color);
    background: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.02em;        /* Leicht mehr Buchstabenabstand */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif-font);
    font-weight: 700;
    line-height: 1.2;
    margin: 1.5em 0 0.5em;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3em;
    font-weight: 900;
}
h2 {
    font-size: 2.25em;
}
h3 {
    font-size: 1.5em;
}

p {
    margin: 0 0 1em;
}

/* Links mit besserer Sichtbarkeit */
a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 2px;
}

a:hover {
    color: var(--gray-dark);
}

/* Focus-Styles für Barrierefreiheit */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Skip-Link für Screen-Reader */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-blue);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header im Magazin-Stil */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-color);
    border-bottom: 2px solid var(--gray-dark);
    padding: 1rem 0;
    z-index: 1000;
}

/* Kompensiere den fixed header */
body {
    padding-top: 70px;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header h1 {
    font-family: var(--serif-font);
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.site-header h1 a {
    color: var(--text-color);
    text-decoration: none;
}

/* Navigation im Magazin-Stil */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-color);
    font-family: var(--sans-font);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--accent-blue);
}

.search-toggle {
    color: var(--accent-blue) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Homepage als Magazin */
.intro {
    margin-bottom: 3rem;
}

/* Erster Content-Block nach Header */
main {
    margin-top: 80px; /* Platz für fixed header */
}

.info-box {
    background: var(--subtle-bg);
    padding: 1rem;
    border-left: 4px solid var(--accent-blue);
    margin: 1rem 0;
}

/* Homepage Hero Section */
.homepage-hero {
    padding: 2rem 0 3rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.hero-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image-container {
    overflow: hidden;
    border-radius: 4px;
    background: var(--gray-light);
}

.hero-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.03);
}

.hero-text {
    padding: 1rem 0;
}

.hero-title {
    font-family: var(--serif-font);
    font-size: 2.25rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 900;
}

.hero-title a {
    color: var(--text-color);
    text-decoration: none;
}

.hero-title a:hover {
    color: var(--accent-blue);
}

.hero-subtitle {
    font-family: var(--sans-font);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin: 0 0 1.5rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    font-weight: 600;
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: var(--accent-orange);
}

.kicker {
    color: var(--accent-orange);  /* Orange für bessere Unterscheidung */
    font-family: var(--sans-font);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.magazine-feature h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 900;
}

.standfirst {
    font-family: var(--serif-font);
    font-size: 1.4rem;
    line-height: 1.4;
    font-style: italic;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    font-family: var(--sans-font);
    font-size: 0.9rem;
    color: var(--gray-medium);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

/* Magazin Grid */
.magazine-section {
    margin-bottom: 5rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-dark);
}

.section-title {
    font-family: var(--sans-font);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Post Cards */
.post-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-image-link {
    display: block;
    height: 180px;
    overflow: hidden;
    background: var(--gray-light);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-image-link:hover .card-image {
    transform: scale(1.05);
}

.card-image-placeholder {
    height: 180px;
    background: var(--subtle-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.card-image-placeholder::after {
    content: "📄";
    font-size: 3rem;
    opacity: 0.3;
}

.card-content {
    padding: 1.5rem;
}

/* Post Card Typography - ähnlich wie post-preview */
.post-card .category {
    color: var(--accent-orange);
    font-family: var(--sans-font);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.post-card h2 {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    font-weight: 700;
}

.post-card h2 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-card h2 a:hover {
    color: var(--accent-blue);
}

.post-card .subtitle {
    font-family: var(--sans-font);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gray-dark);
    margin: 0 0 1rem;
}

.post-card time {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

.posts h2 {
    margin-bottom: 1rem;
}

.post-preview {
    padding: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.post-preview .category {
    color: var(--accent-orange);  /* Orange für Kategorien */
    font-family: var(--sans-font);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.post-preview h2 {
    font-family: var(--serif-font);
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    font-weight: 700;
}

.post-preview h2 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-preview h2 a:hover {
    color: var(--accent-blue);
}

.post-preview .subtitle {
    font-family: var(--sans-font);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-dark);
    margin: 0 0 1rem;
}

.post-preview time {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

/* Post Metadaten */
.post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9em;
    color: #666;
    margin: 0.5rem 0;
}

.reading-time {
    color: #666;
}

.read-more {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: var(--sans-font);
    font-weight: 500;
    color: var(--accent-color);
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Artikel-Seite im Magazin-Stil */
.post {
    max-width: var(--article-width);
    margin: 0 auto;
}

.post-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.post-header .kicker {
    color: var(--accent-orange);  /* Orange für bessere Unterscheidung */
    font-family: var(--sans-font);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.post-header h1 {
    font-family: var(--serif-font);
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin: 0 0 1.5rem;
    letter-spacing: -0.03em;
}

.post-header .subtitle {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    line-height: 1.4;
    font-style: italic;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    display: block;
}

.post-header time {
    color: var(--gray-medium);
    display: inline-block;
    margin: 0;
}

/* Sprach-Toggle */
.language-toggle {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: var(--sans-font);
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
    background: #ccc;
    border-radius: 12px;
    transition: background 0.3s;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-btn.active .toggle-switch {
    background: var(--accent-color);
}

.toggle-btn.active .toggle-switch::after {
    transform: translateX(26px);
}

/* Einfache Sprache Hinweis */
.simple-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.simple-notice p {
    margin: 0;
}

/* Post-Content im Magazin-Stil */
.post-content {
    font-family: var(--serif-font);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Drop Cap für ersten Absatz */
.post-content > p:first-of-type::first-letter {
    float: left;
    font-family: var(--serif-font);
    font-size: 5rem;
    line-height: 0.8;
    font-weight: 900;
    margin: 0.1em 0.1em 0 0;
    color: var(--accent-blue);
}

.post-content h2 {
    font-family: var(--serif-font);
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.post-content h3 {
    font-family: var(--sans-font);
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 1.5em;
}

/* Pull Quotes */
.post-content blockquote {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    line-height: 1.4;
    font-style: italic;
    border-left: 4px solid var(--accent-blue);
    margin: 2.5rem -2rem;
    padding: 1.5rem 2rem;
    background: var(--subtle-bg);
}

/* Links im Artikel */
.post-content a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 1px;
    transition: all 0.2s ease;
}

.post-content a:hover {
    color: var(--gray-dark);
    text-decoration-thickness: 2px;
}

/* Einfache Sprache spezifisch */
.simple-content {
    background: var(--subtle-bg);
    padding: 2rem;
    margin: -2rem;
}

.simple-content p {
    max-width: 65ch;
}

/* Featured Images */
.featured-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2rem -2rem 3rem;  /* Negative margin für volle Breite */
    border-radius: 0;
    display: block;
}

/* Im Artikel schmaler */
.post .featured-image {
    margin: 2rem 0 3rem;
    border-radius: 4px;
}

/* Post Navigation (prev/next) */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.post-navigation > div {
    flex: 1;
}

.nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 0.25rem;
    font-family: var(--sans-font);
}

.post-navigation a {
    font-weight: 600;
    font-family: var(--sans-font);
}

/* Navigation */
.post-nav {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.back-link {
    font-family: var(--sans-font);
}

/* Statische Seiten */
.page h1 {
    margin-bottom: 1.5rem;
}

.page-content {
    font-size: 1.05em;
    line-height: 1.7;
}

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content ul {
    margin: 1rem 0 1rem 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* Suche */
.search-toggle {
    cursor: pointer;
}

.search-container {
    position: fixed;
    top: 80px; /* Unter dem Header */
    left: 0;
    right: 0;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.search-container.active {
    transform: translateY(0);
}

.search-input {
    width: 100%;
    padding: 1rem;
    font-size: 1.1em;
    font-family: var(--sans-font);
    border: none;
    border-bottom: 2px solid var(--accent-color);
    background: transparent;
    outline: none;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem 0;
}

.search-result {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.search-result:last-child {
    border-bottom: none;
}

.search-result h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2em;
}

.search-result .subtitle {
    color: #666;
    margin: 0.25rem 0;
    font-size: 0.95em;
}

.search-result .excerpt {
    margin: 0.5rem 0;
    color: #555;
    line-height: 1.5;
}

.search-result .meta {
    font-size: 0.85em;
    color: #999;
}

.search-result mark {
    background: #ffeb3b;
    padding: 0.1em 0.2em;
    border-radius: 2px;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
    background: #fafafa;
}

.gallery-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: #fafafa;
    padding: 40px;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-link:hover .gallery-overlay {
    opacity: 1;
}

.gallery-link:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-zoom {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}

.gallery-caption p {
    margin: 0;
    color: var(--gray-dark);
}

/* Contact Page - Minimal */
.contact-minimal {
    max-width: 500px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.contact-minimal h1 {
    font-family: var(--serif-font);
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 4rem;
    text-align: center;
}

.contact-info {
    display: grid;
    gap: 3rem;
}

.contact-item h2 {
    font-family: var(--sans-font);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.75rem;
    color: var(--gray-dark);
}

.contact-item a {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.contact-item a:hover {
    color: var(--accent-blue);
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--subtle-bg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1em;
    margin: 0 0 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    color: #666;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        padding-top: 70px;
    }

    .site-header {
        padding: 1rem 0;
    }

    /* Homepage Hero Mobile */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-image {
        height: 250px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-meta {
        font-size: 0.85rem;
    }

    /* Magazin Grid Mobile */
    .magazine-grid {
        grid-template-columns: 1fr;
    }

    /* Artikel Mobile */
    .post-header h1 {
        font-size: 2rem;
    }

    .post-header .subtitle {
        font-size: 1.25rem;
    }

    /* Drop Cap kleiner auf Mobile */
    .post-content > p:first-of-type::first-letter {
        font-size: 3.5rem;
    }

    /* Pull Quotes anpassen */
    .post-content blockquote {
        margin: 2rem 0;
        font-size: 1.25rem;
    }

    .simple-content {
        padding: 1rem;
        margin: -1rem;
    }

    /* Mobile Navigation */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-color);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .main-nav li {
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Post Navigation auf Mobile */
    .post-navigation {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-next {
        text-align: left;
        border-top: 1px solid var(--border-color);
        padding-top: 1.5rem;
    }

    /* Post Meta */
    .post-meta {
        flex-wrap: wrap;
    }

    /* Contact Page Mobile */
    .contact-minimal h1 {
        font-size: 2rem;
    }

    .contact-item a {
        font-size: 1.25rem;
    }

    /* Footer auf Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    /* Suche auf Mobile */
    .search-container {
        top: 70px; /* Angepasst an mobile Header-Höhe */
    }

    .search-input {
        font-size: 1em;
        padding: 0.75rem;
    }

    .search-results {
        max-height: 300px;
    }
}