/* Leistungen Specific Styles */

.leistungen-header {
    padding: 60px 40px 40px;
    text-align: center;
    background: rgb(250, 243, 231);
    border-bottom: 1px solid rgba(191, 151, 97, 0.2);
}

.leistungen-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: rgb(191, 151, 97);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.leistungen-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Container */
.services-container {
    background: rgb(250, 243, 231);
    padding: 60px 40px;
}

/* Service Items */
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 80px;
    background: transparent;
    padding: 40px;
    border-radius: 20px;
    box-shadow: none;
    border: 2px solid rgb(191, 151, 97);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(191, 151, 97, 0.2);
    border-color: rgb(160, 120, 75);
}

.service-item:last-of-type {
    margin-bottom: 60px;
}

/* Service Photo */
.service-photo {
    flex-shrink: 0;
    width: 250px;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 15px;
    border: 2px solid rgba(191, 151, 97, 0.3);
    transition: all 0.3s ease;
}

.service-image:hover {
    border-color: rgb(191, 151, 97);
    transform: scale(1.02);
}

/* Temporärer Platzhalter */
.temp-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(250, 243, 231);
    border: 2px dashed rgba(191, 151, 97, 0.5);
    border-radius: 15px;
}

.temp-placeholder span {
    font-size: 40px;
    margin-bottom: 10px;
}

.temp-placeholder p {
    font-size: 14px;
    color: rgb(191, 151, 97);
    margin: 0;
}

/* Service Content */
.service-content {
    flex: 1;
}

.service-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: rgb(191, 151, 97);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.service-subtitle {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-bottom: 25px;
    font-weight: 400;
}

.service-description {
    margin-bottom: 30px;
}

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

.service-description li {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
    padding-left: 25px;
    position: relative;
}

.service-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: rgb(191, 151, 97);
    font-weight: bold;
    font-size: 16px;
}

.service-description li strong {
    color: rgb(191, 151, 97);
    font-weight: 600;
}

/* Additional Services */
.additional-services {
    background: transparent;
    padding: 50px;
    border-radius: 20px;
    box-shadow: none;
    margin-bottom: 60px;
    border: none;
}

.additional-services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: rgb(191, 151, 97);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.additional-item {
    text-align: center;
    padding: 30px 20px;
    background: rgb(250, 243, 231);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(191, 151, 97, 0.1);
}

.additional-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(191, 151, 97, 0.3);
}

.additional-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: rgb(191, 151, 97);
    margin-bottom: 15px;
}

.additional-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, rgb(191, 151, 97), rgb(160, 120, 75));
    color: white;
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: #fff;
    color: rgb(191, 151, 97);
}

.cta-button.primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.cta-button.secondary:hover {
    background: #fff;
    color: rgb(191, 151, 97);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-container {
        padding: 50px 30px;
    }
    
    .service-item {
        gap: 30px;
        padding: 30px;
    }
    
    .camera-placeholder {
        width: 140px;
        height: 100px;
    }
    
    .camera-symbol {
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .leistungen-header {
        padding: 40px 20px 30px;
    }
    
    .leistungen-header h1 {
        font-size: 36px;
    }
    
    .services-container {
        padding: 40px 20px;
    }
    
    .service-item {
        flex-direction: column;
        gap: 25px;
        padding: 25px;
        margin-bottom: 50px;
    }
    
    .service-icon {
        align-self: center;
    }
    
    .camera-placeholder {
        width: 120px;
        height: 90px;
    }
    
    .camera-symbol {
        font-size: 30px;
    }
    
    .service-content h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .service-subtitle {
        text-align: center;
    }
    
    .service-images {
        justify-content: center;
    }
    
    .additional-services {
        padding: 30px 20px;
    }
    
    .additional-services h2 {
        font-size: 28px;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-cta {
        padding: 40px 25px;
    }
    
    .contact-cta h2 {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .service-description li {
        font-size: 14px;
    }
    
    .service-images {
        flex-direction: column;
        align-items: center;
    }
    
    .service-image-placeholder {
        width: 150px;
        height: 100px;
    }
}

/* Animation for service items */
.service-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.3s; }
.service-item:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}