/*
Theme Name: CCW FB
Theme URI: https://nearall.au
Description: Minimal child of Twenty Twenty-Four. Strips the default WordPress header and footer so every page renders as a blank canvas for block-by-block composition. Built for the Nearall Card Compact Web (CCW) model — each page carries its own design via native Gutenberg blocks and block patterns. No custom templates with tokens, no meta-box overrides.
Author: Hiep Minh Pham / Fix2QIK Pty Ltd
Author URI: https://fix2qik.au
Template: twentytwentyfour
Version: 0.1.0
Requires at least: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ccw-fb
Tags: block-theme, full-site-editing, minimal
*/

/* ============================================================
   Page canvas — remove the parent's narrow content-width.
   Pages need to render edge-to-edge so block patterns that
   use alignfull actually fill the viewport.
   ============================================================ */

.wp-site-blocks > main.wp-block-group,
body.page main.wp-block-group,
body.single main.wp-block-group {
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* Cover blocks and groups with alignfull genuinely fill the viewport */
.wp-block-cover.alignfull,
.wp-block-group.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
