:root {
	--page-bg: #050505;
	--panel-bg: rgba(12, 16, 15, 0.72);
	--panel-strong: rgba(21, 28, 27, 0.9);
	--border: rgba(255, 255, 255, 0.12);
	--text: #f4f1ea;
	--muted: #b5afa6;
	--faint: #756f68;
	--accent: #c4ab9f;
	--accent-strong: #4a6a6a;
}

html,
body {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	background-color: rgb(5, 5, 5);
	background-image:
		linear-gradient(to bottom, transparent, rgb(5, 5, 5, 0.5)),
		url("../../public/images/background-compressed.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}

html {
	scroll-behavior: smooth !important;
}

body {
	display: flex;
	flex-direction: column;
	font-family: "Poppins";
	color: #a5a5a5;
	min-height: 100vh;
}

.font-serif {
	font-family: serif !important;
}

main {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

div {
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ul {
	list-style: none;
	margin-bottom: 0px;
}

p {
	font-size: 16px;
	line-height: 1.875;
	font-weight: 400;
	color: #636363;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

p a {
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px rgba(74, 106, 106, 0.3);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

p a:active {
	position: relative;
	color: #4a6a6a;
}

p a:hover {
	color: #e6e6e6;
	background: transparent;
}

p a:hover::after {
	opacity: 0.2;
}

p:last-of-type {
	margin-bottom: 0;
}

a {
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

a,
a:hover,
a:visited,
a:active,
a:link {
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

p a:active {
	position: relative;
	color: #ff6347;
}

p a:hover::after {
	opacity: 0.2;
}

::selection {
	background: rgba(196, 171, 159, 0.5);
	color: #ffffff;
}

p::selection {
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
	line-height: 1.2;
	color: #232323;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {
}

section {
	display: block;
	position: relative;
	box-sizing: border-box;
}

#mainNavbar {
	padding-block: 30px;
	backdrop-filter: blur(5px);
	transition: all 500ms;
	z-index: 100;
}

#mainNavbar.scrolled {
	padding-block: 15px;
}

.logo a {
	display: block;
	color: white;
}

.logo a > div:first-child {
	font-size: 52px;
	line-height: 0.75;
	font-family: serif;
}

.logo a > div:last-child {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	line-height: 0.75;
	margin-top: 12px;
	opacity: 0.6;
}

.glass-card {
	/*background: rgba(255, 255, 255, 0.03) !important;*/
	backdrop-filter: blur(5px) !important;
	padding: 35px;
	width: 100%;
	max-width: 550px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#submitBtn {
	color: #4a6a6a !important;
	transition: all 500ms;
}

#submitBtn:hover {
	color: white !important;
}

#mainNavbar .btn-outline-light {
	color: #e6e6e6;
}

#mainNavbar .btn-outline-light:hover {
	background: #4a6a6a;
	border-color: #4a6a6a;
	color: #e6e6e6;
}

#mainNavbar .btn-light {
	background: #4a6a6a;
	border-color: #4a6a6a;
	color: #e6e6e6;
}

#mainNavbar .btn-light:hover {
	background: #5a7a7a;
	border-color: #5a7a7a;
	color: #e6e6e6;
}

#mainNavbar .btn-success {
	background: #4a6a6a;
	border-color: #4a6a6a;
	color: #e6e6e6;
}

#mainNavbar .btn-success:hover {
	background: #5a7a7a;
	border-color: #5a7a7a;
	color: #e6e6e6;
}

.glass-card h2 {
	font-size: 52px;
	line-height: 0.75;
	font-family: serif;
	font-weight: 300;
	color: #f8f9fa;
	padding-bottom: 35px;
	text-align: center;
	letter-spacing: 1px;
}

.form-group {
	margin-bottom: 22px;
}

.form-label {
	color: #e0e0e0;
	font-size: 15px;
	margin-bottom: 8px;
	display: block;
	font-weight: 400;
}

.custom-input {
	background: rgba(255, 255, 255, 0.1) !important;
	border: 1px solid rgba(255, 255, 255, 0.05) !important;
	color: #ffffff !important;
	border-radius: 6px;
	padding: 10px;
	transition: all 0.3s ease;
}

.custom-input::placeholder {
	color: darkgray !important;
}

.custom-input:focus {
	border-color: transparent !important;
	box-shadow: 0 0 0px rgba(160, 196, 255, 0.2);
	background: rgba(255, 255, 255, 0.15) !important;
}

.btn-cta {
	background: #4a6a6a;
	color: #e6e6e6 !important;
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.btn-cta:hover {
	background: #5a7a7a;
	color: #e6e6e6 !important;
}

/* Responzivnost za naslov */
@media (max-width: 576px) {
	.display-2 {
		font-size: 2.5rem;
	}
}

.btn-outline-light {
	backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
	body {
		background-position: 85% center;
	}
}
