/* SKT shared baseline */
html, body {
    font-family: 'Montserrat', sans-serif;
}

/* Brand colors (Tilda 2026: #173557) */
:root {
    --skt-brand: #173557;
    --skt-brand-alt: #0b4c9e;
    --skt-brand-red: #d6322b;
}

/* Solid navbar на внутренних страницах — тёмно-синяя шапка из тильды 2026,
 * белый логотип читается, ссылки в белом. */
.navbar-custom {
    background-color: var(--skt-brand) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}
.navbar-custom .nav-link,
.navbar-custom .navbar-brand,
.navbar-custom .dropdown-toggle {
    color: #ffffff !important;
}
.navbar-custom .nav-link:hover,
.navbar-custom .dropdown-toggle:hover {
    color: #ffd166 !important;
}
.navbar-custom .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}
.navbar-custom .navbar-toggler-icon {
    filter: invert(1);
}
.navbar-custom .dropdown-menu {
    background-color: #ffffff;
}
.navbar-custom .dropdown-menu .dropdown-item {
    color: var(--skt-brand) !important;
}

/* Единый размер логотипа в навбаре (бренд-размер из тильды) */
.skt-navbar-logo {
    height: auto;
}

/* --- Подвал сайта (единый для всех skt-*.css) --- */
.site-footer {
    background: linear-gradient(180deg, #050b14 0%, #000000 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-top: auto;
}

.footer-heading {
    color: #d6322b;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: #8b95a5;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-list {
    padding-left: 0;
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #8b95a5;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link i {
    font-size: 1rem;
    color: #8b95a5;
}

.footer-logo-box {
    background: linear-gradient(135deg, #0b4c9e 0%, #d6322b 100%);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-icon {
    background-color: #0b4c9e;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-right: 0.75rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
    background-color: #115bc0;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-bottom-text {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 0;
}

.footer-bottom-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.75rem;
    margin-left: 1.5rem;
    transition: color 0.2s ease;
}

.footer-bottom-link:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-bottom-link {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
}
