html, body {
	height: 100%;
	margin: 0;
	background-image: url('images/bg.jpg');
	background-repeat: repeat;
	font-family: 'Libre Baskerville', serif;
	color: #4b3b2a;
}
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background-image:radial-gradient(circle, rgba(194, 170, 130, 0.08) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: mistDrift 80s linear infinite;
	z-index: 1;
	opacity: 0.3;
}
@keyframes mistDrift {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 80px 100px;
	}
}
.main-container {
	margin-top: -70px;
	opacity: 0.7;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 40px;
	padding: 40px;
}
#navigation {
	opacity: .7;
	width: 240px;
	padding: 30px 20px;
	background:linear-gradient(180deg,rgba(255,250,238,0.96) 0%,rgba(248,235,202,0.95) 45%,rgba(240,221,182,0.95) 100%);
	border: 3px solid #d8bf8f;
	border-radius: 16px;
	box-shadow:inset 0 0 18px rgba(255,255,255,0.65),inset 0 -8px 18px rgba(210,185,140,0.18),0 8px 24px rgba(120,90,40,0.12);
	font-family: 'Cinzel Decorative', serif;
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: center;
	position: sticky;
	top: 40px;
	overflow: hidden;
}
#navigation::before {
	content: "";
	position: absolute;
	inset: 0;
	background:repeating-linear-gradient(115deg,rgba(255,255,255,0.18) 0px,rgba(255,255,255,0.18) 2px,transparent 2px,transparent 42px);
	opacity: 0.45;
	pointer-events: none;
}
#navigation::after {
	content: "";
	position: absolute;
	left: 10px;
	right: 10px;
	top: 10px;
	bottom: 10px;
	border: 1px solid rgba(191,165,116,0.35);
	border-radius: 10px;
	pointer-events: none;
}
#navigation a {
	padding: 12px 20px;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	color: #3e2e1d;
	background: linear-gradient(to right, #fdf3d9, #edd3a1);
	border: 2px solid #b7996f;
	text-decoration: none !important;
	box-shadow: 0 0 8px rgba(210, 180, 140, 0.2);
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
}
#navigation a::after {
	content: "";
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 4px;
	height: 3px;
	background:repeating-linear-gradient(to right,#b7996f 0 8px,transparent 8px 12px);
	opacity: 0.6;
}
#navigation a:hover {
	background: #f5dfb1;
	color: #2b1f13;
	box-shadow: 0 0 12px rgba(180, 150, 100, 0.3);
	transform: translateY(-3px);
}
#navigation a::before {
	content: "⚱ ";
	font-size: 15px;
	margin-right: 6px;
	color: #8d7657;
}
#content {
	flex: 1;
	max-width: 800px;
}
#header {
	background-image: url('images/head.jpg');
	background-repeat: no-repeat;
	background-position: center;
	height: 577px;
	width: 100%;
	margin-top: 0;
	position: relative;
	z-index: 0;
}
h1 {
	position: relative;
	text-align: center;
	margin: 40px auto;
	font-size: 48px;
	font-family: 'Cinzel Decorative', serif;
	text-transform: uppercase;
	letter-spacing: 6px;
	font-weight: 700;
	color: #5b472d;
	background: none;
	border: none;
	box-shadow: none;
	text-shadow:1px 1px 0 rgba(255,255,255,0.45),0 2px 8px rgba(120,90,50,0.18);
}
h1::before,h1::after {
	content: "❧";
	display: inline-block;
	font-size: 30px;
	color: #b89a68;
	margin: 0 18px;
	vertical-align: middle;
	opacity: 0.9;
}
h1::after {
	content: " ❧";
}
h1 span {
	position: relative;
	display: inline-block;
	padding-bottom: 12px;
}
h1 span::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 140px;
	height: 3px;
	background:repeating-linear-gradient(to right,#c7a772 0 12px,transparent 12px 18px);
	opacity: 0.7;
}
blockquote {
	position: relative;
	border-left: 8px solid #c9a56e;
	border-right: 8px solid #c9a56e;
	padding: 30px 40px;
	background: linear-gradient(to right, #f8eddc, #e7d2ae);
	border-radius: 18px;
	box-shadow: 0 0 15px rgba(200, 180, 150, 0.3);
	font-family: 'Georgia', serif;
	color: #5a4a36;
	margin: 40px auto;
	max-width: 860px;
	opacity: 0.7;
}
blockquote::before {
	content: "“";
	font-size: 60px;
	color: #cbb18b;
	position: absolute;
	top: 0;
	left: 18px;
	opacity: 0.25;
}
blockquote::after {
	content: "”";
	font-size: 60px;
	color: #cbb18b;
	position: absolute;
	bottom: -25px;
	right: 18px;
	opacity: 0.25;
}
textarea,input,select {
	width: 40%;
	max-width: 600px;
	padding: 16px;
	margin: 12px 0;
	font-size: 16px;
	background: #ffffff !important;
	border: 2px solid #c8b085;
	border-radius: 8px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
	caret-color: #9c815f;
	opacity: 0.8;
	transition: all 0.3s ease;
}
textarea:focus,input:focus,select:focus {
	outline: none;
	background-color: #fff8e6;
	border-color: #bfa06f;
	box-shadow: 0 0 12px rgba(200, 170, 130, 0.5);
}
.contentx {
	border: 5px solid #e3cfab;
	opacity: .7;
	background:linear-gradient(180deg,rgba(255,252,246,0.88) 0%,rgba(250,242,224,0.84) 55%,rgba(243,229,200,0.82) 100%);
	padding: 30px;
	border-radius: 16px;
	font-size: 17px;
	line-height: 1.8;
	color: #4a3c2c;
	letter-spacing: 1.1px;
	box-shadow:inset 0 0 22px rgba(255,255,255,0.6),0 8px 24px rgba(180,150,100,0.12);
	backdrop-filter: blur(3px);
	position: relative;
	overflow: hidden;
}
.contentx::before {
	content: "";
	position: absolute;
	inset: 0;
	background:repeating-linear-gradient(120deg,rgba(255,255,255,0.14) 0px,rgba(255,255,255,0.14) 2px,transparent 2px,transparent 50px);
	opacity: 0.5;
	pointer-events: none;
}
.contentx::after {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(201,169,117,0.35);
	border-radius: 10px;
	pointer-events: none;
}
#footer {
    background:
        linear-gradient(
            180deg,
            rgba(255,251,244,0.92) 0%,
            rgba(248,238,214,0.88) 100%
        );
    color: #7a6547;
    text-align: center;
    padding: 48px 20px;
    margin-top: 70px;
    border-top: 1px solid rgba(201,169,117,0.45);
    font-family: 'Cinzel', serif;
    font-size: 15px;
    letter-spacing: 1.2px;
    line-height: 1.8;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.6),
        0 -2px 12px rgba(180,150,100,0.05);
}
#footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            115deg,
            rgba(255,255,255,0.08) 0px,
            rgba(255,255,255,0.08) 2px,
            transparent 2px,
            transparent 70px
        );
    opacity: 0.35;
    pointer-events: none;
}
#footer::after {
    content: "❦";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(191,165,116,0.65);
    font-size: 16px;
    letter-spacing: 10px;
}
.footer-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.footer-symbol {
    font-size: 24px;
    color: #b89a68;
    margin-bottom: 12px;
    text-shadow:
        0 0 8px rgba(255,255,255,0.4);
}
#footer p {
    margin: 8px 0;
    color: #7a6547;
    font-family: 'Libre Baskerville', serif;
    font-size: 15px;
}
.footer-links {
    margin: 22px 0 14px 0;
}
.footer-links a {
    color: #9b7b53;
    text-decoration: none;
    margin: 0 14px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(198,174,139,0.45);
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: #5c4630;
    border-bottom-color: #bfa574;
    transform: translateY(-2px);
}
#footer small {
    display: block;
    margin-top: 18px;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(110,85,55,0.7);
    text-transform: uppercase;
}
b,strong {
	background-color: #e4c99f;
	color: #2e2113;
	padding: 2px 6px;
	border-radius: 4px;
	font-weight: bold;
	font-family: 'Cinzel', serif;
	letter-spacing: 1px;
	text-transform: uppercase;
}
i,em {
	color: #7a5e43;
	font-style: italic;
	background: linear-gradient(to right, #f3e6c5, #e6d0a8);
	padding: 2px 6px;
	border-radius: 4px;
}
a {
	color: #7a5e43;
	text-decoration: none;
	font-weight: 600;
	border-bottom: 2px solid #c2a77d;
	transition:color 0.3s ease,border-color 0.3s ease;
}
a:hover,a:focus {
	color: #4b3b2a;
	border-bottom-color: #8d7657;
	text-shadow: 0 0 6px rgba(140, 115, 87, 0.6);
	outline: none;
}
a:active {
	color: #3e2e1d;
	border-bottom-color: #7c6340;
	text-shadow: none;
}
