/*
Theme Name: Taurus
Theme URI: 
Author: 
Author URI: 
Description: Ein WordPress Theme mit Open Sans Schriftart und konfigurierbaren Bühnen
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taurus
*/

/* Open Sans Font - Lokal eingebunden (WOFF2) */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('force-open-sans/OpenSans-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('force-open-sans/OpenSans-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('force-open-sans/OpenSans-ExtraBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('force-open-sans/OpenSans-Italic.woff2') format('woff2');
}

/* Zusätzliche Gewichtungen für bessere Flexibilität */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('force-open-sans/OpenSans-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('force-open-sans/OpenSans-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url('force-open-sans/OpenSans-SemiBoldItalic.woff2') format('woff2');
}

/* Force Open Sans für alle Elemente */
* {
    font-family: 'Open Sans', sans-serif !important;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

/* Intro Bühne - Fullscreen */
.intro-stage {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}

.intro-stage-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.intro-stage-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-stage-content p,
.intro-stage-content .intro-text {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.intro-stage-button {
    display: inline-block;
    padding: 15px 40px;
    background: #dc2626;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    text-transform: uppercase;
}

.intro-stage-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.intro-stage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Hauptmenü */
.main-header {
    background: #dc2626;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
}

.header-logo img {
    max-height: 50px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-button {
    padding: 10px 20px;
    background: #fff;
    color: #dc2626;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
    font-weight: 600;
}

.header-button:hover {
    background: #b91c1c;
    color: #fff;
}

/* Header Search */
.header-search {
    display: flex;
    align-items: center;
    position: relative;
}

.header-search .search-toggle {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    z-index: 2;
}

.header-search .search-toggle:hover {
    color: rgba(255,255,255,0.7);
}

.header-search .search-toggle svg {
    width: 20px;
    height: 20px;
}

.header-search .search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #dc2626;
    padding: 0;
    z-index: 1;
}

.header-search.active .search-form {
    opacity: 1;
    visibility: visible;
    width: 300px;
    padding: 5px 10px;
    border-radius: 4px;
}

.header-search .search-field {
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
    width: 100%;
    transition: background 0.3s, border-color 0.3s;
    flex: 1;
}

.header-search .search-field::placeholder {
    color: rgba(255,255,255,0.7);
}

.header-search .search-field:focus {
    outline: none;
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.header-search .search-submit {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    flex-shrink: 0;
}

.header-search .search-submit:hover {
    color: rgba(255,255,255,0.7);
}

.header-search .search-submit svg {
    width: 20px;
    height: 20px;
}

.social-media-icons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.social-media-icons a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin: 0 5px;
}

.social-media-icons a svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.social-media-icons a:hover {
    color: rgba(255,255,255,0.7);
}

.header-menu {
    padding: 0 30px;
}

.header-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.header-menu ul li {
    margin: 0;
}

.header-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 0;
    display: block;
    transition: all 0.3s;
}

.header-menu ul li a:hover {
    background: #fff;
    color: #333;
    padding: 15px 20px;
    margin: 0 -20px;
}

.header-menu ul li.current-menu-item > a,
.header-menu ul li.current_page_item > a,
.header-menu ul li.current-menu-ancestor > a,
.header-menu ul li.current-menu-parent > a {
    background: #fff;
    color: #333;
    padding: 15px 20px;
    margin: 0;
    font-weight: 600;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #dc2626;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow: hidden;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 80px 0 0 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.mobile-menu-nav {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    padding: 0 30px;
}

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

.mobile-menu-list li {
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-list li a {
    display: block;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
    font-size: 14px;
}

.mobile-menu-list li a:hover {
    color: rgba(255,255,255,0.7);
}

.mobile-menu-search {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
}

.mobile-menu-search .search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-search .search-field {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
}

.mobile-menu-search .search-field::placeholder {
    color: rgba(255,255,255,0.7);
}

.mobile-menu-search .search-field:focus {
    outline: none;
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.mobile-menu-search .search-submit {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.mobile-menu-search .search-submit:hover {
    background: rgba(255,255,255,0.2);
}

.mobile-menu-search .search-submit svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-footer {
    flex-shrink: 0;
    padding: 20px 30px 30px 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #dc2626;
    margin-top: auto;
    position: sticky;
    bottom: 0;
}

.mobile-header-button {
    padding: 10px 20px;
    background: #fff;
    color: #dc2626;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    font-size: 14px;
}

.mobile-header-button:hover {
    background: #b91c1c;
    color: #fff;
}

.mobile-social-media-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mobile-social-media-icons a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s, background 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.mobile-social-media-icons a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-social-media-icons a:hover {
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.2);
}

/* Overlay wenn Menü offen */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

/* Desktop only */
.desktop-only {
    display: block;
}

/* Kleine Bühne */
.small-stage {
    padding: 60px 30px;
    background: #f9f9f9;
}

.small-stage-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.small-stage-image {
    flex: 1;
}

.small-stage-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.small-stage-content {
    flex: 1;
}

.small-stage-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.small-stage-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.small-stage-button {
    display: inline-block;
    padding: 12px 30px;
    background: #dc2626;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    font-weight: 600;
}

.small-stage-button:hover {
    background: #b91c1c;
}

/* Drei kleine Bühnen nebeneinander */
.three-stages {
    padding: 60px 30px;
    background: #fff;
}

.three-stages-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stage-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.stage-item-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.stage-item-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.stage-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.stage-item p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.stage-item .button {
    display: inline-block;
    padding: 10px 20px;
    background: #dc2626;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    font-weight: 600;
}

.stage-item .button:hover {
    background: #b91c1c;
}

/* Beiträge und Termine */
.posts-events-section {
    padding: 60px 30px;
    background: #fff;
}

.posts-events-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 40px;
}

.posts-section h2,
.events-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.posts-section h2 a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.posts-section h2 a:hover {
    color: #333;
    text-decoration: none;
}

.posts-section h2 a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #dc2626;
    transition: width 0.3s ease;
}

.posts-section h2 a:hover::after {
    width: 100%;
}

.post-item,
.event-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.post-item:last-child,
.event-item:last-child {
    border-bottom: none;
}

.post-item-thumbnail {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.post-item-thumbnail a {
    display: block;
    text-decoration: none;
}

.post-item-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s;
    max-height: 400px;
    object-fit: cover;
}

.post-item-thumbnail:hover img {
    transform: scale(1.05);
}

.post-item h3,
.event-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.post-item h3 a,
.event-item h3 a {
    color: #333;
    text-decoration: none;
}

.post-item h3 a:hover,
.event-item h3 a:hover {
    color: #dc2626;
}

.post-item .post-meta,
.event-item .event-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.post-item .post-excerpt,
.event-item .event-excerpt {
    color: #666;
    margin-bottom: 15px;
}

.post-item .read-more,
.event-item .read-more {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
}

.post-item .read-more:hover,
.event-item .read-more:hover {
    color: #b91c1c;
    text-decoration: underline;
}

/* Event/Termin spezifische Styles */
.event-item {
    position: relative;
    padding-left: 80px;
}

.event-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    text-align: center;
    background: #dc2626;
    color: #fff;
    border-radius: 8px;
    padding: 10px 5px;
}

.event-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.9;
}

