:root {
	--nav-bg: rgba(10, 26, 54, 0.94);
	--nav-text: #ffffff;
	--page-bg: #ffffff;
	--accent: #d6a540;
	--text-dark: #0f2340;
	--text-light: #5f6b7a;
	--border: rgba(10, 26, 54, 0.1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--text-dark);
	background: var(--page-bg);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

a {
	color: inherit;
	text-decoration: none;
}

main {
	flex: 1;
}

/* =========================
   HEADER
========================= */

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: var(--nav-bg);
	backdrop-filter: blur(10px);
}

.top-nav {
	max-width: 1200px;
	margin: 0 auto;
	height: 78px;
	padding: 0 clamp(1rem, 3vw, 1.5rem);
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--nav-text);
	height: 100%;
}

.brand img {
	display: block;
	width: clamp(100px, 10vw, 116px);
	max-height: 54px;
	height: auto;
	object-fit: contain;
}

/* =========================
   MAIN
========================= */

.coming-soon {
	min-height: calc(100vh - 78px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(3rem, 8vw, 5rem) 1.5rem;
}

.coming-soon-content {
	width: min(850px, 100%);
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* =========================
   TEKST
========================= */

.coming-soon h1 {
	margin: 0 0 1.2rem;
	font-size: clamp(2rem, 5vw, 3.4rem);
	line-height: 1.15;
	font-weight: 800;
	color: var(--text-dark);
	text-align: center;
}

.subtitle {
	max-width: 620px;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--text-light);
	text-align: center;
}

.follow-text {
	margin: 3rem 0 1.5rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-dark);
	text-align: center;
}

/* =========================
   SOCIAL MEDIA
========================= */

.social-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	width: 100%;
}

.social-card {
	width: 230px;
	min-height: 100px;
	padding: 1.5rem;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #ffffff;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;

	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text-dark);

	box-shadow: 0 8px 25px rgba(15, 35, 64, 0.06);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.social-card:hover {
	transform: translateY(-4px);
	border-color: var(--accent);
	box-shadow: 0 12px 30px rgba(15, 35, 64, 0.12);
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	background: var(--nav-bg);
	color: #ffffff;

	flex-shrink: 0;
}

.social-icon svg {
	width: 23px;
	height: 23px;
	display: block;
}

.social-icon svg path {
	fill: currentColor;
}

.social-icon svg rect,
.social-icon svg circle {
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.social-icon svg .instagram-dot {
	fill: currentColor;
	stroke: none;
}

/* =========================
   NAPIS NA DOLE
========================= */

.site-status {
	position: fixed;
	right: 1.5rem;
	bottom: 1.2rem;

	font-size: 0.85rem;
	color: #7a8492;

	background: rgba(255, 255, 255, 0.92);
	padding: 0.35rem 0.5rem;
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
	.top-nav {
		height: 72px;
	}

	.brand img {
		width: clamp(100px, 18vw, 116px);
		max-height: 52px;
	}

	.coming-soon {
		min-height: calc(100vh - 72px);
		padding: 3.5rem 1rem 5rem;
	}

	.coming-soon h1 {
		font-size: clamp(2rem, 8vw, 3rem);
	}

	.subtitle {
		font-size: 1rem;
	}

	.social-links {
		flex-direction: column;
		gap: 1rem;
	}

	.social-card {
		width: min(320px, 100%);
	}
}

/* =========================
   TELEFON
========================= */

@media (max-width: 420px) {
	.top-nav {
		height: 68px;
		padding: 0 1rem;
	}

	.brand img {
		width: clamp(92px, 32vw, 108px);
		max-height: 48px;
	}

	.coming-soon {
		min-height: calc(100vh - 68px);
		padding: 2.5rem 0.85rem 5rem;
	}

	.coming-soon h1 {
		font-size: clamp(1.9rem, 11vw, 2.7rem);
	}

	.subtitle {
		font-size: 0.98rem;
		line-height: 1.65;
	}

	.follow-text {
		margin-top: 2.5rem;
	}

	.social-card {
		min-height: 88px;
		padding: 1.2rem;
	}

	.site-status {
		right: 0.75rem;
		bottom: 0.7rem;
		font-size: 0.72rem;
	}
}