/*
Theme Name: Glenmore Gymnastics Club
Theme URI: https://www.glenmoregymnastics.ca
Author: The talented Scalar Builds delivery team
Author URI: https://www.scalarbuilds.com
Description:
Requires at least: 6.7
Tested up to: 6.9.4
Requires PHP: 8.3
Version: 0.1
License: © Scalar Builds, Inc. All rights reserved.
License URI: https://www.scalarbuilds.com/license
Text Domain: scalar-builds
Email: support@scalarbuilds.com
Tags:

/* Ensure the site fills the screen */
.wp-site-blocks {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

/* Ensure that content layout is always in flex mode */
.wp-site-blocks > .entry-content {
    display: flex;
    flex-direction: column;
}

/* Push footer to bottom if content is short and deal with the WP header, and set position to relative
   to flip header from abs to sticky when scrol pos > 0 */
.wp-site-blocks > footer {
    margin-top: auto;
    position: relative;
}
body.admin-bar .wp-site-blocks {
    min-height: calc(100svh - var(--wp-admin--admin-bar--height, 32px));
}

/* Scroll locking */
body.theme-scroll-locked {
    overflow: hidden;
}

/* Keep only the top-level site shell from inheriting block-flow offsets. */
:where(.wp-site-blocks) > * {
    margin-block-start: 0;
}
