@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
	--primary-color: #0066b3;
	--secondary-color: #e91e63;
	--text-color: #333333;
	--light-gray: #f5f7fa;
	--dark-gray: #555555;
	--white: #ffffff;

	/* Spacing */
	--spacing-xs: 0.25rem;
	--spacing-sm: 0.5rem;
	--spacing-md: 1rem;
	--spacing-lg: 2rem;
	--spacing-xl: 3rem;

	/* Font sizes */
	--font-xs: 0.75rem;
	--font-sm: 0.875rem;
	--font-md: 1rem;
	--font-lg: 1.25rem;
	--font-xl: 1.5rem;
	--font-xxl: 2rem;
	--font-xxxl: 2.5rem;
}

/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

* {
	scrollbar-width: thin;
	scrollbar-color: #a3a5a9 #ffffff;
	-ms-overflow-style: none;
}

*::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

*::-webkit-scrollbar-track {
	background:#e8e8e9;
}

*::-webkit-scrollbar-thumb {
	background-color: #a3a5a9;
	border-radius: 8px;
	border: 3px solid #e8e8e9;
}

*::-webkit-scrollbar-thumb:hover {
	background-color: #555;
}

body {
	 min-height: 100vh;
	 font-family: 'Inter', sans-serif;
	 color: var(--text-color);
	 background-color: var(--white);
}

