/* Header Styles - единая ширина как у всех блоков */
.header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid #e5e7eb;
	transition: all 0.3s ease;
	height: 100px;
}

.header._scrolled {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	height: 80px;
}

.header__wrapper {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 12px;
	transition: padding 0.3s ease;
	height: 100%;
}

@media (min-width: 768px) {
	.header__wrapper {
		padding: 0 4rem;
	}
}

@media (min-width: 1400px) {
	.header__wrapper {
		padding: 0 6rem;
	}
}

.header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 100%;
	position: relative;
	gap: 2rem;
	transition: all 0.3s ease;
}

/* Left side: Burger + Navigation */
.header__left {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	justify-content: flex-start;
}

/* Navigation buttons visible - только на десктопе */
.header__nav {
	display: none !important; /* На мобильных скрыты */
	align-items: center;
}

@media (min-width: 1024px) {
	.header__nav {
		display: flex !important; /* На десктопе видны */
		visibility: visible !important;
		opacity: 1 !important;
	}
}

.header__nav-list {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.link-tickets,
.link-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 0.375rem;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.link-tickets {
	background-color: #CE9826;
	color: #fff;
	border: 2px solid #CE9826;
}

.link-tickets:hover {
	background-color: #a87d1f;
	border-color: #a87d1f;
	transform: translateY(-1px);
}

.link-btn {
	background-color: transparent;
	color: #111827;
	border: 2px solid #e5e7eb;
}

.link-btn:hover {
	background-color: #f3f4f6;
	border-color: #d1d5db;
}

.link-btn__inner {
	display: block;
}

/* Center: Logo */
.header__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.header__logo img {
	height: 50px;
	width: auto;
	object-fit: contain;
	transition: height 0.3s ease, width 0.3s ease;
}

.header:not(._scrolled) .header__logo img {
	height: 70px;
}

.header__logo-text {
	font-size: 1.25rem;
	font-weight: 600;
	color: #111827;
}

@media (max-width: 767px) {
	.header__logo {
		padding-top: 8px;
	}
}

/* Right side: Vision impaired button */
.header__right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
}

/* Year logo in header */
.header__year-logo {
	display: flex !important;
	align-items: center;
	height: 100%;
	max-height: 60px;
	margin-right: 1rem;
}

/* Скрыть логотип года в хедере на мобильных */
@media (max-width: 768px) {
	.header__year-logo {
		display: none !important;
	}
}

.header__year-logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.header__year-logo a:hover {
	opacity: 0.7;
}

.header__year-logo img {
	max-height: 50px;
	width: auto;
	max-width: 150px !important;
	object-fit: contain;
	transition: all 0.3s ease;
	display: block !important;
}

.header._scrolled .header__year-logo img {
	max-height: 40px;
}

/* Social links in header */
.header__socials {
	display: none; /* Скрыты на мобильных */
	align-items: center;
	gap: 0.5rem;
}

@media (min-width: 1024px) {
	.header__socials {
		display: flex; /* Видны на десктопе */
	}
}

.header__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 0.375rem;
	transition: all 0.3s ease;
	text-decoration: none;
	color: #6b7280;
}

.header__social-link:hover {
	background: #f3f4f6;
	color: #CE9826;
}

.header__social-link svg {
	width: 32px;
	height: 32px;
}

.header__vi {
	display: flex;
	align-items: center;
}

.header__vi .bvi-open {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 0.375rem;
	transition: background 0.3s ease;
	text-decoration: none;
	color: #111827;
}

.header__vi .bvi-open:hover {
	background: #f3f4f6;
}

.header__vi .bvi-open svg {
	width: 24px;
	height: 24px;
}

/* Burger Button */
.header__burger {
	position: relative;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
}


/* Header Navigation */
.header__nav {
	display: flex;
	align-items: center;
}

