/*
 * Dark theme for landing CMS pages
 * Imports base styles and adds dark theme-specific overrides
 */

@import 'landing-cms-page-base-bulma.css';

/* Override navbar background - make it transparent at top, semi-transparent when scrolled */
.navbar.is-dark {
    background-color: transparent !important;
    box-shadow: none !important;
}

.navbar.is-dark .navbar-brand,
.navbar.is-dark .navbar-menu {
    background-color: transparent !important;
}

.navbar.is-dark.navbar-scrolled {
    background-color: rgba(34, 34, 34, 0.65) !important;
}

.navbar.is-dark.navbar-scrolled .navbar-brand,
.navbar.is-dark.navbar-scrolled .navbar-menu {
    background-color: transparent !important;
}

/* Dark theme colors - white background with black text */
.landing-cms {
    color: black;
    background-color: white;
}

/* Override strong/bold text to be white on dark theme pages */
.landing-cms strong, .landing-cms b {
    color: white;
}



/* Link color - exclude buttons (both Bulma and Bootstrap) */
.landing-cms a:not(.button):not(.btn) {
    color: hsl(208.9deg 92.45% 77.66%);
}


