/* 
   3omar.hs Unified Platform Brand Logo & Navigation Styles
   Consistent position, size (46x46px), colors, and typography across all portals.
*/
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #f8fafc;
    transition: transform 0.2s ease;
}

.brand:hover {
    transform: translateY(-1px);
}

.brand-logo {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.25);
    flex-shrink: 0;
}

.brand-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: start;
}

.brand-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 40%, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-sub {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Store logo image inside brand if provided */
.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Universal language selector styling */
.lang-selector, .site-lang-select {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

.lang-selector:hover, .site-lang-select:hover {
    border-color: #38bdf8;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}