.header__nav-list {
	display: flex;
	align-items: center;
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.header__nav-list li {
	margin: 0;
}

/* Navigation button styles */
.link-tickets {
	display: inline-block;
	padding: 0.625rem 1.25rem;
	background: #CE9826;
	color: #fff;
	text-decoration: none;
	border-radius: 0.375rem;
	font-weight: 600;
	font-size: 0.875rem;
	transition: background 0.3s ease;
}

.link-tickets:hover {
	background: #a87d1f;
	color: #fff;
}

.link-btn {
	display: inline-block;
	padding: 0.625rem 1.25rem;
	border: 2px solid #111827;
	color: #111827;
	text-decoration: none;
	border-radius: 0.375rem;
	font-weight: 600;
	font-size: 0.875rem;
	transition: all 0.3s ease;
	background: transparent;
}

.link-btn:hover {
	background: #111827;
	color: #fff;
}

.link-btn__inner {
	display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
	.header__inner {
		grid-template-columns: auto 1fr auto;
		gap: 1rem;
	}
	
	/* Кнопки только на десктопе */
	@media (min-width: 1024px) {
		.header__nav {
			display: flex !important;
		}
	}
	
	.header__logo {
		justify-content: center;
	}
}

.helper-burger {
	width: 24px;
	height: 18px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.helper-burger span {
	display: block;
	width: 100%;
	height: 2px;
	background: #111827;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transform-origin: center;
}

.header__burger._active .helper-burger span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.header__burger._active .helper-burger span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.header__burger._active .helper-burger span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Header Nav (hidden on all screens, only burger visible) */
.header__nav {
	display: none;
}

/* Burger Menu */
.burger-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	overflow: hidden;
	display: flex;
}

.burger-nav._active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.burger-nav__close {
	position: absolute;
	top: 2rem;
	left: 2rem;
	width: 48px;
	height: 48px;
	cursor: pointer;
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: opacity 0.3s ease;
	background: transparent;
	border: none;
	padding: 0;
}

.burger-nav__close:hover {
	opacity: 0.7;
}

.burger-nav__close svg {
	width: 40px;
	height: 40px;
	stroke-width: 3;
}

.burger-nav__main {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #111827;
	color: #fff;
	display: flex;
	flex-direction: column;
	padding: 2rem;
	overflow-y: auto;
	transform: translateX(-100%);
	transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	z-index: 1;
}

.burger-nav._active .burger-nav__main {
	transform: translateX(0);
}

/* Contacts in burger menu */
.burger-nav__contacts {
	margin-top: 3rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.burger-nav__contacts-heading {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #fff;
}

.burger-nav__contact-item {
	margin-bottom: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.5s ease forwards;
}

.burger-nav._active .burger-nav__contacts-heading {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.5s ease forwards;
	animation-delay: 0.45s;
}

.burger-nav._active .burger-nav__contact-item:nth-child(1) { animation-delay: 0.5s; }
.burger-nav._active .burger-nav__contact-item:nth-child(2) { animation-delay: 0.55s; }
.burger-nav._active .burger-nav__contact-item:nth-child(3) { animation-delay: 0.6s; }
.burger-nav._active .burger-nav__contact-item:nth-child(4) { animation-delay: 0.65s; }
.burger-nav._active .burger-nav__contact-item:nth-child(5) { animation-delay: 0.7s; }

.burger-nav__contact-label {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
}

.burger-nav__contact-link {
	color: #fff;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s ease;
}

.burger-nav__contact-link:hover {
	color: #CE9826;
}

.burger-nav__contact-text {
	color: #fff;
	font-size: 1rem;
}

.burger-nav__nav {
	flex: 1;
	margin-top: 4rem;
}

.burger-nav__nav-main {
	list-style: none;
	padding: 0;
	margin: 0;
}

.burger-nav__nav-main > li {
	margin-bottom: 1.5rem;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.5s ease forwards;
}

.burger-nav._active .burger-nav__nav-main > li:nth-child(1) { animation-delay: 0.1s; }
.burger-nav._active .burger-nav__nav-main > li:nth-child(2) { animation-delay: 0.15s; }
.burger-nav._active .burger-nav__nav-main > li:nth-child(3) { animation-delay: 0.2s; }
.burger-nav._active .burger-nav__nav-main > li:nth-child(4) { animation-delay: 0.25s; }
.burger-nav._active .burger-nav__nav-main > li:nth-child(5) { animation-delay: 0.3s; }
.burger-nav._active .burger-nav__nav-main > li:nth-child(6) { animation-delay: 0.35s; }
.burger-nav._active .burger-nav__nav-main > li:nth-child(7) { animation-delay: 0.4s; }

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.burger-nav__nav-main > li > a {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	text-decoration: none;
	display: block;
	padding: 0.75rem 0;
	transition: color 0.3s ease;
	position: relative;
}

.burger-nav__nav-main > li > a:hover {
	color: #CE9826;
}

.burger-nav__nav-main > li > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #CE9826;
	transition: width 0.3s ease;
}

.burger-nav__nav-main > li > a:hover::after {
	width: 100%;
}

/* Submenu on hover */
.burger-nav__has-submenu {
	position: relative;
}

.burger-nav__dropdown {
	list-style: none;
	padding: 0;
	margin: 0;
	padding-left: 2rem;
	margin-top: 0.5rem;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}

.burger-nav__has-submenu:hover .burger-nav__dropdown {
	max-height: 500px;
	opacity: 1;
}

.burger-nav__dropdown li {
	margin-bottom: 0.5rem;
}

.burger-nav__dropdown li a {
	display: block;
	padding: 0.5rem 0 !important;
	color: rgba(255, 255, 255, 0.8) !important;
	font-size: 1.25rem !important;
	font-weight: 400 !important;
	text-decoration: none !important;
	transition: all 0.3s ease !important;
	position: relative;
}

.burger-nav__dropdown li a:hover {
	color: #CE9826 !important;
	padding-left: 1rem !important;
}

.burger-nav__dropdown li a::after {
	display: none !important;
}

/* Burger Nav Side */
.burger-nav__side {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: #CE9826;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 3rem;
	transform: translateX(100%);
	transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	overflow: hidden;
	z-index: 1;
}

.burger-nav._active .burger-nav__side {
	transform: translateX(0);
}

.burger-nav__side-back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.15;
	pointer-events: none;
	overflow: hidden;
}

.burger-nav__side-back svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.1);
}

