/**
 * Обновление визуальной темы: палитра, градиенты, тени.
 * Подключается после template.css
 */
:root {
	--theme-page-0: #1a1424;
	--theme-page-1: #2a1f38;
	--theme-card: #fdf9ff;
	--theme-accent: #c94b7f;
	--theme-accent-soft: #e8b4c8;
	--theme-accent-deep: #8b3d62;
	--theme-link: #f06b8a;
	--theme-link-hover: #6ee7d8;
	--theme-header-0: #3d2452;
	--theme-header-1: #6b3a5c;
	--theme-header-2: #a85a7a;
	--shadow-elev: 0 8px 32px rgba(12, 6, 22, 0.45), 0 2px 8px rgba(12, 6, 22, 0.25);
	--shadow-card: 0 12px 40px rgba(45, 25, 60, 0.35), 0 4px 12px rgba(25, 12, 40, 0.2);
	--shadow-glow: 0 0 32px rgba(201, 75, 127, 0.35);
	--shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

html {
	min-height: 100%;
	background: radial-gradient(ellipse 120% 80% at 50% -20%, var(--theme-page-1) 0%, var(--theme-page-0) 55%, #0f0a14 100%);
	background-attachment: fixed;
}

body {
	color: #3a3540;
}

a {
	color: var(--theme-link);
	transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
	color: var(--theme-link-hover);
	text-shadow: 0 0 12px rgba(110, 231, 216, 0.35);
}

h1 {
	color: #c4b8d4;
	text-shadow:
		0 1px 2px rgba(18, 8, 30, 0.85),
		0 0 24px rgba(201, 75, 127, 0.25);
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

h1 a {
	color: var(--theme-accent-soft) !important;
}

h1 a:hover {
	color: #fff !important;
}

h2 {
	color: #2e2638;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

h3 {
	color: var(--theme-accent-deep);
	text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5), 0 0 20px rgba(201, 75, 127, 0.2);
}

#sub-title h2,
.SiteDescr h3,
noscript {
	color: var(--theme-accent-soft) !important;
}

h3.famous {
	border-top-color: var(--theme-accent-deep);
	color: var(--theme-accent-soft);
}

.Wrapper1 {
	background: linear-gradient(180deg, var(--theme-card) 0%, #f7f2fa 100%);
	border-radius: 18px;
	box-shadow: var(--shadow-card), var(--shadow-inset);
	border: 1px solid rgba(255, 255, 255, 0.45);
}

#header {
	height: 430px;
	background:
		url("images/13101990.png") 50% 100% no-repeat,
		linear-gradient(168deg, var(--theme-header-0) 0%, var(--theme-header-1) 42%, var(--theme-header-2) 100%);
	box-shadow:
		inset 0 -20px 50px rgba(0, 0, 0, 0.12),
		0 16px 40px rgba(18, 6, 30, 0.4);
}

.mymenunew li:hover {
	box-shadow:
		var(--shadow-glow),
		0 8px 24px rgba(0, 0, 0, 0.25);
	transition: box-shadow 0.25s ease, transform 0.2s ease;
	transform: translateY(-2px);
}

.mymenunew li a {
	color: #e8dfe8;
	text-shadow:
		0 1px 3px rgba(0, 0, 0, 0.7),
		0 0 18px rgba(201, 75, 127, 0.35);
}

.TopBox li.button div,
.TopBox li.button a {
	background: linear-gradient(165deg, #5c2d6e 0%, #3d1f4f 48%, #1a1028 100%) !important;
	box-shadow:
		var(--shadow-inset),
		0 4px 14px rgba(92, 45, 110, 0.55),
		0 2px 4px rgba(0, 0, 0, 0.4) !important;
	border-radius: 12px !important;
	transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.TopBox li.button div:hover,
.TopBox li.button a:hover {
	box-shadow:
		var(--shadow-inset),
		0 6px 22px rgba(201, 75, 127, 0.45),
		0 3px 8px rgba(0, 0, 0, 0.35) !important;
	transform: translateY(-1px);
}

.TopBox li a {
	color: #9dd4c4;
	transition: color 0.15s ease;
}

.TopBox li a:hover {
	color: #c9f7ec;
	text-shadow: 0 0 10px rgba(157, 212, 196, 0.4);
}

#content {
	background: linear-gradient(180deg, #efeaf4 0%, #e4dce8 52%, #ddd4e2 100%) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.ContentWrap1 {
	background: linear-gradient(180deg, #e8e0ed 0%, #ddd2e6 100%) !important;
}

.TitleBox {
	filter: drop-shadow(0 2px 8px rgba(45, 25, 60, 0.08));
}

.secmenu li {
	border-color: rgba(139, 61, 98, 0.45);
	background: linear-gradient(180deg, #f0d4e0 0%, #d9a8be 45%, #c98aa8 100%) !important;
	box-shadow:
		0 4px 16px rgba(45, 20, 55, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.45);
	transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.secmenu li:hover {
	box-shadow:
		0 0 24px rgba(201, 75, 127, 0.5),
		0 6px 20px rgba(45, 20, 55, 0.3);
	transform: translateY(-1px);
}

.secmenu li a {
	color: #4a1f3a;
	font-weight: 600;
}

.selregion:hover {
	color: var(--theme-accent) !important;
}

.entera {
	background: linear-gradient(90deg, var(--theme-accent-deep), var(--theme-accent)) !important;
	box-shadow: 0 4px 14px rgba(139, 61, 98, 0.4);
}

/* Футер и мобильное меню */
#footer {
	background: linear-gradient(180deg, #e8e2ec 0%, #d5cadf 100%) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
	border-top: 1px solid rgba(74, 53, 98, 0.12);
}

.SiteDescr {
	border-bottom-color: rgba(74, 53, 98, 0.15);
}

.SiteDescr h1 {
	color: #2e2638 !important;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.FootMenu li a {
	color: var(--theme-accent-deep);
}

.FootMenu li a:hover,
.FootMenu li a.active {
	color: var(--theme-link-hover);
	text-shadow: 0 0 8px rgba(110, 231, 216, 0.25);
}

.menu {
	background: linear-gradient(180deg, #4a3558 0%, #2a1f38 100%) !important;
	box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35) !important;
}

.menu li {
	border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

.menu a:hover {
	background-color: rgba(201, 75, 127, 0.28) !important;
	color: #fff !important;
}

#overlay {
	background: rgba(18, 10, 28, 0.82) !important;
}

#reg-box-city,
#reg-box-metro {
	border-radius: 12px !important;
	box-shadow: var(--shadow-elev) !important;
	border: 1px solid rgba(255, 255, 255, 0.35);
}
