/* Image Enhancement Styles for WordPress Customizer */

/* Hero Background Image */
.hero-section[style*="background-image"] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section[style*="background-image"] .container {
    position: relative;
    z-index: 2;
}

/* Service Card Images */
.kinesi-service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    margin-bottom: 20px;
}

.kinesi-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kinesi-service-card:hover .kinesi-service-image img {
    transform: scale(1.05);
}

/* FAQ Image */
.faq-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonial Author Avatar */
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-info {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .kinesi-service-image {
        height: 150px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }
}
