@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

html, body {
	height: 100%;
	margin: 0;
	font-family: 'Lora', serif;
	color: #d1cdb8;
	background-color: #050000;
}
#header {
	background-image: url('images/head.jpg');
	background-repeat: no-repeat;
	background-color: #050000;
	background-position: center;
	height: 781px;
	width: 100%;
	margin-top: 0;
	position: relative;
}
#navigation {
	width: 60%;
	margin: -15px auto 0;
	padding: 30px 20px;
	background: rgba(10, 8, 10, 0.75);
	border-top: 1px solid rgba(241, 168, 10, 0.3);
	border-bottom: 1px solid rgba(184, 15, 10, 0.3);
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
	box-shadow:0 20px 40px rgba(0, 0, 0, 0.9),0 0 30px rgba(184, 15, 10, 0.1),inset 0 0 15px rgba(241, 168, 10, 0.05);
	text-align: center;
	font-family: 'Cinzel', serif;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
}
#navigation a {
	position: relative;
	padding: 8px 20px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(224, 218, 203, 0.8);
	background: rgba(18, 12, 14, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#navigation a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0%;
	height: 1px;
	background: linear-gradient(90deg, transparent, #ffd700, transparent);
	transition: width 0.4s ease, opacity 0.4s ease;
	opacity: 0;
}
#navigation a:hover {
	color: #ffffff;
	background: rgba(45, 10, 15, 0.4);
	border-color: rgba(241, 168, 10, 0.5);
	box-shadow:0 0 20px rgba(241, 168, 10, 0.25),0 0 8px rgba(255, 51, 51, 0.3);
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 12px rgba(241, 168, 10, 0.5);
	transform: translateY(-1px);
}
#navigation a:hover::after {
	width: 80%;
	opacity: 1;
}
#navigation a:active {
	transform: translateY(0);
	opacity: 0.7;
}
h1 {
	position: relative;
	font-family: 'Cinzel', serif;
	font-weight: 400;
	font-size: 24px;
	letter-spacing: 6px;
	color: #f7e7c4;
	text-transform: uppercase;
	text-align: center;
	margin: 45px auto;
	padding: 18px 20px;
	max-width: 75%;
	background: radial-gradient(ellipse at center, rgba(35, 8, 12, 0.6) 0%, rgba(5, 4, 5, 0) 75%);
	border: none;
	text-shadow:0 0 10px rgba(241, 168, 10, 0.6),0 0 22px rgba(184, 15, 10, 0.5),0 0 40px rgba(184, 15, 10, 0.2);
}
h1::before,h1::after {
	content: '';
	position: absolute;
	left: 15%;
	width: 70%;
	height: 1px;
}
h1::before {
	top: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(241, 168, 10, 0.6) 50%, transparent 100%);
}
h1::after {
	bottom: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(184, 15, 10, 0.6) 50%, transparent 100%);
}
#content {
	margin: 60px auto;
	width: 57%;
}
.contentx {
	position: relative;
	background: #110e0e;
	padding: 60px 70px;
	font-family: 'Lora', Georgia, serif;
	font-size: 19px;
	line-height: 2.0;
	letter-spacing: 0.25px;
	text-align: justify;
	color: #d1cdb8;
}
.contentx a {
	position: relative;
	display: inline-block;
	font-family: 'Cinzel', serif;
	font-size: 0.95em;
	font-weight: 600;
	letter-spacing: 0.8px;
	text-decoration: none;
	padding: 0 2px 4px;
	background: linear-gradient(135deg, #f1a80a 0%, #ffd700 50%, #b8860b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.3s ease;
}
.contentx a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #f1a80a, #b80f0a);
	clip-path: polygon(0% 0%, 50% 100%, 100% 0%, 100% 100%, 0% 100%);
	transition: transform 0.3s ease, filter 0.3s ease;
}
.contentx a:hover {
	background: linear-gradient(135deg, #ffd700 0%, #fff0a8 50%, #f1a80a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.contentx a:hover::after {
	transform: translateY(2px);
	filter: drop-shadow(0 0 6px rgba(241, 168, 10, 0.8));
}
.contentx b,.contentx strong {
	position: relative;
	display: inline-block;
	font-family: 'Cinzel', serif;
	font-weight: 700;
	font-size: 0.92em;
	letter-spacing: 1px;
	padding: 0 3px 5px;
	background: linear-gradient(135deg, #ff3333 0%, #b80f0a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.contentx b::after,.contentx strong::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #b80f0a 0%, #f1a80a 50%, #b80f0a 100%);
	clip-path: polygon(0 40%, 45% 40%, 50% 100%, 55% 40%, 100% 40%, 100% 100%, 0 100%);
}
.contentx i,.contentx em {
	position: relative;
	display: inline-block;
	font-family: 'Lora', serif;
	font-style: italic;
	font-weight: 500;
	padding: 0 4px 4px;
	background: linear-gradient(135deg, #d1cdb8 0%, #f1a80a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.contentx i::after,.contentx em::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #f1a80a 0%, #ffd700 100%);
	clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
}
blockquote {
	position: relative;
	font-family: 'Lora', Georgia, serif;
	font-style: italic;
	font-size: 20px;
	line-height: 1.8;
	color: #e0dacb;
	max-width: 800px;
	margin: 45px auto;
	padding: 35px 45px 35px 65px;
	background: linear-gradient(180deg, #140d0d 0%, #080505 100%);
	border-left: 4px solid #b80f0a;
	border-top: 1px solid #2a0a0a;
	border-right: 1px solid #2a0a0a;
	border-bottom: 1px solid #2a0a0a;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(184, 15, 10, 0.1);
}
blockquote::before {
	content: '“';
	position: absolute;
	top: 5px;
	left: 18px;
	font-family: 'Cinzel', serif;
	font-size: 75px;
	line-height: 1;
	background: linear-gradient(135deg, #ff3333 0%, #f1a80a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 0.85;
	pointer-events: none;
}
blockquote::after {
	content: '”';
	position: absolute;
	bottom: -25px;
	right: 25px;
	font-family: 'Cinzel', serif;
	font-size: 65px;
	line-height: 1;
	background: linear-gradient(135deg, #f1a80a 0%, #b80f0a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 0.3;
	pointer-events: none;
}
textarea, input, select {
	width: 100%;
	max-width: 600px;
	padding: 12px 16px;
	margin: 15px 0;
	font-family: 'Lora', serif;
	font-size: 18px;
	color: #e0dacb;
	background: #000000!important;
	border: 1px solid #4a1212;
	border-radius: 0;
	box-sizing: border-box;
	transition: all 0.2s ease;
}
textarea:focus, input:focus, select:focus {
	outline: none;
	background-color: #140d0d;
	border-color: #f1a80a;
	box-shadow: 0 0 8px rgba(241, 168, 10, 0.4), inset 0 0 6px rgba(184, 15, 10, 0.3);
}
#footer {
	position: relative;
	font-family: 'Cinzel', serif;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
	padding: 50px 30px;
	margin-top: 80px;
	background-color: #050404;
	border-top: 1px solid #2a0a0a;
	color: #8c8375;
}
#footer h2,#footer .footer-title {
	font-family: 'Cinzel', serif;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 3px;
	margin: 0 0 20px;
	background: linear-gradient(135deg, #ff3333 0%, #f1a80a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#footer a {
	position: relative;
	display: inline-block;
	color: inherit;
	text-decoration: none;
	font-weight: 600;
	padding: 0 2px 4px;
	margin: 0 10px;
	background: linear-gradient(135deg, #b80f0a 0%, #f1a80a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.3s ease;
}
#footer a::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #f1a80a, #b80f0a);
	clip-path: polygon(0% 0%, 50% 100%, 100% 0%, 100% 100%, 0% 100%);
	transition: transform 0.3s ease, filter 0.3s ease;
}
#footer a:hover {
	background: linear-gradient(135deg, #ff4d4d 0%, #ffd700 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#footer a:hover::after {
	transform: translateY(2px);
	filter: drop-shadow(0 0 4px rgba(241, 168, 10, 0.6));
}
button,input[type="submit"],input[type="button"],input[type="reset"],.form-btn {
	position: relative;
	display: inline-block;
	padding: 14px 32px;
	margin: 15px 0;
	font-family: 'Cinzel', serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
	color: #ffffff;
	background: linear-gradient(135deg, #2b0505 0%, #610b0b 50%, #b80f0a 100%);
	border: 1px solid #850c0c;
	outline: 1px solid #f1a80a;
	outline-offset: -5px;
	border-radius: 0;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 0 8px rgba(184, 15, 10, 0.3);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
button:hover,input[type="submit"]:hover,input[type="button"]:hover,input[type="reset"]:hover,.form-btn:hover {
	background: linear-gradient(135deg, #420808 0%, #8f0e0e 50%, #f1a80a 100%);
	border-color: #f1a80a;
	outline-color: #ffd700;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.9), 0 0 15px rgba(241, 168, 10, 0.5);
}
button:active,input[type="submit"]:active,input[type="button"]:active,input[type="reset"]:active,.form-btn:active {
	transform: translateY(0);
	background: linear-gradient(135deg, #1c0303 0%, #420808 100%);
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.9);
}
button:focus-visible,input[type="submit"]:focus-visible,input[type="button"]:focus-visible {
	outline: 2px solid #f1a80a;
	outline-offset: 2px;
}
button.btn-secondary,input[type="reset"],.form-btn-secondary {
	background: linear-gradient(180deg, #140d0d 0%, #080505 100%);
	color: #d1cdb8;
	border: 1px solid #4a1212;
	outline: 1px solid #f1a80a;
}
button.btn-secondary:hover,input[type="reset"]:hover,.form-btn-secondary:hover {
	background: linear-gradient(180deg, #241313 0%, #120808 100%);
	color: #ffd700;
	border-color: #f1a80a;
}
