/* Custom styles for printing-branding.html */

/* Remove all hover color overlays but keep animations */
.indoor-print-image::before,
.outdoor-print-image::before {
    background-color: transparent !important; /* Override any colored background */
}

/* Force the hover overlay to be transparent */
.indoor-print-item:hover .indoor-print-image::before,
.outdoor-print-item:hover .outdoor-print-image::before {
    opacity: 0 !important; /* Completely disable the overlay effect */
}

/* Ensure any rgba(255, 0, 0, 0.1) is overridden */
.indoor-print-image::before,
.outdoor-print-image::before {
    background: transparent !important;
}

/* Keep the green line animation */
.indoor-print-item h3::after,
.outdoor-print-item h3::after {
    background-color: #008000; /* Maintain brand green color */
}

/* Keep the text color change to brand green */
.indoor-print-item:hover h3,
.outdoor-print-item:hover h3 {
    color: #008000; /* Maintain brand green color */
}

/* Keep the subtle elevation effect */
.indoor-print-item:hover .indoor-print-image,
.outdoor-print-item:hover .outdoor-print-image {
    transform: translateY(-7px);
    /* box-shadow removed */
}

/* Keep the subtle image zoom effect */
.indoor-print-item:hover .indoor-print-image img,
.outdoor-print-item:hover .outdoor-print-image img {
    transform: scale(1.1);
}
