﻿/* Navbar */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(219, 227, 238, 0.85);
}

.stratisk-navbar {
    min-height: 72px;
    padding: 0;
}

.stratisk-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink);
    font-weight: 850;
    letter-spacing: -0.04em;
    text-decoration: none;
}

    .stratisk-brand:hover {
        color: var(--blue);
    }

.brand-logo-frame {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(219, 227, 238, 0.95);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.brand-logo {
    max-width: 38px;
    max-height: 38px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.brand-wordmark {
    font-size: 1.15rem;
    line-height: 1;
    font-weight: 900;
}

.stratisk-navbar .nav-link {
    color: #334155;
    font-weight: 600;
    font-size: 0.95rem;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
}

    .stratisk-navbar .nav-link:hover {
        color: var(--blue);
    }

/* Identity partial links */

.stratisk-navbar .navbar-nav:last-child .nav-link,
.stratisk-navbar form .nav-link,
.stratisk-navbar a[href*="Login"],
.stratisk-navbar a[href*="Register"] {
    font-weight: 700;
}

/* Footer */

.site-footer {
    position: static;
    width: 100%;
    padding: 1.5rem 0;
    color: #64748b;
    background: #ffffff;
    border-top: 1px solid rgba(219, 227, 238, 0.95);
    line-height: 1.5;
}

    .site-footer a {
        color: #334155;
        text-decoration: none;
        font-weight: 700;
    }

        .site-footer a:hover {
            color: var(--blue);
        }

@media (max-width: 991px) {
    .stratisk-navbar {
        padding: 0.75rem 0;
    }
}
