/*
Theme Name: NORTH Platform
Theme URI: https://northgruppen.no
Author: NORTH gruppen AS
Author URI: https://northgruppen.no
Description: Parent theme for NORTH webplattform. Provides design tokens, base components, and Gutenberg patterns shared across all NORTH company websites.
Version: 1.4.5
License: Proprietary
Text Domain: north-platform
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
Tags: block-theme, gutenberg, full-site-editing
*/

/**
 * Base styles are managed through theme.json and block styles.
 * This file exists for WordPress theme detection.
 */

/* Sticky gradient header (desktop & laptop) */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: linear-gradient(
		90deg,
		#B97E36 0%,   /* gruppen */
		#0B83C5 18%,  /* industri */
		#2963AF 36%,  /* eiendom */
		#BE5E32 54%,  /* enter */
		#C05BA3 72%,  /* henrys */
		#7E3393 90%   /* marketing */
	);
	background-attachment: fixed;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Offset when admin bar is visible */
body.admin-bar .site-header { top: 32px; }

/* Optional: ensure internal nav bars inherit sticky stacking */
.site-header .company-switcher,
.site-header .primary-navigation { position: relative; z-index: 1001; }

@media (max-width: 782px) {
	/* Mobile keeps normal flow (can adjust later) */
	.site-header { position: relative; top: 0; }
}