.burger-nav__side-top {
	position: relative;
	z-index: 2;
}

.burger-nav__logos {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}

.burger-nav__side-logo {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex: 1;
	position: relative;
	z-index: 2;
}

.burger-nav__year-logo {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.burger-nav__year-logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.burger-nav__year-logo a:hover {
	opacity: 0.7;
}

.burger-nav__year-logo img {
	max-height: 50px;
	width: auto;
	max-width: 150px;
	object-fit: contain;
	display: block;
}

.burger-nav__side-logo img {
	height: 60px;
	width: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.burger-nav__side-logo-text {
	color: #fff;
	font-size: 0.875rem;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.burger-nav__side-info {
	margin-top: 2rem;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}

.burger-nav__side-info-text {
	color: #fff;
	font-size: 0.75rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	opacity: 0.95;
	font-weight: 400;
	letter-spacing: 0.01em;
}

.burger-nav__side-info-contacts {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.burger-nav__side-info-contact {
	color: #fff;
	font-size: 0.875rem;
	line-height: 1.6;
	opacity: 0.95;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.burger-nav__side-info-contact strong {
	font-weight: 600;
	opacity: 1;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.25rem;
}

.burger-nav__side-info-contact a {
	color: #fff;
	text-decoration: none;
	transition: opacity 0.3s ease;
	font-weight: 400;
}

.burger-nav__side-info-contact a:hover {
	opacity: 0.8;
	text-decoration: underline;
}

.burger-nav__side-address {
	color: #fff;
	font-size: 0.875rem;
	margin-bottom: 2rem;
	opacity: 0.95;
	position: relative;
	z-index: 2;
	line-height: 1.5;
}

.burger-nav__socials {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

.burger-nav__socials-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transition: background 0.3s ease, transform 0.3s ease;
}

.burger-nav__socials-item:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.burger-nav__socials-item svg,
.burger-nav__socials-item img {
	width: 32px;
	height: 32px;
}

.burger-nav__side-bottom {
	position: relative;
	z-index: 1;
}

.footer__contacts-item {
	margin-bottom: 2rem;
}

.footer__contacts-item-heading {
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.footer__contacts-item-body {
	color: #fff;
	font-size: 0.875rem;
	opacity: 0.9;
}

.footer__contacts-item-phone a,
.footer__contacts-item-email a {
	color: #fff;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.footer__contacts-item-phone a:hover,
.footer__contacts-item-email a:hover {
	opacity: 0.8;
}

.footer__contacts-item-schedule {
	margin-top: 0.5rem;
	font-size: 0.8rem;
	opacity: 0.8;
}

/* Prevent body scroll when menu is open */
body._burger-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
	left: 0;
	right: 0;
}

/* Vision Impaired (BVI) Styles */
body._bvi-active {
	font-size: 18px;
	line-height: 1.8;
}

body._bvi-active * {
	font-size: inherit !important;
	line-height: inherit !important;
}

body._bvi-active h1,
body._bvi-active h2,
body._bvi-active h3,
body._bvi-active h4,
body._bvi-active h5,
body._bvi-active h6 {
	font-size: 1.5em !important;
	font-weight: 700 !important;
}

body._bvi-active a {
	text-decoration: underline !important;
	border-bottom: 2px solid currentColor !important;
}

body._bvi-active img {
	border: 2px solid #000 !important;
}

body._bvi-active button,
body._bvi-active .btn,
body._bvi-active .link-tickets,
body._bvi-active .link-btn {
	font-size: 18px !important;
	padding: 1rem 2rem !important;
	min-height: 48px !important;
	border: 3px solid currentColor !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.burger-nav__close {
		top: 1rem;
		left: 1rem;
		width: 40px;
		height: 40px;
	}
	
	.burger-nav__close svg {
		width: 32px;
		height: 32px;
	}
	
	.burger-nav {
		flex-direction: column;
		overflow-y: auto;
		overflow-x: hidden;
	}
	
	.burger-nav__main {
		width: 100%;
		height: auto;
		min-height: 100vh;
		position: relative;
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		flex-shrink: 0;
	}
	
	.burger-nav._active .burger-nav__main {
		transform: translateX(0);
	}
	
	.burger-nav__side {
		width: 100%;
		position: relative;
		height: auto;
		min-height: auto;
		transform: translateX(0);
		background: #CE9826;
		padding: 2rem 1.5rem;
		flex-shrink: 0;
	}
	
	.burger-nav._active .burger-nav__side {
		transform: translateX(0);
	}
	
	.header__inner {
		height: 70px;
	}
	
	.burger-nav__nav-main > li > a {
		font-size: 1.25rem;
	}
	
	.burger-nav__side-back {
		opacity: 0.1;
	}
	
	.burger-nav__logos {
		flex-direction: column;
		gap: 1.5rem;
		margin-bottom: 1.5rem;
	}
	
	.burger-nav__side-logo {
		width: 100%;
	}
	
	.burger-nav__year-logo {
		justify-content: center;
		width: 100%;
	}
	
	.burger-nav__year-logo img {
		max-height: 40px;
		max-width: 120px;
	}
}

