/* === SERVICES PAGE SPECIFIC STYLES === */

/* === TAB NAVIGATION === */
.tabs {
    margin-top: 30px;
}

.tab-navigation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.tab-input {
    display: none;
}

.tab-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    cursor: pointer;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #333;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.95rem;
}

.tab-label i {
    font-size: 1.8rem;
    color: #666;
    transition: color 0.3s ease;
}

.tab-label:hover {
    background: #2a2a2a;
    border-color: #4a90e2;
}

.tab-label:hover i {
    color: #4a90e2;
}

.tab-input:checked + .tab-label {
    background: #4a90e2;
    color: #ffffff;
    border-color: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.tab-input:checked + .tab-label i {
    color: #ffffff;
}

/* === TAB CONTENTS === */
.tab-contents {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

/* Show corresponding content - KORRIGIERTE SELEKTOREN */
#tab-tontechnik:checked ~ .tab-contents #content-tontechnik,
#tab-video:checked ~ .tab-contents #content-video,
#tab-foto:checked ~ .tab-contents #content-foto,
#tab-musik:checked ~ .tab-contents #content-musik {
    display: block;
}

/* === SERVICE CATEGORY === */
.service-category {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
}

.category-intro {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    font-style: italic;
    text-align: center;
}

/* === SERVICE ITEMS === */
.service-item {
    background-color: #222;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #4a90e2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.1);
}

.service-item h3 {
    color: #4a90e2;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-item > p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* === SERVICE DETAILS === */
.service-details {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.service-details h4 {
    color: #4a90e2;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: 'Nunito Sans', sans-serif;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
}

.service-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.service-details li::before {
    content: "→";
    color: #4a90e2;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* === INFO BOXES === */
.info-box {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(74, 144, 226, 0.05));
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-left: 4px solid #4a90e2;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.info-box p {
    margin: 0;
    font-style: normal;
    color: #e0e0e0;
}

.info-box strong {
    color: #4a90e2;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE DESIGN - SERVICES === */
@media (max-width: 768px) {
    .tab-navigation {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tab-label {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .tab-label i {
        font-size: 1.5rem;
    }
    
    .service-category {
        padding: 20px;
    }
    
    .service-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .tab-navigation {
        grid-template-columns: 1fr;
    }
    
    .category-intro {
        font-size: 1.1rem;
    }
    
    .service-item h3 {
        font-size: 1.2rem;
    }
}