/**
 * Global Theme Styles.
 *
 * @package InterviewsQ_Theme
 */

/* =====================================
   CSS Reset
===================================== */

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background-color: #ffffff;
	color: #111827;
	font-family:
		Inter,
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;
	font-size: 16px;
	line-height: 1.6;
}


/* =====================================
   Typography
===================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	color: #111827;
	line-height: 1.2;
	font-weight: 700;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

a {
	color: #2563eb;
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}


/* =====================================
   Images
===================================== */

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


/* =====================================
   Container System
===================================== */

.container {
	width: min(1200px, 100%);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}


/* =====================================
   Buttons
===================================== */

.iq-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
}
