/**
 * Dr. Hamza Gemici Professional Photo Styling
 * Enhanced styling for the doctor's profile image
 */

/* Professional Doctor Photo Styling */
.about-image img.img-responsive {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    object-fit: cover;
    object-position: center;
    max-height: 500px;
    background: var(--background);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

/* Hover effect for the doctor's photo */
.about-image:hover img.img-responsive {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Professional overlay effect */
.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, hsla(221, 83%, 53%, 0.05) 100%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.about-image:hover::before {
    opacity: 1;
}

/* Professional border accent */
.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 2;
}

.about-image:hover::after {
    opacity: 0.3;
}

/* Responsive adjustments for doctor photo */
@media (max-width: 768px) {
    .about-image img.img-responsive {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .about-image img.img-responsive {
        max-height: 350px;
    }
}