/*
Theme Name: Custom Theme
Theme URI: 
Author: Ash
Author URI: 
Description: Custom WordPress theme (starter). Homepage, Services, Company (About/Careers/Contact).
Version: 1.0.3
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: custom-theme
*/

/* ==========================================================================
   Base reset
   ========================================================================== */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Inter', 'Roboto', 'Funnel Display', sans-serif;
	color: var(--color-text);
	background-color: var(--color-bg);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
}

/* ==========================================================================
   Theme color variables (white-bluish palette — adjust once design is final)
   ========================================================================== */
:root {
	--color-bg: #ffffff;
	--color-bg-alt: #F7F7F8;
	--color-text: #1F2328;
	--color-text-muted: #5B6470;
	--color-primary: #ED1E26;
	--color-primary-dark: #B3141A;
	--color-gradient-dark: #0f52ac;
	--color-primary-pale: #FBDCDB;
	--color-primary-pale-2: #F5C9C8;
	--color-neutral-border: #CDD2D8;
	--color-neutral-pale-bg: #F4F4F5;
	--color-border: #E4E6EA;
	--font-heading: 'Funnel Display', 'Inter', sans-serif;
	--font-body: 'Inter', 'Roboto', sans-serif;
	--container-width: 1200px;
}