/* ============================================
   Hausmann Legal - Image Enhancements
   Professional Unsplash Images Integration
   ============================================ */

/* Office Image Section */
.office-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-secondary);
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.office-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--color-border);
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
}

.office-image:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Munich Reference Section */
.munich-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1595867818082-083862f3d630?w=1920&q=80') center/cover fixed;
    color: var(--color-secondary);
    text-align: center;
}

.munich-section h3 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.munich-section p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Feature Images */
.feature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(100%);
    border: 1px solid var(--color-border);
    margin: var(--spacing-lg) 0;
    transition: filter 0.3s ease;
}

.feature-image:hover {
    filter: grayscale(50%);
}

/* Profile Image Enhancements */
.profile-image {
    position: relative;
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--color-border);
    z-index: -1;
}

/* Content Section with Background */
.content-section.with-background {
    background: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
                url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?w=1920&q=80') center/cover fixed;
}

/* Decorative Elements */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    margin: var(--spacing-xxl) 0;
}

/* Image Caption */
.image-caption {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    text-align: center;
    margin-top: var(--spacing-xs);
    font-style: italic;
}

/* Responsive Images */
@media (max-width: 1024px) {
    .office-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-image {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .office-grid {
        grid-template-columns: 1fr;
    }

    .feature-image {
        height: 250px;
    }

    .munich-section {
        background-attachment: scroll;
    }
}
