html,body {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	background: #E9E9E9;
	font-family: 'Libre Baskerville', serif;
	color: #3f3f3f;
}
body::after {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	background:radial-gradient(circle at 20% 20%, rgba(255,255,255,0.6), transparent 45%),radial-gradient(circle at 80% 70%, rgba(180,180,180,0.25), transparent 50%),radial-gradient(circle at 50% 50%, rgba(210,210,210,0.15), transparent 60%);
	opacity: .5;
	z-index: 1;
}
.main-container {
	display: flex;
	gap: 50px;
	padding: 20px;
	align-items: flex-start;
	justify-content: center;
}
#navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	width: fit-content;
	max-width: 90%;
	margin: 0 auto 60px auto;
	padding: 38px 36px;
	background: linear-gradient(180deg, rgba(247,247,246,.96), rgba(227,227,225,.92));
	border: 1px solid #d1d1d1;
	border-radius: 18px;
	box-shadow: 0 8px 25px rgba(0,0,0,.08), inset 0 1px 4px rgba(255,255,255,.9);
	position: relative;
	z-index: 50;
}
#navigation::before {
	content: "ᚠ ᚢ ᚦ ᚨ ᚱ ᚲ • ᛟ • ᚠ ᚢ ᚦ ᚨ ᚱ ᚲ";
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 10px;
	letter-spacing: 5px;
	color: rgba(90,90,90,.45);
	white-space: nowrap;
}
#navigation a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 20px 38px;
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Cinzel Decorative', serif;
	font-size: 13px;
	color: #4a4a4a;
}
#navigation a::before {
	content: "ᛟ";
	margin-right: 8px;
	color: #888;
}
#navigation a::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 6px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #666, #aaa, transparent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}
#navigation a:hover {
	transform: translateY(-2px);
	background: linear-gradient(145deg, #ffffff, #ececec);
	box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}
#navigation a:hover::after {
	transform: scaleX(1);
}
#content {
	width: 78%;
	margin: -170px auto;
}
#header {
	background-image: url('images/head.jpg');
	background-position: center;
	background-repeat: no-repeat;
	height: 699px;
}
h1 {
	position: relative;
	display: table;
	margin: 80px auto 70px;
	padding: 20px 90px;
	font-family: 'Cinzel Decorative', serif;
	font-size: 26px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 10px;
	color: #4a4a4a;
	background: linear-gradient(180deg, rgba(250,250,250,.95), rgba(228,228,228,.92));
	border: 1px solid #cfcfcf;
	border-radius: 40px 8px 40px 8px;
	text-shadow: 0 1px 0 rgba(255,255,255,.9), 0 3px 10px rgba(0,0,0,.08);
	box-shadow: inset 0 1px 12px rgba(255,255,255,.8), 0 15px 35px rgba(0,0,0,.08);
}
h1::before {
	content: "ᚦ";
	position: absolute;
	left: 28px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 34px;
	font-weight: normal;
	color: #888;
}
h1::after {
	content: "ᛟ ᚠ ᚢ ᚦ ᚨ ᚱ ᚲ ᛟ";
	position: absolute;
	left: 50%;
	bottom: -24px;
	transform: translateX(-50%);
	font-size: 11px;
	font-weight: normal;
	letter-spacing: 6px;
	white-space: nowrap;
	color: rgba(90,90,90,.45);
}
@media (max-width: 768px) {
	h1 {
		font-size: 36px;
		letter-spacing: 5px;
		padding: 16px 50px;
	}
	h1::before {
		left: 16px;
		font-size: 24px;
	}
	h1::after {
		font-size: 8px;
		letter-spacing: 3px;
	}
}
@media (max-width: 480px) {
	h1 {
		font-size: 28px;
		letter-spacing: 3px;
		padding: 14px 35px;
	}
	h1::before {
		font-size: 18px;
		left: 12px;
	}
	h1::after {
		content: "ᛟ ✦ ᛟ";
		bottom: -18px;
		font-size: 10px;
		letter-spacing: 2px;
	}
}
.contentx {
	display: block;
	padding: 18px 52px;
	margin: 20px auto;
	max-width: 920px;
	line-height: 1.85;
	letter-spacing: .3px;
	color: #3f3f3f;
	font-size: 18px;
	font-family: 'Libre Baskerville', Georgia, serif;
	text-align: justify;
	position: relative;
	overflow: hidden;
}
.contentx::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(120deg, rgba(255,255,255,.4) 0px, transparent 3px, rgba(200,200,200,.1) 6px);
	opacity: .25;
	pointer-events: none;
}
.contentx::after {
	content: "ᛝ";
	position: absolute;
	top: 18px;
	right: 24px;
	font-size: 24px;
	color: rgba(120,120,120,.25);
	pointer-events: none;
}
.contentx a {
	color: #4a4a4a;
	text-decoration: none;
	border-bottom: 2px solid #c9c9c9;
	padding: 0 2px;
	transition: all .25s ease;
	background: linear-gradient(transparent 60%, rgba(255,255,255,.6));
}
.contentx a:hover {
	color: #2f2f2f;
	border-bottom-color: #9e9e9e;
	transform: translateY(-1px);
}
.contentx a:visited {
	color: #5a5a5a;
	border-bottom-color: #bdbdbd;
}
blockquote {
	position: relative;
	border: none;
	border-radius: 18px 4px 18px 4px;
	padding: 30px 40px;
	background: linear-gradient(135deg,#f3f3f3,#dedede);
	box-shadow: inset 0 0 20px rgba(255,255,255,.6);
	color: #4a4a4a;
}
blockquote::before {
	content: "ᚦ";
	position: absolute;
	left: -18px;
	top: 16px;
	font-size: 34px;
	color: #9c9c9c;
}
blockquote::after {
	content: "ᚦ";
	position: absolute;
	right: 20px;
	bottom: 12px;
	font-size: 24px;
	color: rgba(120,120,120,.4);
}
.norse-divider {
	text-align: center;
	margin: 60px 0;
	color: #8a8a8a;
	letter-spacing: 10px;
	font-size: 18px;
}
.norse-divider::before {
	content: "ᛟ ✦ ᚦ ✦ ᚨ ✦ ᚱ ✦ ᛟ";
}
textarea,input,select {
	width: 45%;
	max-width: 620px;
	border-radius: 14px 6px 14px 6px;
	border: 1px solid #c9c9c9;
	background: #f7f7f7;
	color: #444;
	padding: 12px;
	font-family: inherit;
}
#footer a {
	position: relative;
	display: inline-block;
	margin: 0 14px;
	padding: 6px 2px;
	color: #444;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.4px;
	transition: all 0.25s ease;
}
#footer a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, #666, transparent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}
#footer a:hover {
	color: #111;
	transform: translateY(-2px);
	text-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
