#splash-screen {
position: fixed;
inset: 0;
z-index: 9999;
background: #000;
opacity: 1;
transition: opacity 0.8s ease-in-out;
pointer-events: all;
}
#splash-screen.fade-out {
opacity: 0;
pointer-events: none;
}
#splash-screen.hidden {
display: none;
}
#splash-image {
width: 100%;
height: 100%;
background-image: url(//blackpine.co.nz/wp-content/uploads/2025/10/Blackpine-Architects-Alpine-Retreat8.webp);
background-size: cover;
background-position: center;
} #splash-content {
opacity: 0;
transition: opacity 0.8s ease-in-out;
}
#splash-content.visible {
opacity: 1;
}