/* ============================================
   СТИЛИ ШАПКИ САЙТА
   ============================================ */

/* ----- Баннер шапки ----- */
.header-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.header-banner .banner-placeholder {
    width: 100%;
    height: 100%;
    background-color: #4a6741;
}
.header-banner .banner-placeholder:after {
    content: attr(title);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    width: 80%;
}

/* ----- Блок контактов ----- */
.header-contacts {
    background-color: #2c2c2c;
    padding: 12px 0;
    color: #ffffff;
    font-size: 14px;
}
.header-contacts .container {
    text-align: center;
}
.contact-phone,
.contact-address,
.contact-time,
.contact-callback,
.contact-social {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
}
.contact-icon {
    margin-right: 5px;
    font-size: 16px;
}
.contact-phone .phone-link {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}
.contact-phone .phone-link:hover {
    color: #4caf50;
}
.contact-social {
    white-space: nowrap;
}
.social-icon-max,
.social-icon-tg {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    text-decoration: none;
}
.social-icon-max .icon-placeholder,
.social-icon-tg .icon-placeholder {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}
.social-icon-max .icon-placeholder {
    background-color: #8b5cf6;
}
.social-icon-tg .icon-placeholder {
    background-color: #0088cc;
}

/* ----- Главное меню ----- */
.main-menu {
    background-color: #ffffff;
    border-bottom: 3px solid #2a7d2a;
    position: sticky;
    top: 0;
    z-index: 100;
}
.main-menu .container {
    position: relative;
}

/* Кнопка мобильного меню */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: 2px solid #333333;
    border-radius: 4px;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 15px;
    top: 10px;
}
.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333333;
    margin: 5px 0;
}

/* Список меню */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 0;
}
.menu-item {
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    position: relative;
}
.menu-link {
    display: block;
    padding: 15px 20px;
    color: #333333;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
}
.menu-link:hover {
    background-color: #f0f0f0;
    color: #2a7d2a;
}

/* Некликабельная ссылка */
.menu-link-no-click {
    display: block;
    padding: 15px 20px;
    color: #333333;
    font-weight: bold;
    font-size: 15px;
    white-space: nowrap;
    cursor: default;
}
.menu-link-no-click:hover {
    background-color: #f0f0f0;
    color: #2a7d2a;
}

/* Стрелка */
.menu-item-has-children > .menu-link:after,
.menu-item-has-children > .menu-link-no-click:after {
    content: " ▼";
    font-size: 10px;
}

/* ----- Мега-меню ----- */
.mega-menu-item {
    position: static;
}

.mega-sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 2px solid #2a7d2a;
    z-index: 200;
    padding: 20px;
    margin: 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.mega-menu-item:hover .mega-sub-menu {
    display: block;
}

/* Сетка тем */
.mega-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 1100px;
    margin: 0 auto;
}

/* Одна тема */
.sub-menu-item {
    min-width: 0;
}

/* Ссылка на тему */
.sub-menu-link {
    display: block;
    padding: 8px 10px;
    color: #333333;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 2px solid #2a7d2a;
    margin-bottom: 8px;
}
.sub-menu-link:hover {
    color: #2a7d2a;
}

/* Подтемы */
.sub-sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sub-sub-menu li {
    display: block;
}
.sub-sub-menu a {
    display: block;
    padding: 4px 10px;
    color: #555555;
    font-size: 13px;
    text-decoration: none;
    line-height: 1.5;
    border-radius: 3px;
}
.sub-sub-menu a:hover {
    color: #2a7d2a;
    background-color: #f5f5f5;
}