/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000000;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
    border-bottom: 2px solid #f0f0f0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.logo {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.9;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

/* Navigation Styles */
.navigation {
    flex: 1;
    margin-left: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: block;
    padding: 15px 20px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-list > li > a:hover,
.nav-list > li > a:focus {
    background-color: #f8f9fa;
    border-bottom-color: #e4000e;
    color: #000000;
}

.dropdown-toggle i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #000000;
    padding-left: 25px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 700px;
    padding: 0;
    text-align: left;
    color: white;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
    animation: fadeInUp 1.5s ease-out;
    margin-left: 0;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    line-height: 1.2;
    color: white;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 400;
    opacity: 0.95;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

/* Main Content Area */
.main-content {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.content-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
}

/* Sidebar with Calendars */
.sidebar {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    height: fit-content;
}

.calendar-section {
    padding: 20px;
}

.calendar-section:not(:last-child) {
    border-bottom: 2px solid #f0f0f0;
}

.calendar-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.calendar-embed {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.calendar-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Events Section */
.content-area {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 40px;
}

.events-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #ffb3b3;
    padding-bottom: 15px;
}

.event-card {
    display: flex;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 5px solid #e4000e;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.event-date {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e4000e, #ff4d4d);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.event-content {
    flex: 1;
}

.event-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e4000e;
    margin-bottom: 10px;
}

.event-time,
.event-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-time i,
.event-location i {
    color: #e4000e;
    width: 16px;
}

.event-content p:last-child {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-top: 15px;
}

/* Footer */
.footer {
    background-color: #e4000e;
    color: white;
    padding: 30px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffb3b3;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        display: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        border-top: 1px solid #f0f0f0;
    }
    
    .navigation.mobile-active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
    }
    
    .nav-list > li > a {
        border-bottom: 1px solid #f0f0f0;
        color: #000000;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f8f9fa;
        border-radius: 0;
    }
    
    .dropdown-menu a {
        color: #000000;
        padding-left: 30px;
    }
    
    .dropdown-menu a:hover {
        background-color: #e9ecef;
        padding-left: 35px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        padding: 0 30px;
        justify-content: center;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-text {
        text-align: center;
        max-width: 90%;
        margin-left: 0;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }
    
    .content-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-area {
        padding: 30px 20px;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        align-self: center;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-text {
        margin-left: 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .events-section h2 {
        font-size: 1.5rem;
    }
    
    .event-card {
        padding: 20px 15px;
    }
    
    .calendar-section {
        padding: 15px;
    }
    
    .calendar-embed {
        height: 300px;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    }
    50% {
        text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 20px rgba(255,255,255,0.3);
    }
}

.slide.active {
    animation: slideIn 1.5s ease-in-out;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('../images/sottrum-landschaft.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: white;
    padding: 80px 0 60px 0;
    margin-top: 0;
    min-height: 300px;
}

/* Alternative background image approach */
.page-header.with-bg-image {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('../images/sottrum-landschaft.jpg');
}

.page-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

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

.breadcrumb i {
    margin: 0 10px;
    font-size: 0.8rem;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Page Content Styles */
.page-content {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.content-container-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    overflow: hidden;
}

.section-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 40px;
    border-bottom: 2px solid #e4000e;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-header h2 i {
    font-size: 1.5rem;
}

.section-content {
    padding: 40px;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Text and Image Layout */
.text-image-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Special alignment for board section */
.board-section .text-image-layout {
    align-items: flex-start;
}

.board-section .image-content {
    margin-top: 50px; /* Align with first board member box */
}

/* Responsive adjustment for board section */
@media (max-width: 768px) {
    .board-section .image-content {
        margin-top: 0; /* Reset margin on mobile */
    }
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Kleinere Glockenbilder auf der Martin-Luther-Kirche Seite */
.bell-image .content-image {
    width: 60%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-section h2 i {
    color: #e4000e;
    font-size: 1.2rem;
}

.legal-section h3 {
    color: #555;
    margin: 20px 0 15px 0;
    font-size: 1.2rem;
}

.legal-section h4 {
    color: #666;
    margin: 15px 0 10px 0;
    font-size: 1.1rem;
}

.legal-list {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #e4000e;
}

.impressum-info h3 {
    color: #e4000e;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-details {
    margin-top: 20px;
}

.contact-details i {
    color: #e4000e;
    margin-right: 5px;
    width: 16px;
}

.register-info,
.nonprofit-info {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

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

.board-member {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #e4000e;
}

.board-member h4 {
    color: #e4000e;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.representation-note {
    grid-column: 1 / -1;
    background: #fffacd;
    padding: 15px;
    border-radius: 6px;
    font-style: italic;
    border-left: 3px solid #ffd700;
}

.tax-note {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-style: italic;
}

.purpose-list {
    margin: 20px 0;
}

.purpose-list h4 {
    margin-bottom: 10px;
    color: #333;
}

.editorial-info {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.image-credits {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.legal-contact {
    background: #f0fff0;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #32cd32;
}

.legal-link {
    color: #e4000e;
    text-decoration: underline;
    font-weight: 500;
}

.legal-link:hover {
    color: #b30009;
    text-decoration: none;
}

.last-updated {
    background: #e6f3ff;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    font-style: italic;
    text-align: center;
    border: 1px solid #cce7ff;
}

/* Disclaimer Section Styles */
.disclaimer-section {
    background: #fffbf0;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #ff9800;
}

.disclaimer-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ffe0b2;
}

.disclaimer-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.disclaimer-item h3 {
    color: #e65100;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.representative-info {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #2196f3;
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.goal-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.goal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e4000e, #ff4d4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.goal-icon i {
    font-size: 2rem;
    color: white;
}

.goal-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

/* Activities List */
.activities-list {
    display: grid;
    gap: 25px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #e4000e;
}

.activity-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e4000e, #ff4d4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon i {
    font-size: 1.5rem;
    color: white;
}

.activity-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border: 2px solid #e4000e;
}

/* Board Members List */
.board-list {
    margin: 25px 0;
}

.board-member {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e4000e;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.board-member:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(228, 0, 14, 0.1);
}

.board-member strong {
    color: #000000;
    margin-right: 10px;
    min-width: 180px;
}

/* Statute Styles */
.statute-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.statute-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.statute-list li::before {
    content: "•";
    color: #e4000e;
    font-size: 1.2rem;
    font-weight: bold;
    position: absolute;
    left: 10px;
    top: 8px;
}

/* Section headers in statute */
.content-section .section-header h2 i {
    margin-right: 10px;
}

/* Paragraph spacing in statute */
.section-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Sottrum Navigation Grid */
.sottrum-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.nav-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-card:hover {
    border-color: #e4000e;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(228, 0, 14, 0.15);
}

.nav-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e4000e, #ff4d4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.nav-card-icon i {
    font-size: 2.2rem;
    color: white;
}

.nav-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.nav-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive navigation grid */
@media (max-width: 768px) {
    .sottrum-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .nav-card {
        padding: 20px 15px;
    }
    
    .nav-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .nav-card-icon i {
        font-size: 1.8rem;
    }
    
    .nav-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .sottrum-nav-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Sottrum Content Styles */
.external-link {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #e4000e;
    margin: 20px 0;
}

.external-link p {
    margin: 0;
}

.external-link a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

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

.external-link i {
    color: #e4000e;
    margin-right: 10px;
}

.contact-info-small {
    background: #fff5f5;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #ffb3b3;
    margin: 15px 0;
}

.contact-info-small p {
    margin: 0;
    color: #000000;
    font-size: 0.95rem;
}

.info-highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    padding: 15px 20px;
    border-radius: 8px;
    border: 2px solid #e4000e;
    margin: 15px 0;
}

.info-highlight p {
    margin: 0;
    color: #000000;
    font-weight: 500;
}

.internal-links {
    margin: 20px 0;
}

.internal-links .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Business List Styles */
.business-list {
    display: grid;
    gap: 20px;
    margin-top: 25px;
}

.business-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e4000e;
    transition: all 0.3s ease;
}

.business-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.business-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e4000e, #ff4d4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.business-icon i {
    font-size: 1.5rem;
    color: white;
}

.business-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 5px 0;
}

.business-content p {
    color: #666;
    margin: 0 0 10px 0;
    font-size: 0.95rem;
}

.business-link {
    margin-top: 10px;
}

.business-link a {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.business-link a:hover {
    color: #c30009;
    text-decoration: underline;
}

.business-link i {
    font-size: 0.8rem;
}

/* Work in Progress Styles */
.work-in-progress {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border: 2px solid #e4000e;
    border-radius: 15px;
    text-align: left;
}

.wip-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e4000e, #ff4d4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.wip-icon i {
    font-size: 2.5rem;
    color: white;
}

.wip-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e4000e;
    margin: 0 0 15px 0;
}

.wip-content p {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.wip-content p:last-child {
    margin-bottom: 0;
}

/* Pulse animation for work in progress icon */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(228, 0, 14, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(228, 0, 14, 0);
    }
}

/* Responsive work in progress */
@media (max-width: 768px) {
    .work-in-progress {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .wip-icon {
        width: 80px;
        height: 80px;
    }
    
    .wip-icon i {
        font-size: 2rem;
    }
    
    .wip-content h3 {
        font-size: 1.5rem;
    }
    
    .wip-content p {
        font-size: 1rem;
    }
}

/* Vehicle Grid Styles */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.vehicle-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e4000e;
    transition: all 0.3s ease;
}

.vehicle-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.vehicle-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e4000e, #ff4d4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vehicle-icon i {
    font-size: 1.5rem;
    color: white;
}

