html, body {
	height: 100%;
}

body {
	margin: 0;
	font-family: var(--bs-body-font-family, system-ui, -apple-system, "Segoe UI", sans-serif);
	color: #f5f7fb;
	background:
		linear-gradient(180deg, rgba(153, 157, 165, 0.72), rgba(4, 10, 24, 0.88)),
		url("../img/pozadina.png") center center / cover no-repeat fixed;
}

.site-logo {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 10;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem;
	border-radius: 16px;
	background: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	text-decoration: none;
}

.site-logo img {
	display: block;
	width: clamp(84px, 12vw, 140px);
	height: auto;
}

.landing-shell {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 2rem 1rem;
}

.hero-panel {
	width: 100%;
	max-width: 1080px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 28px;
	background: rgba(7, 15, 34, 0.42);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(12px);
}

.hero-copy {
	max-width: 640px;
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.6rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hero-copy h1 {
	margin: 1.2rem 0 0.75rem;
	font-size: clamp(2.4rem, 5vw, 4.8rem);
	line-height: 0.95;
	font-weight: 800;
	max-width: 11ch;
}

.hero-copy p {
	margin: 0;
	max-width: 34rem;
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(245, 247, 251, 0.82);
}

.info-grid {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.info-card {
	padding: 1.5rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-title {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
}

.info-title i {
	color: #8fe3ff;
	font-size: 1.15rem;
}

.info-title h2 {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 700;
}

.info-card p {
	margin: 0;
	color: rgba(245, 247, 251, 0.84);
	line-height: 1.65;
}

.info-card a {
	color: #8fe3ff;
	text-decoration: none;
}

.info-card a:hover {
	text-decoration: underline;
}

@media (max-width: 767.98px) {
	.site-logo {
		top: 0.75rem;
		left: 0.75rem;
	}

	.site-logo img {
		width: 96px;
	}

	.landing-shell {
		padding: 1rem;
	}

	.hero-panel {
		padding: 1.25rem;
		border-radius: 22px;
	}

	.info-grid {
		grid-template-columns: 1fr;
	}

	.hero-copy h1 {
		max-width: 100%;
	}
}
