/*
Theme Name: Chizz Studio Landing
Theme URI: https://chizzstudio.ru/
Author: Chizz Studio
Author URI: https://chizzstudio.ru/
Description: 
Version: 2.1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog
Text Domain: chizzstudio

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

.chizz-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	right: 0;
}

.chizz-navbar {
	background: rgba(23,23,23,.86);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255,255,255,.12);
}

.chizz-navbar-inner {
	width: min(1180px, calc(100% - 40px));
	min-height: 82px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 28px;
}

.chizz-navbar-logo {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
}

.chizz-navbar-logo img {
	display: block;
	width: 148px;
	max-height: 58px;
	object-fit: contain;
}

.chizz-navbar-menu {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
}

.chizz-main-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.chizz-main-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	border-radius: 999px;
	padding: 0 12px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}

.chizz-main-menu a:hover,
.chizz-main-menu a:focus-visible {
	background: rgba(241,195,15,.16);
	color: #f1c30f;
}

.chizz-navbar-cta {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border-radius: 999px;
	padding: 0 18px;
	background: #f1c30f;
	color: #171717;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.chizz-navbar-toggle {
	display: none;
	width: 46px;
	height: 46px;
	margin-left: auto;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 999px;
	background: rgba(255,255,255,.08);
	padding: 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}

.chizz-navbar-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	transition: transform .18s ease, opacity .18s ease;
}

.chizz-navbar-toggle.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.chizz-navbar-toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.chizz-navbar-toggle.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1120px) {
	.chizz-navbar-inner {
		min-height: 76px;
	}

	.chizz-navbar-toggle {
		display: inline-flex;
	}

	.chizz-navbar-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		padding: 14px 20px 20px;
		background: rgba(23,23,23,.96);
		border-bottom: 1px solid rgba(255,255,255,.12);
	}

	.chizz-navbar-menu.is-open {
		display: grid;
		gap: 14px;
	}

	.chizz-main-menu {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.chizz-main-menu a {
		width: 100%;
		justify-content: center;
		background: rgba(255,255,255,.06);
	}

	.chizz-navbar-cta {
		width: 100%;
	}
}

@media (max-width: 560px) {
	.chizz-navbar-inner {
		width: min(100% - 30px, 1180px);
	}

	.chizz-navbar-logo img {
		width: 124px;
	}

	.chizz-main-menu {
		grid-template-columns: 1fr;
	}
}

.chizz-site-footer {
	background: #171717;
	color: #fff;
	padding: 48px 0;
}

.chizz-footer-inner {
	width: min(1160px, calc(100% - 40px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(220px, 1.3fr) repeat(4, minmax(140px, .7fr));
	gap: 28px;
	align-items: start;
}

.chizz-footer-brand img {
	width: 138px;
	height: auto;
	margin-bottom: 16px;
}

.chizz-footer-brand p,
.chizz-footer-contact p {
	margin: 0;
	color: rgba(255,255,255,.72);
	line-height: 1.6;
}

.chizz-footer-contact span {
	display: block;
	margin-bottom: 8px;
	color: #f1c30f;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.chizz-footer-contact a,
.chizz-footer-social a {
	color: #fff;
	font-weight: 700;
}

.chizz-footer-social {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,.16);
}

.chizz-footer-social a {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 999px;
	padding: 0 18px;
}

@media (max-width: 960px) {
	.chizz-footer-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.chizz-footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.chizz-footer-inner {
		width: min(100% - 30px, 1160px);
		grid-template-columns: 1fr;
	}

	.chizz-footer-social {
		display: grid;
	}
}
