* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}

html, body {
    height: 100%;
	line-height: 1.5;
	text-rendering: optimizeLegibility; 
	-webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.wrapper {
    width: 1130px;
    margin: 0 auto;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Шапка с бургером */
.header {
    background: #558822;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Меню навигации */
.menu {
    background: #3b5e18;
    color: #fff;
    padding: 15px;
    display: flex;
    gap: 20px;
}
.menu a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.menu a:hover {
    text-decoration: underline;
}
.menu .material-symbols-outlined {
    font-size: 20px;
}

/* Основной контент — одноколоночный макет */
.main {
    flex: 1;
    display: block;
}

.content {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    background: #fafafa;
    box-sizing: border-box;
}

.footer {
    background: #212121;
    color: #fff;
    padding: 20px;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .wrapper {
        width: 100%;
        margin: 0;
	}
	
    .content {
        width: 100%;
        padding: 16px;
	}
	
    /* Отступ под фиксированное меню */
    .main::after {
        content: '';
        display: block;
        height: 100px;
	}
	
    /* Нижнее плавающее меню */
    .menu {
        position: fixed;
        bottom: 20px;
        left: 16px;
        right: 16px;
        width: auto;
        background: #3b5e18;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 12px 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border-radius: 40px;
        gap: 0;
	}
	
    .menu a {
        margin: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 11px;
        padding: 4px 0;
        border: none;
        gap: 2px;
        color: #fff;
        text-decoration: none;
	}
	
    .menu .material-symbols-outlined {
        font-size: 24px;
	}
}