/**
Theme Name: 5PointsCreativeTheme
Author: 5PointsCreative
Author URI: https://www.5pointscreative.com/
Description: This is a custom child theme build for Astra Pro
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 5pointscreativetheme
Template: astra
*/

/* Opt out of forced browser dark mode (Samsung Internet, Chrome auto-dark) */
html {
	color-scheme: light only;
}

/* Neutralize forced dark-mode image inversion (Samsung Internet, Chrome auto-dark,
   Dark Reader extension). Scoped exception below preserves WP duotone filters. */
img, video {
	filter: none !important;
}

.wp-duotone-grayscale.wp-block-image img {
	filter: var(--wp--preset--duotone--grayscale) !important;
}

/* Checkout — make Terms & Conditions modal link clearly visible */
.woocommerce-terms-and-conditions-checkbox-text a {
	color: #2165d2;
	text-decoration: underline;
	font-weight: 600;
}

.woocommerce-terms-and-conditions-checkbox-text a:hover {
	color: #0a4267;
}

/* Add-to-cart success notice: gap between "Continue Shopping" and "View Cart" buttons */
.woocommerce-message .button.wc-forward {
	margin-left: 5px;
}

/* Footer: left/right padding inside the colored areas */
.site-primary-footer-wrap > .ast-builder-grid-row-container-inner,
.site-below-footer-wrap > .ast-builder-grid-row-container-inner {
	padding-left: 15px;
	padding-right: 15px;
}

/* Below-footer bar: smaller text, single line for links */
.site-below-footer-wrap {
	font-size: 13px;
}

.site-below-footer-wrap .ast-builder-html-element {
	white-space: nowrap;
}

/* Allow below-footer text to wrap & center on mobile */
@media (max-width: 544px) {
	.site-below-footer-wrap .ast-builder-html-element {
		white-space: normal;
		text-align: center;
	}
}

/* Content lists: add left margin so bullets don't hug the content edge.
   Gutenberg sets an inline padding-left of only ~0.44rem on .wp-block-list,
   and Astra's blocks-layout rule cancels the theme's default 3em margin-left
   by forcing margin-left:auto. */
.entry-content ul.wp-block-list,
.entry-content ol.wp-block-list {
	margin-left: 1.5em;
}

/* Tighten dropdown menu item padding slightly so long menus fit on shorter screens */
.main-header-menu .sub-menu .menu-item a,
.main-navigation .sub-menu .menu-item a,
#site-navigation .sub-menu a,
header .sub-menu a {
	padding-top: 6px !important;
	padding-bottom: 6px !important;
}