/* FONT IMPORTS */
@font-face {
    font-family: 'Bender';
    src: url('/assets/fonts/Bender.otf') format('opentype');
    font-weight: 400;
}
@font-face {
    font-family: 'Bender';
    src: url('/assets/fonts/Bender-Light.otf') format('opentype');
    font-weight: 300;
}
@font-face {
    font-family: 'Benderb';
    src: url('/assets/fonts/Bender-Bold.otf') format('opentype');
    font-weight: 700;
}
@font-face {
    font-family: 'Bender';
    src: url('/assets/fonts/Bender-Black.otf') format('opentype');
    font-weight: 900;
}

body {
    margin: 0;
    padding: 0;
	font-family: Benderb, serif !important;
	margin-top: 60px;

}

.main-header {
	box-shadow: 0 3px 6px #131414;
    position: fixed;
    top: var(--top-line-height,0);
    width: 100%;
	top: 0;
    left: 0;
    z-index: 99;
	flex-direction: row;
	margin-bottom: 50px;
	
}
.header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 51px;
    padding: 0 70px;
    background-image: url('/assets/img/header_s.png');
    background-color: #2e2f2f;
    border-bottom: 1px solid #2e2f2f;
    background-blend-mode: overlay;
    border: 1px solid rgb(255 255 255 / 35%);
    box-shadow: 0 0 12px rgb(0 0 0 / 70%), inset 0 0 18px rgba(0, 0, 0, 0.4), 0 3px 6px #131414;
}

.header-left {
    display: flex;
    align-items: center;
}
.header-right a {
    text-decoration: none !important;
}
.header-center {
    display: flex;
    justify-content: center;
    flex: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.project-title {
	cursor: pointer;
    padding: 20px 0
}
.header-nav {
	align-items: center;
    display: flex;
    flex-direction: row;
    user-select: none;
}
.header-nav_info {
	line-height: 0;
}

/* LANGUAGE DROPDOWN */
.language-selector {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    z-index: 100000;
}

.lang-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn img {
    width: 20px;
    height: 14px;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 35px;
    right: 0;
    background: #141414;
    border: 1px solid #333;
    border-radius: 6px;
    list-style: none;
    width: 180px;
    padding: 6px 0;
    z-index: 100000;
}

.language-selector.open .lang-menu {
    display: block;
}

.lang-menu li a {
    color: #ccc;
    padding: 7px 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-menu li a:hover {
    background: #333;
    color: white;
}

.language-selector img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}
