/* =====================================================
   TTC Holzwickede - MKTT-Online Layout CSS
   Navigation Links / Content Rechts

   Farben:
   - Primär (Rot): #BF1B2C
   - Sekundär (Blau): #0027FF
   - Text: #000000
   ===================================================== */

#mktt_Main {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    padding: 0;
    width: 100%;
    border: none;
    position: relative;
    z-index: 1;
    overflow: auto;
    background-color: #ffffff;
}

#mktt_Title {
    background: linear-gradient(135deg, #BF1B2C 0%, #8B1520 100%);
    height: auto;
    position: relative;
    color: #ffffff;
    width: 100%;
    float: right;
    display: block;
    overflow: hidden;
    font-family: inherit;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    padding: 30px 20px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#mktt_Title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
    pointer-events: none;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

#mktt_Title table {
    width: 100%;
    position: relative;
    z-index: 1;
}

#mktt_Title td {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

#mktt_Title span {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.95;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
}

#mktt_Navigation {
    width: 250px;
    float: left;
    background-color: #f5f5f5;
    display: block;
    font-family: inherit;
    font-size: 14px;
    text-align: left;
    line-height: 14px;
    height: auto;
    padding: 20px 0;
    text-transform: none;
    position: relative;
    z-index: 2;
    min-height: 600px;
    overflow: auto;
    border-right: 1px solid #e0e0e0;
}

/* Navigation: Fixe Links */
.mktt_nav_bar_fix {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.mktt_nav_bar_fix li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
}

.mktt_nav_bar_fix li:last-child {
    border-bottom: none;
}

.mktt_nav_link_fix {
    display: block;
    padding: 15px 20px;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    text-decoration: none;
}

.mktt_nav_link_fix:hover {
    background-color: #BF1B2C;
    color: #ffffff;
    border-left-color: #0027FF;
    text-decoration: none;
    transform: translateX(5px);
}

/* Navigation: Gruppen */
.mktt_nav_group {
    display: block;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 13px;
    color: #ffffff;
    background: linear-gradient(135deg, #0027FF 0%, #001BAD 100%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 15px 0 0 0;
}

.nav_bar_classes,
.mktt_nav_bar_classes {
    list-style: none;
    margin: 0 0 10px 0;
    padding: 0;
}

.nav_bar_classes li {
    margin: 0;
    padding: 0;
}

.mktt_nav_link {
    display: block;
    padding: 12px 20px 12px 30px;
    color: #000000;
    font-size: 14px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.mktt_nav_link::before {
    content: '▸';
    position: absolute;
    left: 15px;
    color: #BF1B2C;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mktt_nav_link:hover {
    background-color: #f5f5f5;
    color: #BF1B2C;
    padding-left: 35px;
    text-decoration: none;
}

.mktt_nav_link:hover::before {
    transform: translateX(3px);
}

#mktt_Content {
    background-color: #ffffff;
    position: relative;
    width: calc(100% - 250px);
    height: auto;
    float: left;
    text-align: left;
    font-family: inherit;
    font-size: 14px;
    padding: 30px;
    border: none;
    z-index: 4;
    min-height: 600px;
}

#mktt_Footer {
    position: relative;
    width: 100%;
    height: auto;
    float: right;
    text-align: center;
    background-color: #f5f5f5;
    color: #666666;
    padding: 20px;
    border: none;
    border-top: 1px solid #e0e0e0;
    clear: both;
    display: block;
    overflow: auto;
    font-size: 12px;
}

#mktt_Footer a {
    color: #0027FF;
    font-weight: 600;
}

#mktt_Footer a:hover {
    color: #BF1B2C;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    #mktt_Navigation {
        width: 200px;
    }

    #mktt_Content {
        width: calc(100% - 200px);
        padding: 20px;
    }

    #mktt_Title td {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    #mktt_Navigation {
        width: 100%;
        float: none;
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    #mktt_Content {
        width: 100%;
        float: none;
        padding: 15px;
    }

    #mktt_Title td {
        font-size: 22px;
    }

    #mktt_Title span {
        font-size: 12px;
    }

    .mktt_nav_link_fix:hover,
    .mktt_nav_link:hover {
        transform: none;
    }
}

/* Sehr kleine Screens */
@media (max-width: 480px) {
    #mktt_Title td {
        font-size: 18px;
    }

    #mktt_Title {
        padding: 20px 15px;
    }

    #mktt_Content {
        padding: 10px;
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */

@media print {
    #mktt_Navigation {
        display: none;
    }

    #mktt_Content {
        width: 100%;
        float: none;
    }

    #mktt_Title {
        background: #BF1B2C;
        color: #ffffff;
    }
}
