/*
Theme Name: UU Blank
Theme URI: https://uu.legal
Author: Union d'Amitié Eurasiatique
Author URI: https://uu.legal
Description: Thème minimaliste pour widgets bureau UU.PNL. Aucun header, footer, sidebar ou décoration — juste le contenu de la page. Fond sombre par défaut, body et html à 100vh. Idéal pour pages dédiées au shortcode [uu_pnl mode="fullscreen"] consultées via Edge PWA + DeskPins.
Version: 0.2.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
Text Domain: uu-blank
Tags: minimal, dark, blank, custom-colors
*/

/* === Reset minimal === */

* { box-sizing: border-box; }

html, body {
	margin: 0 !important;
	padding: 0;
	height: 100%;
	width: 100%;
	background: #0f1115;
	color: #e8e8ea;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* La page entière est notre canvas */
body { display: flex; flex-direction: column; }

main.uu-blank-main {
	flex: 1;
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Tous les wrappers que WP peut injecter autour du contenu : on les neutralise */
.uu-blank-main > article,
.uu-blank-main > div,
.uu-blank-main > section,
.uu-blank-main .entry-content,
.uu-blank-main .wp-block-shortcode {
	flex: 1;
	margin: 0 !important;
	padding: 0 !important;
	max-width: none !important;
	width: 100%;
	display: flex;
	flex-direction: column;
}

/* Forcer le widget UU.PNL à prendre toute la place */
.uu-blank-main .uu-pnl-widget {
	flex: 1;
}

/* Ne JAMAIS afficher la admin bar côté front, même si désactivation PHP a échoué */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }

/* Cacher les éléments traditionnels au cas où un autre script en injecte */
.skip-link,
.site-header,
.site-footer,
.widget-area,
nav.main-navigation,
.breadcrumbs {
	display: none !important;
}

/* Selection accent */
::selection {
	background: rgba(29, 158, 117, 0.4);
	color: #ffffff;
}

/* Scrollbars discrètes */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.3); }

/* Liens internes par défaut */
a { color: #1D9E75; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Loading state : éviter le flash blanc */
body { background: #0f1115; }
