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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
    width: 100%;
    margin: 0 auto;
    background: #e41d3c;
    color: #FFFFFF;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 100%;
}

.header-content img {
    height: 115px;
    width: auto;
}

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

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

.header-content ul li a.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.header-content ul li a.nav-link:hover {
    color: #9f9f9f;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* Title Section */
.title-section {
    text-align: center;
    padding: 40px 20px;
}

.title-section .vod-title {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.title-section .vod-subtitle {
    font-size: 1.5rem;
    color: #CCCCCC;
    font-weight: normal;
}

/* BEGIN MODAL CSS */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.6);
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-content {
            background-color: #ffffff;
            margin: 2% auto;
            padding: 0;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            border-radius: 8px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: slideIn 0.3s ease;
            overflow: hidden;
            color:#333333;
        }
        
        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .modal-header {
            padding: 20px 30px;
            background-color: #f5f5f5;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color:#333333;
        }
        
        .modal-header h2 {
            margin: 0;
            font-size: 1.8rem;
            color: #333;
        }
        
        .modal-close {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #666;
            line-height: 1;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
        }
        
        .modal-close:hover {
            color: #000;
        }
        
        .modal-body {
            padding: 30px;
            overflow-y: auto;
            max-height: calc(90vh - 80px);
        }
        
        .modal-body h2 {
            font-size: 1.5rem;
            color: #333;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        
        .modal-body h2:first-child {
            margin-top: 0;
        }
        
        .modal-body h3 {
            font-size: 1.2rem;
            color: #555;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        
        .modal-body p {
            margin-bottom: 15px;
            line-height: 1.8;
            text-align: justify;
            color: #333;
        }
        
        .modal-body ul, .modal-body ol {
            margin: 15px 0 15px 30px;
            line-height: 1.8;
            color:#333333;
        }
        
        .modal-body li {
            margin-bottom: 10px;
            color:#333333;
        }
        
        .modal-body a {
            color: #0066cc;
            text-decoration: none;
        }
        
        .modal-body a:hover {
            text-decoration: underline;
        }
        
        .contact-box {
            background-color: #f5f5f5;
            padding: 20px;
            border-left: 4px solid #0066cc;
            margin: 20px 0;
        }
        
        .signature {
            font-style: italic;
            margin-top: 20px;
            text-align: right;
            color: #666;
        }
        
        @media screen and (max-width: 768px) {
            .modal-content {
                width: 95%;
                margin: 5% auto;
                max-height: 85vh;
            }
            
            .modal-header {
                padding: 15px 20px;
            }
            
            .modal-header h2 {
                font-size: 1.5rem;
            }
            
            .modal-body {
                padding: 20px;
                max-height: calc(85vh - 70px);
            }
            
            .modal-body h2 {
                font-size: 1.3rem;
            }
            
            .modal-body h3 {
                font-size: 1.1rem;
            }
        }


/* END OF MODAL CSS */
.tnzeit-container {
    background-color: #e41d3c;
    border: 1px solid #e0e0e0;
    font-size:1.2rem;
    color: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    max-width: 600px;
    margin: 20px auto;
}   
/* VOD Section */
.vod-section {
    padding: 40px 20px;
}

.vod-section > div {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.vod-section .vod-item {
    flex: 1 1 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.vod-section .vod-video-container {
    margin-bottom: 15px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vod-section .vod-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.vod-section .vod-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.vod-section .vod-title {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
}

.vod-section .vod-description {
    color: #CCCCCC;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

/* Footer */
.footer {
    background-color: #383838;
    border-top: 1px solid #e0e0e0;
    color: #FFFFFF;
    text-align: center;
    padding: 30px 20px;
    margin-top: auto;
}

.footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer .footer-links {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer .footer-links .footer-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .footer-links .footer-link:hover {
    color: #e41d3c;
}

.footer .footer-links .footer-separator {
    margin: 0 10px;
    color: #999999;
}

.footer .footer-links .footer-copyright {
    color: #999999;
}

.footer .footer-credit {
    font-size: 0.85rem;
}

.footer .footer-credit .footer-link {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .footer-credit .footer-link:hover {
    color: #0066cc;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .vod-section > div {
        flex-direction: column;
        align-items: center;
    }
    
    .vod-section .vod-item {
        max-width: 500px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .header-content {
        position: relative;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #e41d3c;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .header-nav.active {
        max-height: 400px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .header-content ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }
    
    .header-content ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header-content ul li a.nav-link {
        display: block;
        padding: 15px 30px;
        white-space: normal;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .title-section {
        padding: 30px 15px;
    }
    
    .title-section .vod-title {
        font-size: 2rem;
    }
    
    .title-section .vod-subtitle {
        font-size: 1.2rem;
    }
    
    .vod-section {
        padding: 30px 15px;
    }
    
    .footer {
        padding: 20px 15px;
    }
    
    .footer .footer-links {
        font-size: 0.85rem;
    }
    
    .footer .footer-links .footer-separator {
        margin: 0 8px;
    }
    
    .footer .footer-credit {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    .header-content img {
        height: 80px;
    }
    
    .title-section .vod-title {
        font-size: 1.5rem;
    }
    
    .title-section .vod-subtitle {
        font-size: 1rem;
    }
    
    .vod-section .vod-title {
        font-size: 1.1rem;
    }
    
    .vod-section .vod-description {
        font-size: 0.9rem;
    }
    
    .footer .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer .footer-links .footer-separator {
        display: none;
    }
    
    .footer .footer-credit {
        margin-top: 10px;
    }
}
