/* Verbesserte News-Section Styles */
.news-section {
    background: linear-gradient(135deg, var(--background-dark) 0%, #1a0000 100%);
    padding: var(--section-spacing) 2rem;
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0,0 L60,60 M60,0 L0,60' stroke='%23ff0000' stroke-width='0.5' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.news-section .section-title {
    position: relative;
    /*display: inline-block;*/
    margin: 0 auto 2rem;
}

.news-section .section-title::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.news-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.news-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.news-card:hover::after {
    opacity: 1;
}

.news-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.3) 0%,
                transparent 30%,
                transparent 60%,
                rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.news-card:hover .news-image::before {
    opacity: 1;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-category {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.news-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    padding: 6px 16px;
}

.news-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    background-color: var(--card-bg);
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.news-title a {
    background: linear-gradient(90deg, var(--text-light), var(--primary-color));
    background-size: 0% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.news-title a:hover {
    color: var(--primary-color);
    background-size: 100% 2px;
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-light);
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.news-card:hover .news-date i {
    transform: translateY(-2px);
}

.news-link {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.news-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
    z-index: -1;
}

.news-link:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    transform: translateY(-3px);
}

.news-link:hover::before {
    left: 100%;
}

/* "Alle News anzeigen" Button */
.view-all-btn {
    display: block;
    margin: 4rem auto 0;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    background-size: 200% auto;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: all 0.5s ease;
    text-decoration: none;
    max-width: 260px;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.view-all-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
}

.view-all-btn:hover {
    background-position: right center;
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.4);
}

.view-all-btn:hover::after {
    left: 100%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card:hover {
        transform: translateY(-10px) scale(1.01);
    }
}
/* Verbessertes Responsive Layout für die Info-Cards im Hero-Bereich */

/* Basis-Layout für die Info-Grid */
.info-grid {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    z-index: 4;
}

.info-card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-accent);
    border-radius: 5px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-medium);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.info-card-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-card-text {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
}

/* Large Desktop Layout (weniger Abstand nach unten) */
@media (min-width: 1441px) {
    .info-grid {
        bottom: 4rem;
    }
}

/* Standard Desktop Layout */
@media (max-width: 1440px) and (min-width: 1201px) {
    .info-grid {
        bottom: 3rem;
    }
}

/* Small Desktop Layout */
@media (max-width: 1200px) and (min-width: 993px) {
    .info-grid {
        bottom: 2.5rem;
        gap: 1.2rem;
    }
    
    .info-card-title {
        font-size: 1.6rem;
    }
    
    .info-card-text {
        font-size: 0.9rem;
    }
}

/* Tablet Layout */
@media (max-width: 992px) {
    .info-grid {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        grid-template-columns: repeat(3, 1fr);
        margin: 2rem auto;
        padding: 0 2rem;
    }
    
    .hero {
        padding-bottom: 1rem;
    }
    
    .info-card-title {
        font-size: 1.5rem;
    }
    
    .info-card-text {
        font-size: 0.9rem;
    }
}

/* Small Tablet Layout */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 1.5rem auto;
    }
    
    .info-card {
        padding: 1.2rem 1rem;
    }
    
    .info-card-title {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .info-card-text {
        font-size: 0.8rem;
    }
}

/* Mobile Layout */
@media (max-width: 576px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem auto 0.5rem;
    }
    
    .info-card {
        padding: 1.2rem;
        display: grid;
        grid-template-columns: auto 1fr;
        text-align: left;
        align-items: center;
        gap: 1rem;
    }
    
    .info-card-title {
        font-size: 1.4rem;
        margin-bottom: 0;
    }
    
    .hero {
        min-height: auto;
        height: auto;
        padding-bottom: 1rem;
        display: flex;
        flex-direction: column;
    }
    
    .hero-content {
        padding: 7rem 1rem 2rem;
    }
    
    .video-background, 
    .hero-overlay {
        position: fixed;
        height: 100vh;
    }
}

/* Extra Small Mobile Layout */
@media (max-width: 380px) {
    .info-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Höhenanpassungen für kleinere Bildschirme */
@media (max-height: 700px) and (min-width: 993px) {
    .info-grid {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 2rem auto 0;
    }
    
    .hero {
        height: auto;
        min-height: 600px;
        padding-bottom: 1rem;
    }
}

/* Für Mobilgeräte im Querformat */
@media (max-height: 500px) and (min-width: 500px) {
    .hero {
        height: auto;
        padding: 5rem 0 1rem;
    }
    
    .info-grid {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 1rem auto 0;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}
/* Optimiertes Hero-Layout für bessere Responsivität */

/* Basis Hero-Layout mit verbesserten Größenangaben */
.hero {
    position: relative;
    height: 95vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
    max-width: 800px;
    margin-bottom: 6rem; /* Wichtig: Platz für die Info-Karten lassen */
}

/* Anpassungen für verschiedene Bildschirmgrößen */

/* Large Desktop (größer als 1440px) */
@media (min-width: 1441px) {
    .hero {
        min-height: 800px;
    }
    
    .hero-content {
        margin-bottom: 8rem;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 2.8rem;
    }
}

/* Standard Desktop */
@media (max-width: 1440px) and (min-width: 1201px) {
    .hero-content {
        margin-bottom: 7rem;
    }
}

/* Small Desktop */
@media (max-width: 1200px) and (min-width: 993px) {
    .hero {
        min-height: 650px;
    }
    
    .hero-content {
        margin-bottom: 6rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero {
        /*height: auto;*/
        min-height: auto;
        padding: 8rem 0 2rem;
    }
    
    .hero-content {
        margin-bottom: 2rem;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    
    /*.video-background {
        position: fixed;
    } 
     Fester Hintergrund für Tablets 
    .hero-overlay {
        position: fixed;
    }*/
}

/* Small Tablet */
@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 1rem;
    }
    
    .hero-content {
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .button-accent {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero {
        padding: 6rem 0 0;
    }
    
    .hero-content {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    
    .button-accent {
        padding: 0.7rem 1.8rem;
        font-size: 0.85rem;
    }
}

/* Sehr kleine Mobilgeräte */
@media (max-width: 380px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

/* Anpassungen für Geräte mit niedriger Höhe */
@media (max-height: 700px) and (min-width: 768px) {
    .hero {
        height: auto;
        min-height: 600px;
        padding: 6rem 0 2rem;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        margin-bottom: 1.5rem;
    }
}

/* Für Mobilgeräte im Querformat (landscape) */
@media (max-height: 500px) and (min-width: 500px) {
    .hero {
        padding: 5rem 0 1rem;
        height: auto;
    }
    
    .hero-content {
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text {
        margin-bottom: 1rem;
    }
    
    .button-accent {
        padding: 0.5rem 1.5rem;
    }
}
.pulse-animation {
                animation: button-pulse 2s infinite;
            }
            
            @keyframes button-pulse {
                0% {
                    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
                }
                70% {
                    box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
                }
                100% {
                    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
                }
            }
            
            .animate-visible {
                opacity: 1 !important;
                transform: translateY(0) !important;
            }
.breadcrumbs {
    padding: 0.75rem 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    position: relative;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.9);
}