/* HEADER */

.site-header {
    background: #0f172a;
    color: #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

/* dacă vrei logo ca background, poți folosi:
.logo-circle {
    background: url('/assets/images/logo.png') no-repeat center center;
    background-size: cover;
}
*/

.brand-title {
    font-weight: 700;
    font-size: 18px;
}

.brand-subtitle {
    font-size: 12px;
    opacity: 0.8;
}

.main-nav a {
    color: #e5e7eb;
    text-decoration: none;
    margin-left: 16px;
    font-size: 14px;
    opacity: 0.9;
}

.main-nav a:hover {
    opacity: 1;
}
