/* Allgemeines Styling */
body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.8; /* Leicht erhöhte Zeilenhöhe für bessere Lesbarkeit */
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    color: #333; /* Dunkler Text für bessere Lesbarkeit */
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert den Container */
    min-height: 100vh;
    font-size: 18px; /* Standard-Schriftgröße auf 18px gesetzt */
}

.wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 1410px; /* Maximale Breite des Containers */
    width: 100%; /* Volle Breite bis zur maximalen Breite */
    box-sizing: border-box; /* Berücksichtigt das Padding in der Breite */
    margin: 0 auto; /* Zentriert die Wrapper */
}

.header-container {
    background-color: #c6c6c5; /* Dunkelroter Hintergrund */
    color: #fff;
    text-align: center;
    padding: 20px 0; /* Mehr Padding für bessere Optik */
    position: relative; /* Ermöglicht Positionierung des Burger-Menüs */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Schatteneffekt */
    width: 100%;
    box-sizing: border-box; /* Berücksichtigt das Padding in der Breite */
}

.logo-container img {
    max-width: 195px; /* 150px um 30% vergrößert */
    height: auto;
}

.site-title {
    font-size: 2.5rem; /* Größe des Titels */
    font-weight: bold;
    margin: 20px 0; /* Mehr Abstand für bessere Optik */
    letter-spacing: 1px; /* Leicht größere Buchstabenabstände */
}

.main-nav {
    margin-top: 20px;
}

.main-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px; /* Gleichmäßiger Abstand zwischen den Links */
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s; /* Sanfte Übergänge */
}

.main-nav ul li a:hover {
    background-color: #d33f3f; /* Hellroter Hover-Effekt */
    transform: translateY(-3px); /* Leichtes Anheben bei Hover */
}

.burger-menu {
    display: none;
    position: absolute;
    top: 20px;
    left: 20px;
}

.burger-icon {
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s; /* Sanfte Übergänge */
    position: relative;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-icon div {
    background-color: #fff;
    height: 4px;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.burger-icon:hover {
    transform: scale(1.1); /* Vergrößerung bei Hover */
}

.burger-icon.open div:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.burger-icon.open div:nth-child(2) {
    opacity: 0;
}

.burger-icon.open div:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.burger-nav {
    display: none; /* Versteckt das Burger-Menü standardmäßig */
    background-color: #af1b24; /* Gleicher Hintergrund wie Header */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000; /* Damit es über anderen Elementen liegt */
}

.burger-nav.active {
    display: block; /* Burger-Menü anzeigen, wenn aktiv */
    animation: fadeIn 0.5s; /* Einblende-Animation */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.burger-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.burger-nav ul li {
    margin: 0; /* Entfernt den Abstand zwischen den Elementen */
    width: 100%; /* Volle Breite */
}

.burger-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    border-radius: 0; /* Keine abgerundeten Ecken */
    background-color: #af1b24;
    display: block; /* Volle Breite */
    text-align: center; /* Zentrierter Text */
    width: 100%; /* Volle Breite */
    transition: background-color 0.3s; /* Sanfte Übergänge */
}

.burger-nav ul li a:hover {
    background-color: #d33f3f;
}

.burger-nav ul li:not(:last-child) a {
    border-bottom: 1px solid #fff; /* Weiße Trennlinie */
}

main {
    flex: 1;
    padding: 40px 20px; /* Mehr Padding für besseren Abstand */
    background-color: #fff; /* Weißer Hintergrund für den Hauptinhalt */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Schatteneffekt */
    margin-bottom: 70px !important; /* Platz für den fixierten Footer */
    border-radius: 8px; /* Leicht abgerundete Ecken */
    width: 100%; /* Volle Breite bis zur maximalen Breite */
    max-width: 1410px; /* Maximale Breite des Hauptinhalts */
    box-sizing: border-box; /* Berücksichtigt das Padding in der Breite */
    margin: 0 auto; /* Zentriert den Hauptinhalt */
}

.footer-placeholder {
    height: 40px; /* Höhe des Footers verringert */
}

.responsive-img {
    width: 100%; /* Bildbreite nimmt die volle Breite ein */
    max-width: 1370px; /* Maximale Breite des Bildes */
    height: auto;
    margin-top: 20px;
    border-radius: 8px; /* Abgerundete Ecken für Bilder */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Schatteneffekt für Bilder */
}

footer {
    text-align: center;
    padding: 5px; /* Weiter reduziertes Padding */
    background-color: #c6c6c5; /* Dunkelroter Hintergrund */
    color: #fff;
    width: 100%; /* Volle Breite bis zur maximalen Breite */
    max-width: 1410px; /* Maximale Breite des Footers */
    border-top: 5px solid #f0f0f0; /* Weißer Abstand zum Content verringert */
    font-size: 1.25rem; /* Schriftgröße vergrößert */
    box-sizing: border-box; /* Berücksichtigt das Padding in der Breite */
    margin: 0 auto; /* Zentriert den Footer */
    position: fixed;
    bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #af1b24; /* Dunkelrote Überschriften */
    margin-top: 0; /* Keine zusätzlichen Abstände oben */
    line-height: 1.2;
    letter-spacing: 0.5px; /* Leicht größere Buchstabenabstände */
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.25rem; /* Vergrößerte Schriftgröße */
}

h3 {
    font-size: 2rem; /* Vergrößerte Schriftgröße */
}

h4 {
    font-size: 1.75rem; /* Vergrößerte Schriftgröße */
}

h5 {
    font-size: 1.5rem; /* Vergrößerte Schriftgröße */
}

h6 {
    font-size: 1.25rem; /* Vergrößerte Schriftgröße */
}

p {
    font-size: 1.25rem; /* Vergrößerte Schriftgröße für Absätze */
    margin-bottom: 1.5rem; /* Mehr Abstand zwischen den Absätzen */
}

/* Video Gallery Styling */
.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video-item {
    cursor: pointer;
    text-align: center;
}

.video-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.video-item p {
    margin-top: 10px;
    font-size: 1.25rem;
    color: #333;
}


footer a:link, footer a:visited {
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

.content_datenschutz a:link, .content_datenschutz a:visited {
    font-weight: bold;
    text-decoration: none;
    color: #666;
}

.content_datenschutz a:hover, .content_datenschutz a:focus, .content_datenschutz a:active, footer a:hover, footer a:focus, footer a:active {
    text-decoration: underline;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-content video {
    width: 100%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}



.report-modal {
    display: none; /* initial hidden */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.report-modal .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 4px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.report-modal .close {
    float: right;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
}

.report-link {
    display: inline-block;
    text-align: center;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.report-link:hover {
    color: #d00000;
    text-decoration: underline;
}

.video-item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.report-modal .modal-content {
    max-width: 900px;
    padding: 30px;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    font-size: 17px;
    color: #222;
}

.report-modal .modal-content h2 {
    font-size: 24px;
    color: #c00;
    margin-bottom: 15px;
}

.report-modal .modal-content p {
    margin-bottom: 1em;
}

.report-modal .close {
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #888;
}

.report-modal .close:hover {
    color: #000;
}
