/* WHW Base Styles & GeneratePress Resets */

/* Box-sizing reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Body */
body {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: var(--whw-text-primary);
	background-color: var(--whw-bg-primary);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: var(--whw-text-primary);
}

h1 {
	font-weight: 800;
	font-size: 56px;
	line-height: 1.15;
}

h2 {
	font-weight: 600;
	font-size: 36px;
	line-height: 1.2;
}

h3 {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.25;
}

@media (max-width: 768px) {
	h1 { font-size: 36px; }
	h2 { font-size: 28px; }
	h3 { font-size: 20px; }
}

/* GeneratePress container max-width and responsive margins */
.grid-container {
	max-width: 1200px;
	padding-left: 80px;
	padding-right: 80px;
}

@media (max-width: 768px) {
	.grid-container {
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media (max-width: 480px) {
	.grid-container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* GeneratePress resets - border-radius, shadows */
.button,
.gb-button,
.inside-article,
.comment-respond,
.widget,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	border-radius: 0 !important;
	box-shadow: none !important;
}

/* Global border-radius reset */
* {
	border-radius: 0 !important;
}

/* Button component */
.whw-btn {
	display: inline-block;
	background: var(--whw-accent);
	color: var(--whw-text-white);
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 15px;
	padding: 12px 24px;
	border: none;
	border-radius: 0 !important;
	cursor: pointer;
	text-decoration: none;
	line-height: 1;
	min-height: 44px;
}

.whw-btn:hover {
	background: var(--whw-accent-hover);
	color: var(--whw-text-white);
	text-decoration: none;
}

/* Card component */
.whw-card {
	background: var(--whw-bg-secondary);
	border: 1px solid var(--whw-border);
	border-radius: 0 !important;
	padding: 40px;
	box-shadow: none !important;
}

/* Section label component */
.whw-section-label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--whw-text-secondary);
}

.whw-section-label::before {
	content: '';
	display: block;
	width: 24px;
	height: 1.5px;
	background: var(--whw-accent);
	margin-bottom: 10px;
}

/* Section vertical padding */
.whw-section {
	padding-top: 96px;
	padding-bottom: 96px;
}

@media (max-width: 768px) {
	.whw-section {
		padding-top: 64px;
		padding-bottom: 64px;
	}
}

/* Touch target minimum on mobile */
@media (max-width: 768px) {
	a,
	button,
	[role="button"],
	input,
	select,
	textarea {
		min-height: 44px;
	}
}