#footer a:hover::after {
	transform: scaleX(1);
}
#footer a:active {
	transform: translateY(0px) scale(0.98);
}
#footer a:not(:last-child)::before {
	content: "•";
	position: absolute;
	right: -18px;
	color: rgba(100,100,100,0.3);
	pointer-events: none;
}
#footer {
	width: 100%;
	margin: 190px 0 0;
	padding: 60px 40px;
	position: relative;
	overflow: hidden;
	text-align: center;
	color: #444;
	z-index: 5;
}
#footer::before {
	content: "ᚠ ᚢ ᚦ ᚨ ᚱ ᚲ ᚷ ᚹ ᚺ ᚾ ᛁ ᛃ ᛇ ᛈ ᛉ ᛊ ᛏ ᛒ ᛖ ᛗ ᛚ ᛜ ᛞ ᛟ";
	position: absolute;
	top: 18px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	letter-spacing: 6px;
	color: rgba(80,80,80,0.35);
	white-space: nowrap;
	pointer-events: none;
}
#footer::after {
	content: "ᛟ";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 52px;
	color: rgba(120,120,120,0.10);
	pointer-events: none;
}
#footer .orb-glow {
	position: absolute;
	inset: -60px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%);
	filter: blur(30px);
	z-index: 0;
	pointer-events: none;
}
.corner {
	position: absolute;
	font-size: 18px;
	color: rgba(130,130,130,.35);
	pointer-events: none;
}
.corner-tl {
	top: 12px;
	left: 12px;
}
.corner-tr {
	top: 12px;
	right: 12px;
}
.corner-bl {
	bottom: 12px;
	left: 12px;
}
.corner-br {
	bottom: 12px;
	right: 12px;
}
@media (max-width: 1024px) {
	.main-container {
		flex-direction: column;
		padding: 30px;
		gap: 30px;
	}
	#navigation {
		flex-wrap: wrap;
		padding: 20px;
		gap: 10px;
	}
	#content {
		max-width: 100%;
		margin-top: 0;
		width: 100%;
	}
	.contentx {
		max-width: 100%;
		padding: 36px 30px;
	}
}
@media (max-width: 768px) {
	#navigation {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding: 16px;
	}
	#navigation a {
		width: 100%;
		text-align: center;
		padding: 12px;
	}
	#header {
		height: 420px;
		background-size: cover;
	}
	h1 {
		font-size: 32px;
		letter-spacing: 4px;
		padding: 10px 16px;
	}
	h1::before,h1::after {
		display: none;
	}
	.contentx {
		padding: 24px 18px;
		font-size: 16px;
		line-height: 1.9;
	}
	textarea,input,select {
		width: 100%;
	}
}
@media (max-width: 480px) {
	#navigation {
		padding: 12px;
		gap: 8px;
	}
	#navigation a {
		font-size: 12px;
		padding: 10px;
	}
	.contentx {
		padding: 18px 14px;
		border-radius: 18px 6px 18px 6px;
	}
	h1 {
		font-size: 26px;
		letter-spacing: 3px;
	}
}
