/* Background transition - make this prominent */
body.home {
    transition: background-color 0.8s ease-in-out !important;
    background-color: rgb(0,0,0);
}

/* Ensure NO transition for text - instant change */
.transition-color {
    transition: none !important;
    will-change: color; /* Hint to browser that this property will change */
}

/* Set default white text colors for dark sections to ensure readability */
.section-about p, .section-operatives p, 
.section-tagline h2 {
    color: var(--wp--preset--color--base);
}

/* Ensure proper z-index for content */
.section-operatives, 
.section-expertise {
    position: relative;
    z-index: 1;
}