/* Simple background transition styles */
body .home {
    transition: background-color 0.1s ease;
    /* Set initial background color to prevent white flash */
    background-color: rgb(35,31,32); /* Match the dark contrast color */
}

.body-transitioning {
    transition: background-color 0.1s ease;
}

/* Set different text colors for each section to ensure readability */
.section-operatives p, .section-tagline h2 {
    color: var(--wp--preset--color--base) !important;
}

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