@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

html,
body {
	position: relative;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

body {
	color: #475569;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	background: #FFFFFF;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	text-decoration: none;
	color: #0F3D4C;
}

label {
	display: block;
}

input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #E5E7EB;
	border-radius: 4px;
	transition: all 0.3s ease;
	background: #FFFFFF;
	color: #475569;
}

input:disabled,
select:disabled {
	color: #94A3B8;
	background: #F1F5F9;
}

button {
	color: #0B2E3A;
	background-color: #D4AF37;
	outline: none;
	border: none;
	cursor: pointer;
	border-radius: 10px;
}

button:disabled {
	color: #fff;
	background-color: #94A3B8;
	cursor: not-allowed;
}

button:not(:disabled):hover {
	background-color: #C49A2C;
	transform: translateY(-1px);
}

button:not(:disabled):active {
	background-color: #B8891F;
	transform: translateY(1px);
}

button:focus {
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35);
}

/* Scrollbar styling */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
	background: #CBD5E1;
	border-radius: 5px;
	border: 2px solid #F1F5F9;
}

::-webkit-scrollbar-thumb:hover {
	background: #94A3B8;
}

/* Selection */
::selection {
	background: rgba(212, 175, 55, 0.3);
	color: #0B2E3A;
}
