/* ============================================
   TattooCon Programm — CSS
   PixelPanther | https://pixelpanther.eu
   ============================================ */

/* ── SECTION ── */
.tc-prog-section {
    background: #3354FF;
    font-family: 'Barlow', sans-serif;
}

/* ── TABS ── */
.tc-prog-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 36px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.15);
}

.tc-prog-tab {
    font-family: 'Russo One', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 40px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: color 0.2s, border-color 0.2s;
}

.tc-prog-tab.active {
    color: #F5C200;
    border-bottom-color: #F5C200;
}

.tc-prog-tab:hover:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}

/* ── TAB INHALTE ── */
.tc-prog-content {
    display: none;
}

.tc-prog-content.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* ── PROGRAMM BOX ── */
.tc-prog-item {
    background: #F5C200;
    display: grid;
    grid-template-columns: 72px 1fr;
    overflow: hidden;
    border-radius: 5px;
}

/* ── UHRZEIT ── */
.tc-prog-time {
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    font-family: 'Russo One', sans-serif;
    font-size: 16px;
    color: #0A0A0A;
    text-align: center;
    line-height: 1.1;
    border-right: 2px solid rgba(0, 0, 0, 0.1);
}

.tc-prog-time em {
    font-style: normal;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 2px;
    display: block;
}

/* ── TEXTBEREICH ── */
.tc-prog-body {
    padding: 16px 20px;
}

.tc-prog-cat {
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 3px;
}

.tc-prog-ttl {
    font-family: 'Russo One', sans-serif;
    font-size: 26px;
    color: #0A0A0A;
    margin-bottom: 4px;
    line-height: 1.2;
}

.tc-prog-txt {
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.5;
}

/* ── LEER-STATE ── */
.tc-prog-empty {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 20px 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .tc-prog-section {
        padding: 40px 20px;
    }
    .tc-prog-content.active {
        grid-template-columns: 1fr;
    }
    .tc-prog-tab {
        padding: 12px 20px;
        font-size: 12px;
        letter-spacing: 1px;
    }
}