.vehicle-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 5px 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.vehicle-content p {
    color: #e4000e;
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .vehicle-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vehicle-item {
        padding: 20px;
        text-align: center;
        flex-direction: column;
    }
    
    .vehicle-content h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .vehicle-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vehicle-item {
        padding: 15px;
    }
    
    .vehicle-content h4 {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* Press Article Styles */
.press-article {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.press-article:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.article-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px 30px;
    border-bottom: 2px solid #e4000e;
}

.article-header h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 15px 0;
}

.article-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.article-date,
.article-source {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-date i,
.article-source i {
    color: #e4000e;
}

.article-content {
    padding: 30px;
}

.article-image {
    margin-bottom: 25px;
}

.press-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.article-summary h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
}

.article-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-highlights li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.article-highlights li:last-child {
    border-bottom: none;
}

/* Church Page Styles */
.church-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.church-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e4000e;
}

.church-category h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.church-category h3 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

.church-list {
    list-style: none;
    padding: 0;
}

.church-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.church-list li:last-child {
    border-bottom: none;
}

.church-list li i {
    color: #666;
    margin-right: 0.75rem;
    width: 16px;
    text-align: center;
}

.external-link {
    margin-top: 1rem;
}

.info-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-left: 4px solid #e4000e;
}

.info-box h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-box h3 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

.info-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #e4000e !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-link:hover {
    background: #c5000c !important;
    color: white !important;
    transform: translateY(-1px);
    text-decoration: none !important;
}

.btn-link:visited {
    color: white !important;
    background: #e4000e !important;
}

.btn-link:active {
    color: white !important;
    background: #c5000c !important;
}

.btn-link i {
    margin-right: 0.5rem;
    color: white !important;
}

/* Dorfgemeinschaftshaus Styles */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.facility-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.facility-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.facility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e4000e, #c5000c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.facility-icon i {
    color: white;
    font-size: 1.5rem;
}

.facility-item h3 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.facility-item p {
    color: #666;
    line-height: 1.5;
}

.outdoor-features {
    margin-top: 1.5rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #e4000e;
    margin-right: 0.75rem;
    width: 16px;
}

.rental-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.cost-breakdown {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e4000e;
}

.cost-breakdown h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cost-breakdown h3 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-item.total {
    border-top: 2px solid #e4000e;
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.1rem;
}

.cost-value {
    font-weight: 600;
    color: #e4000e;
}

.additional-info {
    background: white;
    border: 1px solid #e9ecef;
    padding: 1.5rem;
    border-radius: 8px;
}

.additional-info h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.additional-info h3 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

.contact-rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e4000e;
}

.contact-info h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info h3 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-details p i {
    color: #e4000e;
    margin-right: 0.5rem;
    width: 16px;
}

.external-links {
    background: white;
    border: 1px solid #e9ecef;
    padding: 1.5rem;
    border-radius: 8px;
}

.external-links h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.external-links h3 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.document-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.document-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.document-icon i {
    color: white;
    font-size: 1.5rem;
}

.document-item h3 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.document-item p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.document-details {
    margin-bottom: 1rem;
}

.file-size {
    background: #f8f9fa;
    color: #666;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Dorfgeschichte Styles */
.etymology-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #e4000e;
}

.etymology-box h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.etymology-box h3 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

