/* Фоновое изображение для шапки страницы магнитометров */
.site-header {
    background-image: url('../../Img/Magnetometers/Header/Header_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Дополнительные стили для шапки магнитометров */
.site-header .header-inner {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

/* Стили для заголовка страницы */
.page-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Стили для хлебных крошек */
.breadcrumbs {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: white;
    text-decoration: underline;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .site-header {
        background-position: center top;
    }
    
    .site-header .header-inner {
        background: rgba(0, 0, 0, 0.5);
    }
}