/*
 Theme Name: zisoft-child
 Theme URI: https://michizi.lima-city.de
 Description: ZiSoft Child Theme für WordPress
 Author: Michael
 Template: twentytwentyfive
 Version: 1.0
*/

/* Dein komplettes CSS hier einfügen */

/* --------------------------------------------------
   GLOBAL
-------------------------------------------------- */

.left-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left-menu-list li {
    margin-bottom: 10px;
}

.left-menu-list a {
    display: block;
    padding: 10px;
    background: #002b5c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
}

.left-menu-list a:hover {
    background: #004a99;
}





/* --- ZiSoft Footer Style --- */

.zisoft-footer {
    background-color: #002b5c;
    color: #ffffff;
    padding: 20px 0;
    margin-top: 40px;
}

.zisoft-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zisoft-footer-left p {
    margin: 0;
    color: #ffffff;
}

.zisoft-footer-right a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 10px;
    font-weight: 500;
}

.zisoft-footer-right a:hover {
    color: #66aaff;
}

.footer-sep {
    margin: 0 6px;
    color: #ffffff;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    .zisoft-footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .zisoft-footer-right a {
        margin-left: 0;
        margin: 0 8px;
    }
}




/* --- ZiSoft Header Style --- */

.zisoft-header {
    background-color: #002b5c;
    padding: 15px 0;
    color: #ffffff;
}

.zisoft-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 15px;
}

.zisoft-logo img {
    height: 60px;
    width: auto;
    border-radius: 6px;
}

.zisoft-title h1 {
    margin: 0;
    color: #ffffff;
    font-size: 1.8rem;
    white-space: nowrap;
}

.zisoft-nav a {
    color: #ffffff !important;
    font-weight: 500;
    padding: 8px 12px;
    display: inline-block;
}

.zisoft-nav a:hover {
    color: #66aaff !important;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    .zisoft-header-inner {
        flex-direction: column;
        text-align: center;
    }

    .zisoft-title h1 {
        margin-top: 10px;
    }
}




* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: #002B5C;
    color: #222;
    line-height: 1.5;
    padding-bottom: 60px; /* Platz für Footer */
}

/* Farben */
:root {
    --marine: #002b5c;
    --marine-light: #004080;
    --marine-hover: #001d3d;
    --border-light: #d8e0ea;
    --bg-light: #f5f7fa;
}


body.impressum .container { grid-template-columns: 1fr; 
max-width: 900px; 
margin: 30px auto; } 

body.impressum .left,
body.impressum .right {
    background: #002B5C; /* gleiche Farbe wie der Seitenhintergrund */
    border: none;
    box-shadow: none;
}





body.impressum .content {
    max-width: 800px;
    margin: 0 auto;
   
}

.impressum-inner {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}




/* --------------------------------------------------
   HEADER
-------------------------------------------------- */

header {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
}

.header-text {
    text-align: center;
}

.header-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow:
        0 0 6px rgba(255,255,255,0.4),
        0 0 12px rgba(0,120,255,0.5);
}

.header-sub {
    font-size: 1rem;
    color: #d8e0ea;
    margin-top: -4px;
}

.header-image {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.4);
    box-shadow:
        0 0 10px rgba(255,255,255,0.3),
        0 0 20px rgba(0,120,255,0.4);
}


body.impressum .haftung {
    text-align: justify;
}



/* --------------------------------------------------
   GRID LAYOUT
-------------------------------------------------- */

.container {
    max-width: 1200px;
    margin: 25px auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 220px 1fr 260px;
    gap: 20px;
align-items: stretch;
}

/* --------------------------------------------------
   SIDEBARS
-------------------------------------------------- */





.left, .right, .content, .download-box, .comment {
    border-radius: 0 0 12px 12px; /* oben 0, unten rund */
 
display: flex; 
flex-direction: column;
}

.left, .right {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.left h3, .right h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--marine);
}

.left a {
    color: var(--marine);
    text-decoration: none;
    font-weight: 500;
}

/* Buttons im linken Frame überschreiben die Link‑Regel */
.left .yt-btn {
    display: block;
    padding: 12px 15px;
    background: var(--marine);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.left .yt-btn:hover {
    background: var(--marine-hover);
}


.yt-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.yt-btn {
    display: block;
    padding: 12px 15px;
    background: var(--marine);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s ease;
margin: 8px 0; /* Abstand oben und unten */
}

.yt-btn:hover {
    background: var(--marine-hover);
}





.yt-btn:hover {
    background: var(--marine-hover);
}

.info-text {
    color: #1a3d7c; /* schönes Blau */
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* --------------------------------------------------
   CONTENT
-------------------------------------------------- */

.content {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.content h1 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: var(--marine);
}

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

/* --------------------------------------------------
   DOWNLOAD BOX
-------------------------------------------------- */




.download-box {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 0;
     width: 100%;
     height:100%;
}

.program-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.download-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--marine);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.download-btn:hover {
    background: var(--marine-hover);
}

/* --------------------------------------------------
   KOMMENTARE
-------------------------------------------------- */

.comments h2 {
    margin-bottom: 15px;
    color: var(--marine);
}

.comment-form input,
.comment-form textarea {
    padding: 10px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
}

.comment-form button {
    width: 180px;
    padding: 10px;
    background: var(--marine);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.comment-form button:hover {
    background: var(--marine-hover);
}

.comment {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.comment strong {
    color: var(--marine);
}

.comment .date {
    float: right;
    font-size: 0.8rem;
    color: #666;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

.status-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #002B5C;
    color: white;
    padding: 10px 0;
    text-align: center;
    z-index: 999;
}

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

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

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

    .left, .right {
        order: -1;
    }

    .header-image {
        width: 110px;
        height: 110px;
        top: 5px;
        right: 10px;
    }
}