.event-time {
    font-size: 14px;
    color: #dc2626;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-time .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.event-item-thumbnail {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.event-item-thumbnail a {
    display: block;
    text-decoration: none;
}

.event-item-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s;
    max-height: 300px;
    object-fit: cover;
}

.event-item-thumbnail:hover img {
    transform: scale(1.05);
}

/* Fußzeilen-Bühnen */
.footer-stages {
    padding: 60px 30px;
    background: #f9f9f9;
}

.footer-stages-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-stage-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.footer-stage-item .subline {
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-stage-item h3,
.footer-stage-item .widget-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.footer-stage-item h3 a,
.footer-stage-item .widget-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-stage-item h3 a:hover,
.footer-stage-item .widget-title a:hover {
    color: #dc2626;
}

.footer-stage-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.footer-stage-image {
    margin-bottom: 20px;
}

.footer-stage-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.footer-stage-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-stage-buttons a {
    display: inline-block;
    padding: 8px 15px;
    background: #dc2626;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
    font-weight: 600;
}

.footer-stage-buttons a:hover {
    background: #b91c1c;
}

/* True Footer */
.true-footer {
    background: #991b1b;
    color: #fff;
    padding: 40px 30px;
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.footer-social a svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.footer-social a:hover {
    color: rgba(255,255,255,0.7);
}

.footer-logo img {
    max-height: 40px;
    width: auto;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: rgba(255,255,255,0.7);
}

/* WebKampa Badge */
.webkampa-badge {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 9999;
    max-width: calc(100% - 32px);
}

.webkampa-badge a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #434953;
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    font-size: 12px;
    line-height: 1.3;
}

.webkampa-badge img {
    height: 22px;
    width: auto;
    display: block;
}

.webkampa-badge a:hover {
    background: #3a4048;
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-stage-content h1 {
        font-size: 32px;
    }
    
    .intro-stage-content p,
    .intro-stage-content .intro-text {
        font-size: 16px;
    }
    
    .intro-stage-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .header-top {
        flex-direction: row;
        gap: 15px;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-menu {
        display: none;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .small-stage-container {
        flex-direction: column;
    }
    
    .three-stages-container {
        grid-template-columns: 1fr;
    }

    
    .posts-events-container {
        grid-template-columns: 1fr;
    }

    .footer-stages-container {
        grid-template-columns: repeat(2, 1fr);
    }

    
    .true-footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-stages-container {
        grid-template-columns: 1fr;
    }
}

/* Single Post Styles */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
}

.entry-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.entry-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.entry-meta {
    font-size: 14px;
    color: #999;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.entry-meta .posted-on,
.entry-meta .byline {
    display: inline-block;
}

.post-thumbnail {
    margin-bottom: 30px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: left;
}

.entry-content p {
    text-align: left;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.entry-content h2 {
    font-size: 28px;
}

.entry-content h3 {
    font-size: 24px;
}

.entry-content h4 {
    font-size: 20px;
}

.entry-content a {
    color: #dc2626;
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
}

.post-categories,
.post-tags {
    margin-bottom: 10px;
}

.post-categories a,
.post-tags a {
    color: #dc2626;
    text-decoration: none;
    margin-right: 10px;
}

.post-categories a:hover,
.post-tags a:hover {
    text-decoration: underline;
}

/* Event Date Display in Single View */
.entry-meta .event-date-display,
.entry-meta .event-time-display {
    display: inline-block;
    margin-right: 20px;
    color: #dc2626;
    font-weight: 600;
    font-size: 16px;
}

.entry-meta .event-date-display .dashicons,
.entry-meta .event-time-display .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 5px;
}

.entry-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-navigation {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation a {
    display: block;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
}

.post-navigation a:hover {
    background: #eee;
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
}

.post-navigation .nav-title {
    display: block;
    font-weight: 600;
    color: #dc2626;
}

/* Search Results */
.search-results {
    margin-top: 40px;
}

.search-result-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

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

.search-result-item .entry-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.search-result-item .entry-title a {
    color: #333;
    text-decoration: none;
}

.search-result-item .entry-title a:hover {
    color: #dc2626;
}

.search-result-item .entry-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.search-result-item .entry-summary {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.search-result-item .read-more {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
}

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

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.search-form-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.search-form-wrapper .search-form {
    display: flex;
    gap: 10px;
}

.search-form-wrapper .search-field {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.search-form-wrapper .search-field:focus {
    outline: none;
    border-color: #dc2626;
}

.search-form-wrapper .search-submit {
    padding: 12px 25px;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form-wrapper .search-submit:hover {
    background: #b91c1c;
}

/* 404 Error Page */
.error-404 {
    text-align: center;
    padding: 60px 20px;
}

.error-404 .page-title {
    font-size: 120px;
    font-weight: 700;
    color: #dc2626;
    line-height: 1;
    margin-bottom: 20px;
}

.error-404 .error-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.error-404 .page-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-404 .page-content > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-404 .error-actions {
    margin-bottom: 50px;
}

.error-404 .error-actions .button {
    display: inline-block;
    padding: 15px 30px;
    background: #dc2626;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
    margin-bottom: 30px;
}

.error-404 .error-actions .button:hover {
    background: #b91c1c;
}

.error-404 .error-actions .search-form {
    max-width: 400px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.error-404 .error-actions .search-field {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.error-404 .error-actions .search-field:focus {
    outline: none;
    border-color: #dc2626;
}

.error-404 .error-actions .search-submit {
    padding: 12px 25px;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.error-404 .error-actions .search-submit:hover {
    background: #b91c1c;
}

.error-404 .error-suggestions {
    margin-top: 50px;
    text-align: left;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.error-404 .error-suggestions h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.error-404 .error-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-404 .error-suggestions li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-size: 16px;
}

.error-404 .error-suggestions li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

@media (max-width: 768px) {
    .entry-title {
        font-size: 28px;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .header-search.active .search-form {
        width: 250px;
    }
    
    .error-404 .page-title {
        font-size: 80px;
    }
    
    .error-404 .error-title {
        font-size: 24px;
    }
    
    .error-404 .error-actions .search-form {
        flex-direction: column;
    }
    
    .error-404 .error-actions .search-submit {
        width: 100%;
    }
}

/* Aktuelles Seite - 3-Spalten Layout */
.aktuelles-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.aktuelles-header {
    margin-bottom: 50px;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.aktuelles-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.aktuelles-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.aktuelles-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.aktuelles-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.aktuelles-post-thumbnail {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #f5f5f5;
}

.aktuelles-post-thumbnail a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.aktuelles-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.aktuelles-post-card:hover .aktuelles-post-thumbnail img {
    transform: scale(1.1);
}

.aktuelles-post-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.aktuelles-post-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.aktuelles-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.aktuelles-post-title a:hover {
    color: #dc2626;
}

.aktuelles-post-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.aktuelles-post-date,
.aktuelles-post-author {
    display: inline-block;
}

.aktuelles-post-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.aktuelles-read-more {
    display: inline-block;
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
    margin-top: auto;
}

.aktuelles-read-more:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.aktuelles-pagination {
    margin-top: 60px;
    text-align: center;
}

.aktuelles-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.aktuelles-pagination .page-numbers li {
    margin: 0;
}

.aktuelles-pagination .page-numbers a,
.aktuelles-pagination .page-numbers span {
    display: inline-block;
    padding: 10px 15px;
    background: #f9f9f9;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
    font-weight: 600;
}

.aktuelles-pagination .page-numbers a:hover {
    background: #dc2626;
    color: #fff;
}

.aktuelles-pagination .page-numbers .current {
    background: #dc2626;
    color: #fff;
}

.aktuelles-no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
}

/* Responsive Design für Aktuelles */
@media (max-width: 1024px) {
    .aktuelles-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .aktuelles-wrapper {
        padding: 40px 20px;
    }
    
    .aktuelles-title {
        font-size: 32px;
    }
    
    .aktuelles-posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .aktuelles-post-content {
        padding: 20px;
    }
    
    .aktuelles-post-title {
        font-size: 20px;
    }
}
