/*
Theme Name: KB Theme
Theme URI: https://github.com/denischemeris/kb-wordpress
Author: Denis Chemeris
Description: Кастомная тема для базы знаний с защитой от копирования
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kb-theme
*/

/* ============================================================================
   БАЗОВЫЕ СТИЛИ
   ============================================================================ */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ============================================================================
   ЗАЩИЩЁННЫЙ КОНТЕНТ
   ============================================================================ */

.kb-protected-content {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.kb-protected-content h1,
.kb-protected-content h2,
.kb-protected-content h3 {
    color: #2c3e50;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.kb-protected-content h1:first-child {
    margin-top: 0;
}

/* ============================================================================
   ВОДЯНЫЕ ЗНАКИ
   ============================================================================ */

.kb-watermark {
    position: fixed;
    bottom: 10px;
    right: 10px;
    opacity: 0.15;
    font-size: 12px;
    color: #000;
    pointer-events: none;
    z-index: 9999;
    transform: rotate(-15deg);
    white-space: nowrap;
}

/* ============================================================================
   ВИДЕО
   ============================================================================ */

.kb-video-wrapper {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.kb-video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================================================
   ПРАКТИЧЕСКИЕ ЗАДАНИЯ
   ============================================================================ */

.kb-practice {
    border-left: 4px solid #3498db;
    background: #f8f9fa;
}

.kb-practice h4 {
    color: #2980b9;
    margin-bottom: 15px;
}

/* ============================================================================
   НАВИГАЦИЯ
   ============================================================================ */

.kb-breadcrumbs {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.kb-breadcrumbs a {
    color: #3498db;
    text-decoration: none;
}

.kb-breadcrumbs a:hover {
    text-decoration: underline;
}

/* ============================================================================
   СПИСОК СТАТЕЙ
   ============================================================================ */

.kb-article-list {
    list-style: none;
    padding: 0;
}

.kb-article-list li {
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.kb-article-list li:hover {
    background: #f8f9fa;
}

.kb-article-list a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
}

.kb-article-list a:hover {
    color: #3498db;
}

/* ============================================================================
   АДАПТИВНОСТЬ
   ============================================================================ */

@media (max-width: 768px) {
    .kb-protected-content {
        padding: 15px;
    }
    
    .kb-watermark {
        font-size: 10px;
        bottom: 5px;
        right: 5px;
    }
}

/* ============================================================================
   УТИЛИТЫ
   ============================================================================ */

.kb-blur {
    filter: blur(10px);
    transition: filter 0.1s ease;
}

.kb-hidden {
    display: none;
}
