:root {
	--font-Georgia: Georgia, serif;
	--font-Inter: "Inter", sans-serif;
	--font-Arial: Arial, Helvetica, sans-serif;

	--dark: #000;
	--white: #fff;
	--white-50: #f2f2f2;

	--gray: #8c919b;
	--gray-50: #333333;
	--gray-100: #b1b1b1;
	--gray-150: #707070;
	--gray-200: #585b61;
	--red: #ff0000;

	--hover: #f9ad1b;
	--hover-orange: #ff5100;

	--bg-footer: #111111;
	--bg-btn: #cf0000;

	/* Border */
	--border-gray: 1px solid var(--gray-50);
	--border-btn: 1px solid var(--gray-100);
	--border-footer: 1px solid var(--gray-200);

	--shadow-btn: 0 3px 5px 0 rgba(0, 0, 0, 0.25);
	--shadow-header: 0 0 12.8px 0 rgba(0, 0, 0, 0.25);

	/* Font Weight */
	--fw-400: 400;
	--fw-700: 700;
	--fw-800: 800;

	/* Font Size */
	--text-12: 12px;
	--text-16: 16px;
	--text-18: 18px;
	--text-20: 20px;
	--text-22: 22px;
	--text-24: 24px;
	--text-30: 30px;
	--text-32: 32px;
	--text-46: 46px;

	/* Line Height */
	--lh-1: 1;
	--lh-115: 1.15;
	--lh-12: 1.2;
	--lh-13: 1.3;
	--lh-14: 1.4;
	--lh-15: 1.5;
	--lh-16: 1.6;
	--lh-175: 1.75;
	--lh-2: 2;

	/* Radius */
	--radius-2: 2px;

	/* Transition */
	--transition: 0.3s ease-in-out;
}

body {
	font-family: var(--font-Georgia);
	font-size: var(--text-20);
	font-weight: var(--fw-400);
	line-height: var(--lh-14);
	color: var(--dark);
	background-color: var(--white);
}

h1 {
	font-family: var(--font-Inter);
	font-size: var(--text-46);
	font-weight: var(--fw-800);
	line-height: var(--lh-13);
	letter-spacing: -1.5px;
}

h2 {
	font-family: var(--font-Inter);
	font-size: var(--text-30);
	font-weight: var(--fw-700);
	line-height: var(--lh-12);
	color: var(--gray-50);
}

.container {
	max-width: 1205px;
	width: 100%;
	margin-inline: auto;
	padding-inline: 16px;
}

.highlight {
	position: relative;
	transition: color var(--transition);

	&::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 1px;
		background-color: currentColor;
		transform: scaleX(1);
		transform-origin: left;
		transition: transform 0.3s ease;
	}

	&:hover {
		color: var(--hover-orange);

		&::after {
			transform: scaleX(0);
		}
	}
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn {
	font-family: var(--font-Arial);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
	max-width: 210px;
	width: 100%;
	padding-block: 8px;
	font-size: var(--text-24);
	font-weight: var(--fw-700);
	line-height: var(--lh-115);
	border: var(--border-btn);
	border-radius: var(--radius-2);
	background: var(--red);
	box-shadow: var(--shadow-btn);
	color: var(--white);
	overflow: hidden;
	cursor: pointer;

	transition: transform var(--transition), box-shadow var(--transition),
		background var(--transition);

	&:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
		background: var(--bg-btn);
	}
}

.visibility-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	border: 0 !important;
	padding: 0 !important;
	white-space: nowrap !important;
	clip-path: inset(100%) !important;
	clip: rect(0 0 0 0) !important;
	overflow: hidden !important;
}

/* #region MEDIA QUERIES */

@media (max-width: 1199px) {
	.container {
		max-width: 930px;
	}
}

@media (max-width: 991px) {
	.container {
		max-width: 700px;
	}
}

@media (max-width: 767px) {
	.container {
		max-width: 100%;
	}
	h1 {
		font-size: var(--text-32);
	}
}

/* #endregion MEDIA QUERIES */
