/*
Theme Name: ANS Solutions
Theme URI: https://anssolution.com/
Author: ANS Solutions
Description: Custom responsive theme for CPA & digital marketing with admin theme settings (colors, fonts, layout, dark/light mode).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: ans-solutions
*/

/* Base tokens — overridden by Customizer CSS variables */
:root {
	--ans-primary: #1a1a1a;
	--ans-primary-dark: #0a0a0a;
	--ans-accent: #4a4a4a;
	--ans-accent-alt: #737373;
	--ans-bg: #ffffff;
	--ans-surface: #ffffff;
	--ans-text: #0a0a0a;
	--ans-text-muted: #525252;
	--ans-border: #e5e5e5;
	--ans-radius: 12px;
	--ans-font-body: "Plus Jakarta Sans", system-ui, sans-serif;
	--ans-font-heading: var(--ans-font-body);
	--ans-container: 1200px;
	--ans-header-height: 72px;
	--ans-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] {
	--ans-bg: #0a0a0a;
	--ans-surface: #141414;
	--ans-text: #f5f5f5;
	--ans-text-muted: #a3a3a3;
	--ans-border: #2a2a2a;
	--ans-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--ans-font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--ans-text);
	background: var(--ans-bg);
	transition: background 0.3s, color 0.3s;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--ans-text);
	text-decoration: none;
}

a:hover {
	color: var(--ans-accent);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ans-font-heading);
	line-height: 1.2;
	margin: 0 0 0.5em;
	color: var(--ans-text);
}

.ans-container {
	width: min(100% - 3rem, var(--ans-container));
	margin-inline: auto;
}

.ans-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.75rem;
	font-family: var(--ans-font-heading);
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
	text-decoration: none;
}

/* Buttons — see assets/css/interactions.css */

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
