/* /Layout/MainLayout.razor.rz.scp.css */
/* /Layout/NavMenu.razor.rz.scp.css */
/* /Pages/Home.razor.rz.scp.css */
.bg-hero-mountains[b-g96g98ol4e] {
    /* 1. The Image */
    background-image: url('/images/PXL_20240225_083021535.webp');
    background-size: cover; /* Ensures it fills the whole area */
    background-position: center; /* Centers the peaks */
    position: relative; /* Needed for the overlay positioning */
    z-index: 1;
}

    /* THE FROSTY OVERLAY */
    .bg-hero-mountains[b-g96g98ol4e]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* Changed from Dark Navy to 85% White */
        background: rgba(255, 255, 255, 0.85);
        z-index: -1;
    }

/* Optional: Keep text shadow faint for extra sharpness, or remove it */
.text-shadow[b-g96g98ol4e] {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