/* Common utility classes */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.btn {
	display: inline-block;
	padding: 0.8rem 2rem;
	font-size: var(--font-md);
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-primary {
	background-color: var(--primary-color);
	color: var(--white);
}

.btn-primary:hover {
	background-color: #005091;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
	background-color: var(--secondary-color);
	color: var(--white);
}

.btn-secondary:hover {
	background-color: #d81b60;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Text utilities */
.text-center {
	text-align: center;
}

.text-primary {
	color: var(--primary-color);
}

.text-secondary {
	color: var(--secondary-color);
}

/* Spacing utilities */
.mt-1 {
	margin-top: var(--spacing-xs);
}
.mt-2 {
	margin-top: var(--spacing-sm);
}
.mt-3 {
	margin-top: var(--spacing-md);
}
.mt-4 {
	margin-top: var(--spacing-lg);
}
.mt-5 {
	margin-top: var(--spacing-xl);
}

.mb-1 {
	margin-bottom: var(--spacing-xs);
}
.mb-2 {
	margin-bottom: var(--spacing-sm);
}
.mb-3 {
	margin-bottom: var(--spacing-md);
}
.mb-4 {
	margin-bottom: var(--spacing-lg);
}
.mb-5 {
	margin-bottom: var(--spacing-xl);
}

/* Responsive utilities */
.d-flex {
	display: flex;
}

.flex-column {
	flex-direction: column;
}

.align-items-center {
	align-items: center;
}

.justify-content-center {
	justify-content: center;
}

.justify-content-between {
	justify-content: space-between;
}

/* Typography Classes */
/* H1 Variations */
.font-h1-reg {
	font-weight: 400; /* Regular */
	font-size: 56px;
	line-height: 140%;
	letter-spacing: -0.04em;
}

.font-h1-med {
	font-weight: 500; /* Medium */
	font-size: 56px;
	line-height: 140%;
	letter-spacing: -0.04em;
}

.font-h1-semibold {
	font-weight: 600; /* Semi-bold */
	font-size: 56px;
	line-height: 140%;
	letter-spacing: -0.04em;
}

/* H2 Variations */
.font-h2-reg {
	font-weight: 400; /* Regular */
	font-size: 48px;
	line-height: 140%;
	letter-spacing: -0.04em;
}

.font-h2-med {
	font-weight: 500; /* Medium */
	font-size: 48px;
	line-height: 140%;
	letter-spacing: -0.04em;
}

.font-h2-semibold {
	font-weight: 600; /* Semi-bold */
	font-size: 48px;
	line-height: 140%;
	letter-spacing: -0.04em;
}

/* H3 Variations */
.font-h3-reg {
	font-weight: 400; /* Regular */
	font-size: 40px;
	line-height: 140%;
	letter-spacing: -0.02em;
}

.font-h3-med {
	font-weight: 500; /* Medium */
	font-size: 40px;
	line-height: 140%;
	letter-spacing: -0.02em;
}

.font-h3-semibold {
	font-weight: 600; /* Semi-bold */
	font-size: 40px;
	line-height: 140%;
	letter-spacing: -0.02em;
}

/* H4 Variations */
.font-h4-reg {
	font-weight: 400; /* Regular */
	font-size: 32px;
	line-height: 140%;
	letter-spacing: -0.04em;
}

.font-h4-med {
	font-weight: 500; /* Medium */
	font-size: 32px;
	line-height: 140%;
	letter-spacing: -0.04em;
}

.font-h4-semibold {
	font-weight: 600; /* Semi-bold */
	font-size: 32px;
	line-height: 140%;
	letter-spacing: -0.04em;
}

/* H5 Variations */
.font-h5-reg {
	font-weight: 400; /* Regular */
	font-size: 24px;
	line-height: 140%;
	letter-spacing: -0.04em;
}

.font-h5-med {
	font-weight: 500; /* Medium */
	font-size: 24px;
	line-height: 140%;
	letter-spacing: -0.04em;
}

.font-h5-semibold {
	font-weight: 600; /* Semi-bold */
	font-size: 24px;
	line-height: 140%;
	letter-spacing: -0.04em;
}

/* H6 Variations */
.font-h6-reg {
	font-weight: 400; /* Regular */
	font-size: 20px;
	line-height: 150%;
	letter-spacing: -0.04em;
}

.font-h6-med {
	font-weight: 500; /* Medium */
	font-size: 20px;
	line-height: 150%;
	letter-spacing: -0.04em;
}

.font-h6-semibold {
	font-weight: 600; /* Semi-bold */
	font-size: 20px;
	line-height: 150%;
	letter-spacing: -0.04em;
}

/* Subheading Variations */
.font-subheading-reg {
	font-weight: 400; /* Regular */
	font-size: 16px;
	line-height: 160%;
	letter-spacing: -0.03em;
}

.font-subheading-med {
	font-weight: 500; /* Medium */
	font-size: 16px;
	line-height: 160%;
	letter-spacing: -0.03em;
}

.font-subheading-semibold {
	font-weight: 600; /* Semi-bold */
	font-size: 16px;
	line-height: 160%;
	letter-spacing: -0.03em;
}

/* Body XL Variations */
.font-body-xl-reg {
	font-weight: 400; /* Regular */
	font-size: 24px;
	line-height: 160%;
	letter-spacing: -0.04em;
}

.font-body-xl-med {
	font-weight: 500; /* Medium */
	font-size: 24px;
	line-height: 160%;
	letter-spacing: -0.04em;
}

.font-body-xl-semibold {
	font-weight: 600; /* Semi-bold */
	font-size: 24px;
	line-height: 160%;
	letter-spacing: -0.04em;
}

/* Body L Variations */
.font-body-l-reg {
	font-weight: 400; /* Regular */
	font-size: 18px;
	line-height: 160%;
	letter-spacing: -0.02em;
}

.font-body-l-med {
	font-weight: 500; /* Medium */
	font-size: 18px;
	line-height: 160%;
	letter-spacing: -0.02em;
}

.font-body-l-semibold {
	font-weight: 600; /* Semi-bold */
	font-size: 18px;
	line-height: 160%;
	letter-spacing: -0.02em;
}

/* Body M Variations */
.font-body-m-reg {
	font-weight: 400; /* Regular */
	font-size: 16px;
	line-height: 160%;
	letter-spacing: -0.02em;
}

.font-body-m-med {
	font-weight: 500; /* Medium */
	font-size: 16px;
	line-height: 160%;
	letter-spacing: -0.02em;
}

.font-body-m-semibold {
	font-weight: 600; /* Semi-bold */
	font-size: 16px;
	line-height: 160%;
	letter-spacing: -0.02em;
}

/* Body S Variations */
.font-body-s-reg {
	font-weight: 400; /* Regular */
	font-size: 14px;
	line-height: 160%;
	letter-spacing: -0.02em;
}

.font-body-s-med {
	font-weight: 500; /* Medium */
	font-size: 14px;
	line-height: 160%;
	letter-spacing: -0.02em;
}

.font-body-s-semibold {
	font-weight: 600; /* Semi-bold */
	font-size: 14px;
	line-height: 160%;
	letter-spacing: -0.02em;
}

/* Label Variations */
.font-label-reg {
	font-weight: 400; /* Regular */
	font-size: 14px;
	line-height: 160%;
	letter-spacing: -0.04em;
}

.font-label-med {
	font-weight: 500; /* Medium */
	font-size: 14px;
	line-height: 160%;
	letter-spacing: -0.04em;
}

.font-label-semibold {
	font-weight: 600; /* Semi-bold */
	font-size: 14px;
	line-height: 160%;
	letter-spacing: -0.04em;
}

/* Caption Variations */
.font-caption-reg {
	font-weight: 400; /* Regular */
	font-size: 12px;
	line-height: 140%;
	letter-spacing: -0.01em;
}

.font-caption-med {
	font-weight: 500; /* Medium */
	font-size: 12px;
	line-height: 140%;
	letter-spacing: -0.01em;
}

.font-caption-semibold {
	font-weight: 600; /* Semi-bold */
	font-size: 12px;
	line-height: 140%;
	letter-spacing: -0.01em;
}

/* Media queries */
@media (max-width: 768px) {
	/* Responsive display utilities */
	.d-md-none {
		display: none;
	}

	.d-md-block {
		display: block;
	}

	.d-md-flex {
		display: flex;
	}

	/* Mobile Typography */
	/* H1 Variations */
	.font-h1-reg,
	.font-h1-med,
	.font-h1-semibold {
		font-size: 28px;
	}

	/* H2 Variations */
	.font-h2-reg,
	.font-h2-med,
	.font-h2-semibold {
		font-size: 24px;
	}

	/* H3 Variations */
	.font-h3-reg,
	.font-h3-med,
	.font-h3-semibold {
		font-size: 24px;
	}

	/* H4 Variations */
	.font-h4-reg,
	.font-h4-med,
	.font-h4-semibold {
		font-size: 20px;
	}

	/* H5 Variations */
	.font-h5-reg,
	.font-h5-med,
	.font-h5-semibold {
		font-size: 18px;
	}

	/* H6 Variations */
	.font-h6-reg,
	.font-h6-med,
	.font-h6-semibold {
		font-size: 16px;
	}

	/* Subheading Variations */
	.font-subheading-reg,
	.font-subheading-med,
	.font-subheading-semibold {
		font-size: 14px;
	}

	/* Body XL Variations */
	.font-body-xl-reg,
	.font-body-xl-med,
	.font-body-xl-semibold {
		font-size: 14px;
	}

	/* Body L Variations */
	.font-body-l-reg,
	.font-body-l-med,
	.font-body-l-semibold {
		font-size: 16px;
	}

	/* Body M Variations */
	.font-body-m-reg,
	.font-body-m-med,
	.font-body-m-semibold {
		font-size: 14px;
	}

	/* Body S Variations */
	.font-body-s-reg,
	.font-body-s-med,
	.font-body-s-semibold {
		font-size: 12px;
	}

	/* Label Variations */
	.font-label-reg,
	.font-label-med,
	.font-label-semibold {
		font-size: 12px;
	}

	/* Caption Variations */
	.font-caption-reg,
	.font-caption-med,
	.font-caption-semibold {
		font-size: 10px;
	}
}
