/*
Theme Name: Gov Press (Администрация)
Theme URI: https://example.com
Author: Ваше Имя
Author URI: https://example.com
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: gov-press
Tags: bootstrap, government, accessibility
*/

/* Здесь будут ваши кастомные стили. 
   Основная сетка работает на Bootstrap 5 (подключается отдельно).
   Ниже минимальные правки для старта.
*/

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Стили для шапки */
.top-bar {
    font-size: 0.9rem;
}

.site-branding h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: #2c3e50;
}

.site-branding p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #7f8c8d;
}

/* Карточки быстрого доступа на главной */
.quick-action-card {
    transition: transform 0.2s;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.quick-action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Таблица документов */
.doc-table th {
    background-color: #e9ecef;
}

/* Медиа-галерея */
.gallery-cover {
    height: 200px;
    object-fit: cover;
    width: 100%;
}