/* Additional styles for superhero images */

.superhero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
}

.superhero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.superhero-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 2rem;
}

/* Responsive adjustments for images */
@media (max-width: 768px) {
    .superhero-image {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .superhero-image {
        max-height: 250px;
    }
}

/* Hero section background images */
.hero-inbound {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/inbound.jpg') center/cover no-repeat !important;
}

.hero-outbound {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/outbound.jpg') center/cover no-repeat !important;
}

.hero-followup {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/followup.jpg') center/cover no-repeat !important;
}

.hero-home {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('../img/inbound.jpg') left/cover no-repeat,
                url('../img/outbound.jpg') center/cover no-repeat,
                url('../img/followup.jpg') right/cover no-repeat !important;
    background-blend-mode: normal, overlay, overlay, overlay !important;
}
