body {

  line-height: 1.5;
  letter-spacing: 0.02em;
  font-size: 20px; 
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; 
  word-spacing: 0.05em; 
  
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;	
  color: #333;
}
.logo{
	height: 58px;
}
/* Общая шапка */
.site-header {
    background: #fff;
    padding: 0px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

/* Внутренний контейнер */
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* для мобильных экранов */
}

/* Основное меню */
.main-nav {
    display: flex;
	width: 100%;
}

.main-menu {
    display: flex;         
    flex-wrap: wrap;      
    list-style: none;     
    padding: 0;
    margin: 25px;
    gap: 25px;             
    align-items: stretch;  
}

.main-menu li {
    display: flex;        
}

.main-menu a {
    text-decoration: none;
    color: #333;
    background-color: #f8f9fa;
    padding: 15px 25px;    
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid #333;
    letter-spacing: 0.02em;
    line-height: 1.2;
    
    display: flex;         
    align-items: center;   
    justify-content: center; 
    text-align: center;
    
    width: 100%;           
    box-sizing: border-box; 
}

.main-menu a:hover {
    background-color: #333;
    color: #ffffff;
}

@media (max-width: 992px) {
    
	.nav-inner {
        flex-direction: column;
        align-items: flex-start;
    }
	
	.main-menu {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }
		
}

/* Базово */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Логотип */
.logo {
    height: 40px;
}

/* Бургер (скрыт на десктопе) */
.burger {
    width: 30px;
    height: 22px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

/* Общие линии */
.burger span,
.burger::before,
.burger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000;
    transition: 0.3s ease;
}

/* Центральная линия */
.burger span {
    top: 50%;
    transform: translateY(-50%);
}

/* Верхняя */
.burger::before {
    top: 0;
}

/* Нижняя */
.burger::after {
    bottom: 0;
}

/* --- СОСТОЯНИЕ АКТИВНО (крестик) --- */
.burger.active span {
    opacity: 0;
}

.burger.active::before {
    top: 50%;
    transform: rotate(45deg);
}

.burger.active::after {
    bottom: auto;
    top: 50%;
    transform: rotate(-45deg);
}
@media (max-width: 768px) {
	.tiger{
		text-align: center;
	}
	.site-header {
		border: none;
	}

    .burger {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 47px;
        left: 0;
        width: calc(100% - 40px);
        background: #fff;
        display: none;
		padding: 20px;
    }

    .main-nav.active {
        display: block;
    }

    .main-menu {
        flex-direction: column;
		margin: 0;
		border: 1px solid #e5e5e5;
		border-radius: 8px;
		padding: 15px;
		background: #e5e5e5;
		width: calc(100% - 30px);
    }

    .main-menu li:not(:first-child) {
        display: none;
    }

    .main-nav.active .main-menu li {
        display: block;
    }
	
}