.related-places {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.related-places li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.related-places li i {
    color: #e4000e;
    margin-right: 0.75rem;
    width: 16px;
}

.linguistic-analysis {
    margin-top: 2rem;
}

.linguistic-analysis h3 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.linguistic-analysis h3 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

.word-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.word-part {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.word-part h4 {
    color: #e4000e;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.word-part p {
    color: #666;
    line-height: 1.6;
}

.word-part em {
    font-style: italic;
    color: #888;
}

.conclusion-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e4000e;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.conclusion-box h4 {
    color: #e4000e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.conclusion-box h4 i {
    margin-right: 0.5rem;
}

.conclusion-box p {
    margin-bottom: 0.5rem;
}

.conclusion-box .question {
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.alternative-theory {
    background: #fff9e6;
    border: 1px solid #f4d03f;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #f39c12;
}

.alternative-theory h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.alternative-theory h3 i {
    color: #f39c12;
    margin-right: 0.5rem;
}

.timeline-info {
    margin-top: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e4000e, #c5000c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.timeline-icon i {
    color: white;
    font-size: 1.2rem;
}

.timeline-content h3 {
    color: #e4000e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.sources {
    margin-top: 1.5rem;
}

.source-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.source-item h4 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.source-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.author-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.author-info,
.contact-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.author-info h3,
.contact-info h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info h3 i,
.contact-info h3 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

.related-articles {
    margin-top: 1.5rem;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.article-preview {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.article-preview:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.article-preview h4 {
    color: #000000;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.article-preview h4 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

.article-preview p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.article-preview .status {
    background: #ffeaa7;
    color: #d63031;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.article-preview .article-link {
    background: #e4000e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.article-preview .article-link:hover {
    background: #c5000c;
}

/* School Page Specific Styles */
.historical-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.photo-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(228, 0, 14, 0.15);
}

.photo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.photo-caption {
    padding: 1.5rem;
}

.photo-caption h4 {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.photo-caption p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Historical Chronicle Styles */
.historical-chronicle {
    max-width: 800px;
    margin: 0 auto;
}

.chronicle-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.chronicle-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.chronicle-content p {
    margin-bottom: 1.5rem;
}

.chronicle-content h3 {
    color: #e4000e;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

/* Teachers Timeline */
.teachers-timeline {
    margin: 2rem 0;
}

.teacher-entry {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #f8f9fa 100%);
    border-left: 4px solid #e4000e;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.teacher-entry:before {
    content: '';
    position: absolute;
    left: -8px;
    top: 2rem;
    width: 16px;
    height: 16px;
    background: #e4000e;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #e4000e;
}

.teacher-entry h4 {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.teacher-years {
    color: #e4000e;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 2px solid #e4000e;
}

.teacher-details p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Source Note */
.source-note {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    font-size: 0.95rem;
}

.source-note h3 {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.source-note p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.source-reference {
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

/* Under Construction Styles */
.under-construction {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #f8f9fa 100%);
    border-radius: 16px;
    border: 2px solid #e9ecef;
    margin: 2rem 0;
}

.construction-icon {
    margin-bottom: 2rem;
}

.construction-icon i {
    font-size: 4rem;
    color: #e4000e;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.construction-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.construction-message {
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.construction-message .lead-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e4000e;
    margin-bottom: 1rem;
}

.construction-message p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.construction-details {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto 0 auto;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.construction-details h3 {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.planned-content {
    list-style: none;
    padding: 0;
    text-align: left;
}

.planned-content li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.planned-content li:last-child {
    border-bottom: none;
}

.planned-content li i {
    color: #e4000e;
    font-size: 1rem;
}

/* Info Request Section */
.info-request {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #e4000e;
    margin: 2rem 0;
}

.info-request h3 {
    color: #000000;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-request p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info i {
    color: #e4000e;
    width: 20px;
}

/* Related Articles */
.related-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.related-article-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(228, 0, 14, 0.15);
    border-color: #e4000e;
    text-decoration: none;
    color: inherit;
}

.related-article-card i {
    font-size: 2rem;
    color: #e4000e;
    margin-bottom: 1rem;
    display: block;
}

.related-article-card h4 {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-article-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Placeholder Images */
.placeholder-image {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 1.5rem 0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.placeholder-image i {
    color: #6c757d;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.placeholder-image p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.placeholder-image strong {
    color: #000000;
    font-weight: 600;
}

.placeholder-image small {
    color: #999;
    font-style: italic;
    display: block;
    margin-top: 0.5rem;
}

/* Eulenspiegelpark Specific Styles */
.park-intro {
    text-align: center;
    margin: 2rem 0;
}

.slogan-banner {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.park-slogan {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.park-slogan i {
    color: #ff6b35;
    margin-right: 1rem;
}

.park-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.park-image-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.park-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(228, 0, 14, 0.2);
}

.park-image-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.park-image-card.full-image img {
    height: auto;
    object-fit: contain;
    max-height: 400px;
}

.image-caption {
    padding: 1.5rem;
}

.image-caption h4 {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.image-caption p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.park-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.fact-item {
    background: linear-gradient(135deg, #fff5f5 0%, #f8f9fa 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #e4000e;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fact-item i {
    font-size: 1.5rem;
    color: #e4000e;
}

.park-facts-inline {
    background: linear-gradient(135deg, #fff5f5 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
}

.fact-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.95rem;
}

.fact-inline i {
    color: #e4000e;
    font-size: 1rem;
}

.fact-inline strong {
    color: #000000;
}

@media (max-width: 768px) {
    .park-facts-inline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fact-inline {
        justify-content: flex-start;
    }
}

.attractions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.attraction-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.attraction-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(228, 0, 14, 0.15);
}

.attraction-item.highlight {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #fffdf7 0%, #fff9e6 100%);
}

.attraction-item i {
    font-size: 1.8rem;
    color: #e4000e;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.attraction-details h4 {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.attraction-details p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.additional-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #6c757d;
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.price-table {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.price-table h4 {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

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

.price-category {
    color: #555;
    font-weight: 500;
    font-size: 0.9rem;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 1rem;
}

.price-amount {
    color: #e4000e;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.group-price, .evening-price {
    background: #f8f9fa;
    margin: 0 -1rem;
    padding: 1rem 1rem;
    border-radius: 8px;
}

.operating-company {
    background: linear-gradient(135deg, #fff5f5 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #e9ecef;
}

.operating-company h4 {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.visitor-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-highlight {
    text-align: center;
    background: linear-gradient(135deg, #e4000e, #ff4d4d);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(228, 0, 14, 0.3);
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.special-memory {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.memory-icon {
    background: #ffc107;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.memory-icon i {
    font-size: 1.8rem;
    color: white;
}

.memory-content h4 {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.memory-content p {
    color: #6c5d00;
    line-height: 1.6;
    margin: 0;
}

.attraction-legacy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.legacy-item {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 1.5rem;
}

.legacy-item h4 {
    color: #155724;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legacy-item p {
    color: #155724;
    line-height: 1.6;
    margin: 0;
}

.site-reuse {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.reuse-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #17a2b8;
}

.reuse-item h4 {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.reuse-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Burg Wohldenbruch Specific Styles */
.historical-map {
    text-align: center;
    margin: 2rem auto;
    max-width: 1000px;
}

.full-width-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto 1rem auto;
    display: block;
}

.image-caption {
    background: #f8f9fa;
    border-left: 4px solid #e4000e;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.historical-note {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.historical-note p {
    margin: 0;
    color: #155724;
    line-height: 1.6;
}

.findings-list {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 1.5rem 0;
}

.findings-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.findings-list li:last-child {
    border-bottom: none;
}

.findings-list li::before {
    content: "🏺";
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.placeholder-note {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.placeholder-note p {
    margin: 0;
    color: #856404;
    font-weight: 500;
    font-style: italic;
}

.author-note {
    text-align: right;
    font-style: italic;
    color: #666;
    margin: 2rem 0;
    padding: 1rem;
    border-top: 2px solid #e9ecef;
}

.sources-content {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 1rem 0;
}

.source-group {
    margin-bottom: 2rem;
}

.source-group:last-child {
    margin-bottom: 0;
}

.source-group h4 {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e4000e;
    padding-bottom: 0.5rem;
}

.sources-list {
    line-height: 1.6;
    color: #555;
}

.sources-list li {
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.sources-list em {
    color: #000000;
    font-style: italic;
}

/* Feld und Flur Specific Styles */
.historical-quote {
    margin: 2rem 0;
}

.historical-quote blockquote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #6c757d;
    padding: 1.5rem;
    border-radius: 8px;
    font-style: italic;
    position: relative;
}

.historical-quote blockquote::before {
    content: """;
    font-size: 3rem;
    color: #000000;
    position: absolute;
    top: -10px;
    left: 1rem;
    font-family: Georgia, serif;
}

.historical-quote blockquote p {
    margin: 0;
    line-height: 1.7;
    color: #000000;
}

.historical-quote cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-weight: 600;
    color: #000000;
}

.definition-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #e4000e;
}

.definition-box h3 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.definition-box h3 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

.definition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.definition-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
}

.definition-item h4 {
    color: #e4000e;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.definition-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.definition-note {
    background: #fff3cd;
    color: #856404;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #ffeaa7;
    margin-top: 1rem;
    font-style: italic;
}

/* Work in Progress Sektion Styles */
.work-in-progress-section {
    margin: 2rem 0;
}

.work-in-progress-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e4000e;
    position: relative;
    overflow: hidden;
}

.work-in-progress-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(228, 0, 14, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.work-in-progress-icon {
    font-size: 4rem;
    color: #e4000e;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.work-in-progress-content {
    position: relative;
    z-index: 2;
}

.work-in-progress-content h2 {
    color: #000000;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.work-in-progress-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.planned-features {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.planned-features h3 {
    color: #e4000e;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.planned-features h3 i {
    margin-right: 0.5rem;
}

.planned-features ul {
    list-style: none;
    padding: 0;
}

.planned-features ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.planned-features ul li:last-child {
    border-bottom: none;
}

.planned-features ul li i {
    color: #e4000e;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.contact-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    margin: 0.75rem 0;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-info a {
    color: #e4000e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #c30011;
    text-decoration: underline;
}

/* Archaeological Images Styles for Burg Wohldenbruch */
.historical-document, 
.archaeological-image, 
.historical-building, 
.archaeological-finds, 
.coin-find,
.metal-detector-image {
    margin: 2rem auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    text-align: center;
    max-width: 1000px;
}

.historical-document img,
.archaeological-image img,
.historical-building img,
.archaeological-finds img,
.coin-find img,
.metal-detector-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.coin-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.image-caption {
    text-align: center;
    padding: 1.5rem;
}

/* Archaeological Findings Formatting */
.finds-section {
    margin: 3rem auto;
    max-width: 1000px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e4000e;
}

.finds-year {
    color: #e4000e;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(228, 0, 14, 0.1);
}

.finds-year i {
    margin-right: 0.75rem;
    font-size: 1.2em;
}

.spectacular-find {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #8b4513;
    border: 2px solid #daa520;
}

.finds-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.archaeological-findings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.find-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #e4000e;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.find-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(228, 0, 14, 0.15);
}

.find-icon {
    background: linear-gradient(135deg, #e4000e, #c30011);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.find-content h4 {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.find-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Spectacular Find 2022 Styles */
.spectacular-findings {
    margin: 2rem 0;
}

.main-find-highlight {
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
    border: 3px solid #daa520;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
}

.find-icon-large {
    background: linear-gradient(135deg, #daa520, #b8860b);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.find-content-large h4 {
    color: #8b4513;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.coin-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.detail-item i {
    color: #daa520;
    font-size: 0.9rem;
}

.additional-finds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.additional-find {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border-left: 3px solid #daa520;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.additional-find i {
    color: #daa520;
    font-size: 1.1rem;
}

.additional-find span {
    color: #555;
    line-height: 1.4;
}

/* Responsive Design for Finds */
@media (max-width: 768px) {
    .archaeological-findings-grid {
        grid-template-columns: 1fr;
    }
    
    .main-find-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .coin-details {
        justify-content: center;
    }
    
    .additional-finds {
        grid-template-columns: 1fr;
    }
}

/* Ansichtskarten (Postcards) Gallery Styles */
.postcard-intro {
    margin: 2rem 0 3rem 0;
    text-align: center;
}

.intro-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e4000e;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    font-style: italic;
}

.postcards-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
    padding: 0;
}

.postcard-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
}

.postcard-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #8b4513, #cd853f, #daa520);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.postcard-item:hover::before {
    opacity: 1;
}

.postcard-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(228, 0, 14, 0.2);
    border-color: #e4000e;
}

/* Era-specific styling */
.postcard-item.early-1900s::before {
    background: linear-gradient(90deg, #8b4513, #a0522d, #cd853f);
}

.postcard-item.mid-1900s::before {
    background: linear-gradient(90deg, #4682b4, #5f9ea0, #87ceeb);
}

.postcard-item.late-1900s::before {
    background: linear-gradient(90deg, #228b22, #32cd32, #9acd32);
}

.postcard-item.modern::before {
    background: linear-gradient(90deg, #e4000e, #ff6347, #ffa500);
}

.postcard-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.postcard-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
    transition: transform 0.4s ease;
}

.postcard-item:hover .postcard-image img {
    transform: scale(1.05);
}

.postcard-caption {
    padding: 1.5rem;
}

.postcard-date {
    background: linear-gradient(135deg, #e4000e, #c30011);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(228, 0, 14, 0.3);
}

.postcard-caption h3 {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.postcard-caption p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Era-specific date badge colors */
.early-1900s .postcard-date {
    background: linear-gradient(135deg, #8b4513, #a0522d);
}

.mid-1900s .postcard-date {
    background: linear-gradient(135deg, #4682b4, #5f9ea0);
}

.late-1900s .postcard-date {
    background: linear-gradient(135deg, #228b22, #32cd32);
}

.modern .postcard-date {
    background: linear-gradient(135deg, #e4000e, #ff6347);
}

/* Responsive Design for Postcards */
@media (max-width: 768px) {
    .postcards-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .postcard-image {
        height: 220px;
    }
    
    .postcard-caption {
        padding: 1.25rem;
    }
    
    .postcard-caption h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .postcard-image {
        height: 180px;
    }
    
    .postcard-caption {
        padding: 1rem;
    }
    
    .postcard-date {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
}

.historical-map {
    text-align: center;
    margin: 2rem 0;
}

.map-image {
    max-width: 100%;
    height: auto;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.ownership-system {
    margin-top: 2rem;
}

.ownership-system h3 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.ownership-system h3 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

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

.ownership-level {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
}

.ownership-level h4 {
    color: #000000;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.ownership-level ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ownership-level li {
    padding: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}

.system-note {
    background: #e7f3ff;
    color: #0c5460;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #b8daff;
    font-weight: 500;
    text-align: center;
}

.example-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.name-explanation {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
}

.name-explanation h4 {
    color: #e4000e;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.name-explanation h4 i {
    margin-right: 0.5rem;
}

.flurname-examples {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flurname-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.flurname-item h3 {
    background: linear-gradient(135deg, #e4000e, #c5000c);
    color: white;
    margin: 0;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.flurname-item h3 i {
    margin-right: 0.5rem;
}

.flurname-content {
    padding: 1.5rem;
}

.name-evolution,
.name-origin,
.similar-example,
.historical-names,
.three-field-system {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
}

.name-evolution h4,
.name-origin h4,
.similar-example h4,
.historical-names h4,
.three-field-system h4 {
    color: #000000;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.evolution-list {
    list-style: none;
    padding: 0;
}

.evolution-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.evolution-list li:last-child {
    border-bottom: none;
}

.explanation {
    background: #e7f3ff;
    border: 1px solid #b8daff;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
}

.flurname-overview {
    text-align: center;
    margin: 2rem 0;
}

.overview-map {
    max-width: 100%;
    height: auto;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.overview-map:hover {
    transform: scale(1.02);
}

.map-legend {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: left;
}

.map-legend h4 {
    color: #000000;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.map-legend h4 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

/* Martin-Luther-Kirche Styles */
.dating-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #e4000e;
}

.dating-box h3 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.dating-box h3 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

.dating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.dating-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    text-align: center;
}

.dating-item.conclusion {
    background: linear-gradient(135deg, #e7f3ff, #f8f9fa);
    border: 2px solid #e4000e;
}

.dating-item h4 {
    color: #e4000e;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.building-phases {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.phase-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.phase-item h3 {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    margin: 0;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.phase-item h3 i {
    margin-right: 0.5rem;
}

.phase-content {
    padding: 1.5rem;
}

.dimensions-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
}

.dimensions-box h4 {
    color: #000000;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.dimensions-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dimensions-box li {
    padding: 0.25rem 0;
    color: #666;
}

.note {
    background: #fff3cd;
    color: #856404;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #ffeaa7;
    margin-top: 1rem;
    font-style: italic;
}

.timeline-events {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.timeline-event {
    display: flex;
    align-items: flex-start;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.timeline-year {
    background: linear-gradient(135deg, #e4000e, #c5000c);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: #000000;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.bells-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.bell-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.bell-item.large-bell {
    border-left: 4px solid #d4af37;
}

.bell-item.small-bell {
    border-left: 4px solid #c0392b;
}

.bell-item.steel-bell {
    border-left: 4px solid #7f8c8d;
    display: flex;
    align-items: center;
    padding: 1.5rem;
}

.bell-item h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0 1.5rem;
}

.bell-item h3 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

.bell-details {
    padding: 0 1.5rem 1.5rem;
}

.bell-content {
    flex: 1;
}

.bell-specs {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: #000000;
}

.spec-value {
    font-weight: 600;
    color: #e4000e;
}

.inscription-box {
    background: #e7f3ff;
    border: 1px solid #b8daff;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
}

.inscription-box h4 {
    color: #0c5460;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.latin-text {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #000000;
    background: white;
    padding: 0.75rem;
    border-radius: 4px;
    margin: 0.5rem 0;
}

.translation {
    color: #000000;
    font-weight: 500;
    margin: 0.5rem 0;
}

.iconography,
.war-history,
.replacement-story {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
}

.iconography h4,
.war-history h4,
.replacement-story h4 {
    color: #000000;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.war-history h4 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

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

.iconography li {
    padding: 0.25rem 0;
    color: #666;
}

.interior-features {
    margin-top: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.feature-item h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-item h3 i {
    color: #e4000e;
    margin-right: 0.5rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.restoration-link {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
}

.restoration-link h4 {
    color: #000000;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.chronik-intro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.chronik-image {
    flex-shrink: 0;
}

.chronik-image img {
    max-width: 150px;
    height: auto;
}

.chronik-text {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 1rem;
}

/* Responsive Adjustments for Martin-Luther-Kirche */
@media (max-width: 768px) {
    .dating-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-event {
        flex-direction: column;
        align-items: stretch;
    }
    
    .timeline-year {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: flex-start;
        max-width: 150px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bell-item.steel-bell {
        flex-direction: column;
        align-items: stretch;
    }
    
    .chronik-intro {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .chronik-image {
        text-align: center;
    }
}

/* Responsive Adjustments for Feld und Flur */
@media (max-width: 768px) {
    .definition-grid,
    .ownership-grid {
        grid-template-columns: 1fr;
    }
    
    .historical-quote blockquote {
        padding: 1rem;
    }
    
    .historical-quote blockquote::before {
        font-size: 2rem;
        top: -5px;
    }
    
    .flurname-item h3 {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
    }
    
    .flurname-content {
        padding: 1rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .facility-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .rental-info,
    .contact-rental-grid,
    .document-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .word-breakdown,
    .author-contact,
    .article-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.article-highlights li::before {
    content: "✓";
    color: #e4000e;
    font-weight: bold;
    font-size: 1.1rem;
    position: absolute;
    left: 0;
    top: 10px;
}

.press-contact p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Responsive press styles */
@media (max-width: 768px) {
    .article-header {
        padding: 20px;
    }
    
    .article-header h3 {
        font-size: 1.3rem;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* Membership Info */
.membership-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.benefits-list i {
    color: #e4000e;
    font-size: 0.9rem;
}

.cta-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #e4000e;
}

.cta-box h4 {
    color: #e4000e;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #e4000e, #ff4d4d);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c30009, #e4000e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 0, 14, 0.3);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-item {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item i {
    font-size: 2.5rem;
    color: #e4000e;
    margin-bottom: 15px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-header,
    .section-content {
        padding: 25px 20px;
    }
    
    .text-image-layout,
    .membership-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activity-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Additional responsive rules for very small screens */
@media (max-width: 480px) {
    .goals-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .goal-item,
    .contact-item {
        padding: 20px 15px;
    }
}

/* Mobile optimizations for gewerbe.html */
@media (max-width: 768px) {
    /* External links mobile optimization */
    .external-link {
        padding: 12px 15px;
        margin: 15px 0;
    }
    
    .external-link a {
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        hyphens: auto;
        line-height: 1.4;
        font-size: 0.9rem;
    }
    
    /* Business list mobile optimization */
    .business-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        gap: 15px;
    }
    
    .business-icon {
        width: 50px;
        height: 50px;
        align-self: flex-start;
    }
    
    .business-icon i {
        font-size: 1.3rem;
    }
    
    .business-content h4 {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .business-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .business-link a {
        font-size: 0.85rem;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
    }
    
    /* Section headers mobile optimization */
    .section-header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Internal links mobile optimization */
    .internal-links {
        margin: 15px 0;
    }
    
    .internal-links .btn {
        margin-right: 8px;
        margin-bottom: 8px;
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    /* Very small screens optimization */
    .business-item {
        padding: 12px;
        gap: 12px;
    }
    
    .business-icon {
        width: 45px;
        height: 45px;
    }
    
    .business-icon i {
        font-size: 1.2rem;
    }
    
    .business-content h4 {
        font-size: 1rem;
    }
    
    .business-content p {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.2rem;
    }
    
    .external-link {
        padding: 10px 12px;
    }
    
    .external-link a {
        font-size: 0.85rem;
    }
    
    .internal-links .btn {
        font-size: 0.85rem;
        padding: 6px 10px;
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}

/* Mobile optimizations for dorfgemeinschaftshaus.html */
@media (max-width: 768px) {
    /* Facility grid mobile optimization */
    .facility-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .facility-item {
        padding: 1rem;
    }
    
    .facility-item h3 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .facility-item p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Rental info mobile optimization */
    .rental-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .cost-breakdown {
        padding: 1rem;
    }
    
    .cost-breakdown h3 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .cost-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .cost-label {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .cost-value {
        font-size: 1rem;
        align-self: flex-end;
    }
    
    /* Additional info mobile optimization */
    .additional-info {
        padding: 1rem;
    }
    
    .additional-info h3 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .additional-info p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Contact rental grid mobile optimization */
    .contact-rental-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .contact-info h3 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        flex-wrap: wrap;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .external-links {
        padding: 1rem;
    }
    
    .external-links h3 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .external-links .external-link a {
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        hyphens: auto;
        font-size: 0.9rem;
    }
    
    /* Document grid mobile optimization */
    .document-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .document-item {
        padding: 1rem;
    }
    
    .document-item h3 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .document-item p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .btn-link {
        font-size: 0.9rem;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        hyphens: auto;
        display: block;
        text-align: center;
        padding: 8px 12px;
    }
    
    /* Feature list mobile optimization */
    .feature-list li {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    /* Very small screens optimization */
    .facility-item {
        padding: 0.75rem;
    }
    
    .facility-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .facility-icon i {
        font-size: 1.3rem;
    }
    
    .facility-item h3 {
        font-size: 0.95rem;
    }
    
    .facility-item p {
        font-size: 0.85rem;
    }
    
    .cost-breakdown {
        padding: 0.75rem;
    }
    
    .cost-item {
        padding: 0.4rem 0;
    }
    
    .cost-item.total {
        font-size: 1rem;
    }
    
    .contact-info,
    .external-links,
    .additional-info {
        padding: 0.75rem;
    }
    
    .document-item {
        padding: 0.75rem;
    }
    
    .document-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .document-icon i {
        font-size: 1.3rem;
    }
    
    .btn-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

/* Mobile optimizations for der-name-sottrum.html */
@media (max-width: 768px) {
    /* Etymology box mobile optimization */
    .etymology-box {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .etymology-box h3 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Related places list mobile optimization */
    .related-places li {
        padding: 0.4rem 0;
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Linguistic analysis mobile optimization */
    .linguistic-analysis h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .word-breakdown {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .word-part {
        padding: 1rem;
    }
    
    .word-part h4 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .word-part p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Conclusion box mobile optimization */
    .conclusion-box {
        padding: 1rem;
        margin-top: 1rem;
        text-align: left;
    }
    
    .conclusion-box h4 {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .conclusion-box p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Alternative theory mobile optimization */
    .alternative-theory {
        padding: 1rem;
    }
    
    .alternative-theory h3 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .alternative-theory p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Timeline mobile optimization */
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .timeline-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: center;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Sources mobile optimization */
    .source-item {
        padding: 1rem;
    }
    
    .source-item h4 {
        font-size: 0.95rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .source-item p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Author contact mobile optimization */
    .author-contact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .author-info,
    .contact-info {
        padding: 1rem;
    }
    
    .author-info h3,
    .contact-info h3 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .contact-info .external-link a {
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        hyphens: auto;
        font-size: 0.9rem;
    }
    
    /* Article grid mobile optimization */
    .article-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .article-preview {
        padding: 1rem;
    }
    
    .article-preview h4 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .article-preview p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .article-preview .article-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Very small screens optimization */
    .etymology-box {
        padding: 0.75rem;
    }
    
    .word-part {
        padding: 0.75rem;
    }
    
    .word-part h4 {
        font-size: 0.95rem;
    }
    
    .word-part p {
        font-size: 0.85rem;
    }
    
    .conclusion-box {
        padding: 0.75rem;
    }
    
    .conclusion-box h4 {
        font-size: 1rem;
    }
    
    .timeline-item {
        padding: 0.75rem;
    }
    
    .timeline-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.75rem;
    }
    
    .timeline-icon i {
        font-size: 1.1rem;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
    }
    
    .source-item {
        padding: 0.75rem;
    }
    
    .author-info,
    .contact-info {
        padding: 0.75rem;
    }
    
    .article-preview {
        padding: 0.75rem;
    }
    
    .article-preview h4 {
        font-size: 0.95rem;
    }
    
    .article-preview p {
        font-size: 0.85rem;
    }
    
    .article-preview .article-link {
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem;
    }
}

/* Mobile optimizations for feld-und-flur.html */
@media (max-width: 768px) {
    /* Historical quote mobile optimization */
    .historical-quote {
        margin: 1.5rem 0;
    }
    
    .historical-quote blockquote {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .historical-quote blockquote::before {
        font-size: 2.5rem;
        top: -5px;
        left: 0.75rem;
    }
    
    .historical-quote blockquote p {
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .historical-quote cite {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Definition box mobile optimization */
    .definition-box {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .definition-box h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .definition-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .definition-item {
        padding: 0.75rem;
    }
    
    .definition-item h4 {
        font-size: 0.95rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .definition-item p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .definition-note {
        padding: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Ownership system mobile optimization */
    .ownership-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .ownership-level {
        padding: 0.75rem;
    }
    
    .ownership-level h4 {
        font-size: 0.9rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .ownership-level li {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .system-note {
        padding: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Example box mobile optimization */
    .example-box {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .example-box p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Name explanation mobile optimization */
    .name-explanation {
        padding: 0.75rem;
    }
    
    .name-explanation h4 {
        font-size: 0.95rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .name-explanation p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Flurname examples mobile optimization */
    .flurname-examples {
        gap: 1.5rem;
    }
    
    .flurname-item h3 {
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .flurname-content {
        padding: 1rem;
    }
    
    .flurname-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Name evolution mobile optimization */
    .name-evolution,
    .name-origin,
    .similar-example,
    .historical-names,
    .three-field-system {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }
    
    .name-evolution h4,
    .name-origin h4,
    .similar-example h4,
    .historical-names h4,
    .three-field-system h4 {
        font-size: 0.95rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .name-evolution p,
    .name-origin p,
    .similar-example p,
    .historical-names p,
    .three-field-system p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .evolution-list li {
        padding: 0.4rem 0;
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .three-field-system ul li {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Explanation box mobile optimization */
    .explanation {
        padding: 0.75rem;
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Map legend mobile optimization */
    .map-legend {
        padding: 0.75rem;
        text-align: left;
    }
    
    .map-legend h4 {
        font-size: 0.95rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .map-legend p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Contact info mobile optimization */
    .contact-info {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .contact-info .external-link a {
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        hyphens: auto;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Very small screens optimization */
    .historical-quote blockquote {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .historical-quote blockquote::before {
        font-size: 2rem;
        top: 0px;
        left: 0.5rem;
    }
    
    .definition-box {
        padding: 0.75rem;
    }
    
    .definition-item {
        padding: 0.5rem;
    }
    
    .definition-item h4 {
        font-size: 0.9rem;
    }
    
    .definition-item p {
        font-size: 0.85rem;
    }
    
    .ownership-level {
        padding: 0.5rem;
    }
    
    .ownership-level h4 {
        font-size: 0.85rem;
    }
    
    .ownership-level li {
        font-size: 0.8rem;
    }
    
    .flurname-item h3 {
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
    }
    
    .flurname-content {
        padding: 0.75rem;
    }
    
    .name-evolution,
    .name-origin,
    .similar-example,
    .historical-names,
    .three-field-system {
        padding: 0.5rem;
    }
    
    .name-evolution h4,
    .name-origin h4,
    .similar-example h4,
    .historical-names h4,
    .three-field-system h4 {
        font-size: 0.9rem;
    }
    
    .evolution-list li {
        font-size: 0.85rem;
    }
    
    .map-legend {
        padding: 0.5rem;
    }
    
    .map-legend h4 {
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 0.75rem;
    }
}

/* Mobile optimizations for martin-luther-kirche.html */
@media (max-width: 768px) {
    /* Dating box mobile optimization */
    .dating-box {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .dating-box h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .dating-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .dating-item {
        padding: 0.75rem;
    }
    
    .dating-item h4 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .dating-item p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Building phases mobile optimization */
    .building-phases {
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .phase-item h3 {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .phase-content {
        padding: 1rem;
    }
    
    .phase-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .dimensions-box {
        padding: 0.75rem;
    }
    
    .dimensions-box h4 {
        font-size: 0.95rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .dimensions-box li {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .note {
        padding: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Timeline events mobile optimization */
    .timeline-events {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .timeline-event {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .timeline-year {
        margin-right: 0;
        margin-bottom: 1rem;
        min-width: auto;
        width: 100%;
        text-align: center;
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Bells grid mobile optimization */
    .bells-grid {
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .bell-item {
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .bell-item.steel-bell {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .bell-item h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        padding: 0 1rem;
    }
    
    .bell-details {
        padding: 0 1rem 1rem;
    }
    
    .bell-specs {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 0.4rem 0;
    }
    
    .spec-label {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .spec-value {
        font-size: 1rem;
        align-self: flex-end;
    }
    
    /* Inscription box mobile optimization */
    .inscription-box {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }
    
    .inscription-box h4 {
        font-size: 0.95rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .latin-text {
        padding: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .translation {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Iconography and history sections mobile optimization */
    .iconography,
    .war-history,
    .replacement-story {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }
    
    .iconography h4,
    .war-history h4,
    .replacement-story h4 {
        font-size: 0.95rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .iconography p,
    .war-history p,
    .replacement-story p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .iconography li {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Feature grid mobile optimization */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-item h3 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Chronik section mobile optimization */
    .chronik-intro {
        flex-direction: column;
        gap: 1rem;
    }
    
    .chronik-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Restoration link mobile optimization */
    .restoration-link {
        margin: 1rem 0;
    }
    
    .restoration-link h4 {
        font-size: 0.95rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .restoration-link .btn-link {
        font-size: 0.9rem;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        hyphens: auto;
        display: block;
        text-align: center;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    /* Very small screens optimization */
    .dating-box {
        padding: 0.75rem;
    }
    
    .dating-item {
        padding: 0.5rem;
    }
    
    .dating-item h4 {
        font-size: 0.95rem;
    }
    
    .phase-item h3 {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem;
    }
    
    .phase-content {
        padding: 0.75rem;
    }
    
    .timeline-event {
        padding: 0.75rem;
    }
    
    .timeline-year {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
    }
    
    .bell-item h3 {
        font-size: 1rem;
        padding: 0 0.75rem;
    }
    
    .bell-details {
        padding: 0 0.75rem 0.75rem;
    }
    
    .bell-specs {
        padding: 0.5rem;
    }
    
    .inscription-box {
        padding: 0.5rem;
    }
    
    .latin-text {
        padding: 0.4rem;
        font-size: 0.8rem;
    }
    
    .iconography,
    .war-history,
    .replacement-story {
        padding: 0.5rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .restoration-link .btn-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    /* Fix for text-image-layout mobile truncation */
    .text-image-layout {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .image-content {
        order: -1; /* Move images above text on mobile */
    }
    
    .image-caption {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        margin-top: 0.75rem !important;
        padding: 0 0.5rem !important;
        text-align: center !important;
    }
    
    .image-caption br {
        display: block !important;
    }
    
    .image-caption em {
        display: block !important;
        margin-top: 0.5rem !important;
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 480px) {
    /* Additional fixes for martin-luther-kirche.html on very small screens */
    .text-image-layout {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .image-caption {
        font-size: 0.8rem !important;
        padding: 0 0.25rem !important;
        margin-top: 0.5rem !important;
    }
    
    .image-caption em {
        font-size: 0.75rem !important;
        margin-top: 0.4rem !important;
    }
}

/* SPECIFIC FIXES for martin-luther-kirche.html image truncation issues */
@media (max-width: 768px) {
    /* Force single column layout for all text-image-layout sections */
    .content-section .text-image-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }
    
    .content-section .text-image-layout .text-content {
        width: 100% !important;
        order: 2 !important;
    }
    
    .content-section .text-image-layout .image-content {
        width: 100% !important;
        order: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Specific fixes for image containers */
    .content-section .image-content img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* Force proper caption display */
    .content-section .image-content .image-caption {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
        margin: 1rem auto 0 auto !important;
        padding: 0 1rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        box-sizing: border-box !important;
    }
    
    /* Ensure line breaks work in captions */
    .content-section .image-content .image-caption br {
        display: block !important;
        margin: 0.5rem 0 !important;
    }
    
    /* Style emphasized text in captions */
    .content-section .image-content .image-caption em {
        display: block !important;
        margin-top: 0.75rem !important;
        font-size: 0.85rem !important;
        color: #777 !important;
        font-style: italic !important;
    }
}

/* Mobile optimizations for schulen.html */
@media (max-width: 768px) {
    /* Page header mobile optimization */
    .page-header-container {
        padding: 1rem;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .page-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .breadcrumb {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .breadcrumb i {
        display: none;
    }
    
    /* Content sections mobile optimization */
    .content-container-single {
        padding: 1rem;
    }
    
    .content-section {
        margin-bottom: 2rem;
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .section-header h2 i {
        margin-right: 0.5rem;
    }
    
    /* Lead text mobile optimization */
    .lead-text {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Historical photos grid mobile optimization */
    .historical-photos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .photo-card {
        background: #f9f9f9;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .photo-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }
    
    .photo-card img:hover {
        opacity: 0.9;
    }
    
    .photo-caption {
        padding: 1rem;
        text-align: center;
    }
    
    .photo-caption h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #2c3e50;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .photo-caption p {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Historical note mobile optimization */
    .historical-note {
        background: #e8f4f8;
        border: 1px solid #b8daff;
        border-radius: 6px;
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .historical-note p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .historical-note strong {
        color: #2c5282;
        font-weight: 600;
    }
    
    /* Timeline events mobile optimization */
    .timeline-events {
        margin: 1.5rem 0;
    }
    
    .timeline-event {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        margin-bottom: 1rem;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .timeline-year {
        background: #3182ce;
        color: white;
        padding: 0.75rem 1rem;
        font-weight: 600;
        font-size: 1rem;
        text-align: center;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: #2d3748;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #4a5568;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .timeline-content em {
        display: block;
        margin-top: 0.75rem;
        font-style: italic;
        color: #718096;
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Park facts inline mobile optimization */
    .park-facts-inline {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .fact-inline {
        background: #f7fafc;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        padding: 1rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .fact-inline i {
        color: #3182ce;
        font-size: 1.1rem;
        margin-top: 0.1rem;
        flex-shrink: 0;
    }
    
    .fact-inline strong {
        color: #2d3748;
        font-weight: 600;
        display: block;
        margin-bottom: 0.25rem;
        font-size: 0.95rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Teachers timeline mobile optimization */
    .teachers-timeline {
        margin: 2rem 0;
    }
    
    .teachers-timeline h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        color: #2d3748;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .teacher-entry {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        margin-bottom: 1.5rem;
        padding: 1.25rem;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .teacher-entry h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #2c5282;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .teacher-years {
        background: #3182ce;
        color: white;
        font-size: 0.85rem;
        font-weight: 500;
        padding: 0.4rem 0.8rem;
        border-radius: 4px;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .teacher-details p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #4a5568;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .teacher-details p:last-child {
        margin-bottom: 0;
    }
    
    .teacher-details strong {
        color: #2d3748;
        font-weight: 600;
    }
    
    /* General text mobile optimization */
    .section-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
        color: #2d3748;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .section-content h3 {
        font-size: 1.15rem;
        margin: 1.75rem 0 1rem 0;
        color: #2c5282;
        border-left: 4px solid #3182ce;
        padding-left: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Modal/Lightbox mobile optimization */
    .modal {
        padding-top: 20px;
    }
    
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 0 auto;
    }
    
    #caption {
        width: 95%;
        max-width: none;
        padding: 15px 10px;
        font-size: 0.9rem;
        line-height: 1.4;
        height: auto;
        min-height: 60px;
    }
    
    .close {
        font-size: 30px;
        right: 20px;
        top: 10px;
    }
}

@media (max-width: 480px) {
    /* Very small screens optimization for schulen.html */
    .content-container-single {
        padding: 0.75rem;
    }
    
    .content-section {
        padding: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.1rem;
    }
    
    .photo-card img {
        height: 200px;
    }
    
    .photo-caption {
        padding: 0.75rem;
    }
    
    .photo-caption h4 {
        font-size: 1rem;
    }
    
    .photo-caption p {
        font-size: 0.85rem;
    }
    
    .timeline-year {
        font-size: 0.9rem;
        padding: 0.6rem 0.75rem;
    }
    
    .timeline-content {
        padding: 0.75rem;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    .teacher-entry {
        padding: 1rem;
    }
    
    .teacher-entry h4 {
        font-size: 1rem;
    }
    
    .teacher-details p {
        font-size: 0.85rem;
    }
    
    .historical-note {
        padding: 0.75rem;
        margin: 1rem 0;
    }
    
    .historical-note p {
        font-size: 0.85rem;
    }
    
    .fact-inline {
        padding: 0.75rem;
    }
    
    .section-content p {
        font-size: 0.9rem;
    }
    
    .section-content h3 {
        font-size: 1rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .modal-content {
        width: 98%;
    }
    
    #caption {
        width: 98%;
        padding: 10px 5px;
        font-size: 0.8rem;
    }
    
    .close {
        font-size: 25px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    /* Additional fixes for very small screens */
    .content-section .text-image-layout {
        gap: 1rem !important;
    }
    
    .content-section .image-content .image-caption {
        font-size: 0.85rem !important;
        padding: 0 0.5rem !important;
        margin: 0.75rem auto 0 auto !important;
    }
    
    .content-section .image-content .image-caption em {
        font-size: 0.8rem !important;
        margin-top: 0.5rem !important;
    }
}

/* Mobile optimizations for eulenspiegelpark.html */
@media (max-width: 768px) {
    /* Price table mobile optimization */
    .pricing-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .price-table {
        padding: 1.5rem;
    }
    
    .price-table h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
        gap: 0.5rem;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .price-category {
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;
        padding-right: 0 !important;
        font-size: 0.95rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        width: 100%;
        margin-bottom: 0.25rem;
    }
    
    .price-amount {
        font-size: 1.1rem;
        font-weight: 700;
        color: #e4000e;
        align-self: flex-end;
    }
    
    .group-price, .evening-price {
        background: #f1f5f9;
        margin: 0 -0.75rem;
        padding: 1rem 0.75rem;
        border-radius: 6px;
        border-left: 4px solid #3182ce;
    }
    
    .group-price .price-category,
    .evening-price .price-category {
        font-weight: 600;
        color: #2d3748;
    }
    
    /* Operating company mobile optimization */
    .operating-company {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .operating-company h4 {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        text-align: left;
    }
    
    .operating-company p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Park images grid mobile optimization */
    .park-images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .park-image-card {
        margin-bottom: 1rem;
    }
    
    .park-image-card.full-image {
        grid-column: 1;
    }
    
    .image-caption h4 {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .image-caption p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Visitor stats mobile optimization */
    .visitor-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .stat-highlight {
        min-width: auto;
        padding: 1.5rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    /* Attractions list mobile optimization */
    .attractions-list {
        gap: 1rem;
    }
    
    .attraction-item {
        padding: 1rem;
        flex-direction: row;
        align-items: center;
    }
    
    .attraction-item i {
        font-size: 1.2rem;
        margin-right: 1rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .attraction-details h4 {
        font-size: 0.95rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Park intro mobile optimization */
    .park-intro {
        margin-bottom: 1.5rem;
    }
    
    .slogan-banner {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .park-slogan {
        font-size: 1.3rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .lead-text {
        font-size: 0.95rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

@media (max-width: 480px) {
    /* Very small screens optimization for eulenspiegelpark.html */
    .price-table {
        padding: 1rem;
    }
    
    .price-table h4 {
        font-size: 1.1rem;
    }
    
    .price-row {
        padding: 0.75rem 0;
    }
    
    .price-category {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .price-amount {
        font-size: 1rem;
    }
    
    .group-price, .evening-price {
        margin: 0 -0.5rem;
        padding: 0.75rem 0.5rem;
    }
    
    .operating-company {
        padding: 1rem;
    }
    
    .operating-company h4 {
        font-size: 1rem;
    }
    
    .operating-company p {
        font-size: 0.85rem;
    }
    
    .stat-highlight {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .park-slogan {
        font-size: 1.1rem;
    }
    
    .lead-text {
        font-size: 0.9rem;
    }
    
    .attraction-item {
        padding: 0.75rem;
    }
    
    .attraction-details h4 {
        font-size: 0.9rem;
    }
    
    .image-caption h4 {
        font-size: 0.95rem;
    }
    
    .image-caption p {
        font-size: 0.8rem;
    }
}

/* Mobile optimizations for burg-wohldenbruch.html */
@media (max-width: 768px) {
    /* Page header mobile optimization */
    .page-header-container {
        padding: 1rem;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .page-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .breadcrumb {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .breadcrumb i {
        display: none;
    }
    
    /* Content sections mobile optimization */
    .content-container-single {
        padding: 1rem;
    }
    
    .content-section {
        margin-bottom: 2rem;
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .section-header h2 i {
        margin-right: 0.5rem;
    }
    
    /* Text content mobile optimization */
    .text-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .text-content p sup {
        font-size: 0.7rem;
        vertical-align: super;
    }
    
    /* Historical images mobile optimization */
    .historical-map {
        margin: 1.5rem 0;
    }
    
    .full-width-image {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        margin-bottom: 1rem;
    }
    
    .historical-document {
        margin: 1.5rem 0;
        background: #f9f9f9;
        padding: 1rem;
        border-radius: 8px;
        border-left: 4px solid #2c5282;
    }
    
    .archaeological-image {
        margin: 1.5rem 0;
        background: #f7fafc;
        padding: 1rem;
        border-radius: 8px;
    }
    
    .historical-building {
        margin: 1.5rem 0;
        background: #fff5f5;
        padding: 1rem;
        border-radius: 8px;
    }
    
    .archaeological-finds {
        margin: 1.5rem 0;
        background: #fffbf5;
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid #e2e8f0;
    }
    
    .coin-find {
        margin: 1.5rem 0;
        text-align: center;
        background: #f0f9ff;
        padding: 1.5rem;
        border-radius: 8px;
        border: 2px solid #3182ce;
    }
    
    .coin-image {
        max-width: 200px;
        width: 100%;
        height: auto;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        margin-bottom: 1rem;
    }
    
    .geo-investigation {
        margin: 1.5rem 0;
        background: #f0fff4;
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid #38a169;
    }
    
    /* Image captions mobile optimization */
    .image-caption {
        margin-top: 1rem;
        padding: 0.75rem;
        background: rgba(255,255,255,0.9);
        border-radius: 6px;
        text-align: center;
    }
    
    .image-caption p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0;
        color: #4a5568;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .image-caption em {
        display: block;
        margin-top: 0.5rem;
        font-size: 0.8rem;
        color: #718096;
        font-style: italic;
    }
    
    .image-caption strong {
        color: #2d3748;
        font-weight: 600;
    }
    
    /* Findings list mobile optimization */
    .findings-list {
        margin: 1.5rem 0;
        padding-left: 0;
        list-style: none;
    }
    
    .findings-list li {
        background: #f7fafc;
        margin-bottom: 0.75rem;
        padding: 0.75rem;
        border-radius: 6px;
        border-left: 3px solid #3182ce;
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Author note mobile optimization */
    .author-note {
        background: #e6fffa;
        border: 1px solid #38b2ac;
        border-radius: 8px;
        padding: 1rem;
        margin: 1.5rem 0;
        text-align: center;
    }
    
    .author-note p {
        margin: 0;
        font-weight: 600;
        color: #234e52;
        font-size: 0.95rem;
    }
    
    /* Sources and literature mobile optimization */
    .sources-content {
        margin: 1.5rem 0;
    }
    
    .source-group {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .source-group h4 {
        color: #2c5282;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 0.5rem;
    }
    
    .sources-list {
        margin: 0;
        padding-left: 1.25rem;
    }
    
    .sources-list li {
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .sources-list em {
        font-style: italic;
        color: #4a5568;
    }
    
    /* Related articles mobile optimization */
    .related-articles {
        margin: 1.5rem 0;
    }
    
    .article-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .article-preview {
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 1rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .article-preview:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .article-preview h4 {
        color: #2c5282;
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .article-preview p {
        color: #4a5568;
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .article-link {
        color: #3182ce;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        padding: 0.5rem 0.75rem;
        background: #f0f9ff;
        border-radius: 4px;
        display: inline-block;
        transition: background-color 0.3s ease;
    }
    
    .article-link:hover {
        background: #dbeafe;
        text-decoration: underline;
    }
    
    /* Modal/Lightbox mobile optimization */
    .modal {
        padding-top: 20px;
    }
    
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 0 auto;
    }
    
    #caption {
        width: 95%;
        max-width: none;
        padding: 15px 10px;
        font-size: 0.9rem;
        line-height: 1.4;
        height: auto;
        min-height: 60px;
    }
    
    .close {
        font-size: 30px;
        right: 20px;
        top: 10px;
    }
}

@media (max-width: 480px) {
    /* Very small screens optimization for burg-wohldenbruch.html */
    .content-container-single {
        padding: 0.75rem;
    }
    
    .content-section {
        padding: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.1rem;
    }
    
    .text-content p {
        font-size: 0.9rem;
    }
    
    .historical-document,
    .archaeological-image,
    .historical-building,
    .archaeological-finds,
    .geo-investigation {
        padding: 0.75rem;
        margin: 1rem 0;
    }
    
    .coin-find {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .coin-image {
        max-width: 150px;
    }
    
    .image-caption {
        padding: 0.5rem;
    }
    
    .image-caption p {
        font-size: 0.8rem;
    }
    
    .image-caption em {
        font-size: 0.75rem;
    }
    
    .findings-list li {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    
    .source-group {
        padding: 0.75rem;
    }
    
    .source-group h4 {
        font-size: 0.95rem;
    }
    
    .sources-list li {
        font-size: 0.8rem;
    }
    
    .article-preview {
        padding: 0.75rem;
    }
    
    .article-preview h4 {
        font-size: 0.9rem;
    }
    
    .article-preview p {
        font-size: 0.8rem;
    }
    
    .article-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .author-note {
        padding: 0.75rem;
    }
    
    .author-note p {
        font-size: 0.9rem;
    }
    
    .modal-content {
        width: 98%;
    }
    
    #caption {
        width: 98%;
        padding: 10px 5px;
        font-size: 0.8rem;
    }
    
    .close {
        font-size: 25px;
        right: 15px;
    }
}

