/* Placeholder styles for images and content */

/* Profile Image Placeholder */
.hero-image img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Placeholder for missing profile image */
.hero-image::before {
    content: "";
    display: block;
    width: 100%;
    max-width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* If image fails to load, show placeholder */
.hero-image img[src="assets/images/profile.jpg"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Fallback styling for broken images */
img[alt="Laevatein54"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
}

/* Icon placeholders */
.service-icon {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
