/* ====== ОБЩЕЕ ====== */
.h_header {
	background: #0b0b0b;
	color: #fff;
	font-family: Montserrat, Arial, sans-serif;
	font-size: 14px;
}
.h_header-inner {
	width:100%;
	margin: 0 auto;
	padding: 8px 40px;
	display: flex;
	align-items: center;
	    flex-direction: row;
    justify-content: space-between;
    position: relative;
}

/* ====== ЛОГО ====== */
.h_logo img {
	width: 65px;
	height: auto;
	display: block;
}

/* ====== НАВИГАЦИЯ ====== */
.h_nav          { margin-left: 40px; position: absolute;
	left: 50%;
	transform: translateX(-50%); 
font-family: 'TildaSans', Arial, sans-serif;
	    font-size: 17px;
    color: #ffffff;
    font-weight: 400;

}
.h_nav-list     { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.h_nav-link     { color: #fff; text-decoration: none; white-space: nowrap; transition: opacity .2s; }
.h_nav-link:hover { opacity: .7; }

/* --- подменю --- */
.h_nav-item-sub { position: relative; }
.h_nav-item-sub:focus-within .h_submenu,
.h_nav-item-sub:hover .h_submenu { display: block; }

.h_submenu {
	position: absolute;
	top: 100%; left: 0;
	background: #0b0b0b;
	min-width: 220px;
	padding: 10px 0;
	list-style: none;
	display: none;
	box-shadow: 0 4px 12px rgba(0,0,0,.4);
	z-index: 20;
	margin-left: 0%;
}
.h_submenu li      { padding: 6px 20px; }
.h_submenu a       { color: #fff; text-decoration: none; font-size: 13px; display: block; }
.h_submenu a:hover { opacity: .7; }

/* ====== ПРАВАЯ ЧАСТЬ ====== */
.h_right  { margin-left: auto; display: flex; align-items: center; gap: 26px; }

/* --- соцсети --- */
.h_social {
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: flex-end;
}

.h_social-btn {
	display: flex;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	background-color: #000;
	border-radius: 50%;
	transition: background 0.3s ease;
}

.h_social-btn:hover {
	background-color: #686868;
}

.h_social-icon {
	display: block;
	width: 30px;
	height: 30px;
	color: #000; /* цвет внутри круга */
}

/* --- языки --- */
.h_langs        { display: flex; gap: 10px; }
.h_lang         { color: #fff; text-decoration: none;  opacity: .5; transition: opacity .2s; }
.h_lang--active { opacity: 1; }
.h_lang:hover   { opacity: .75; }

/* ====== АДАПТИВ ====== */
@media (max-width: 900px){
	.h_nav { display:none; }           /* прячем меню, если нужен бургер */
}
