/* 
* LeuMet GmbH Website
* Dienstleistungs-Seiten Stile
*/

/* Service Detail Sektion */
.service-detail {
    padding-top: 60px;
}

.service-content {
    margin-bottom: 3rem;
}

.service-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Service Sidebar */
.service-sidebar {
    background: rgba(56, 107, 160, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(56, 107, 160, 0.2);
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, var(--logo-gradient-start), var(--logo-gradient-end));
}

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

.service-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(56, 107, 160, 0.2);
    display: flex;
    align-items: center;
    color: var(--text-color);
}

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

.service-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(56, 107, 160, 0.05);
    border: 1px solid rgba(56, 107, 160, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(56, 107, 160, 0.1);
    box-shadow: 0 5px 15px rgba(56, 107, 160, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: white;
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(56, 107, 160, 0.2);
}

.feature-text h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
}

.sidebar-cta {
    background: linear-gradient(135deg, rgba(74, 127, 181, 0.1), rgba(56, 107, 160, 0.1));
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(74, 127, 181, 0.2);
}

.sidebar-cta h4 {
    margin-bottom: 1rem;
}

.sidebar-cta p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(56, 107, 160, 0.1);
    border: 1px solid rgba(56, 107, 160, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(56, 107, 160, 0.9), transparent);
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h5 {
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.gallery-overlay p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #ffffff;
}

/* Responsive Anpassungen */
@media (max-width: 991.98px) {
    .service-sidebar {
        margin-top: 3rem;
        position: static;
    }
}

@media (max-width: 767.98px) {
    .service-content h3 {
        font-size: 1.8rem;
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .service-detail {
        padding-top: 30px;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
}
