/**
 * FILE: /home2/albassa2/public_html/albassami_v2/website/includes/navbar/css/navbar_css.css
 * VERSION: v3.1-global-navbar-compact-clean
 */

.abv-navbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:0 clamp(12px, 3vw, 34px);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    transition:height .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
}

.abv-navbar.is-scrolled{
    height:58px;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
}

body[data-theme="light"] .abv-navbar{
    background:rgba(255,255,255,.92);
    border-bottom:1px solid rgba(0,0,0,.08);
}

body[data-theme="dark"] .abv-navbar{
    background:rgba(7,7,7,.88);
    border-bottom:1px solid rgba(255,255,255,.08);
}

/* Brand */
.abv-nav-logo{
    display:flex;
    align-items:center;
    gap:10px;
    flex:0 0 auto;
    min-width:0;
}

.abv-nav-logo img{
    width:auto;
    height:38px;
    object-fit:contain;
    flex:0 0 auto;
}

.abv-nav-logo-text{
    display:flex;
    flex-direction:column;
    gap:2px;
    line-height:1.05;
    min-width:0;
}

.abv-nav-logo-text span:first-child{
    font-size:14px;
    font-weight:800;
    white-space:nowrap;
}

.abv-nav-logo-text span:last-child{
    font-size:10px;
    font-weight:700;
    letter-spacing:.04em;
    white-space:nowrap;
}

body[data-theme="light"] .abv-nav-logo-text span:first-child{
    color:#171717;
}

body[data-theme="light"] .abv-nav-logo-text span:last-child{
    color:#B1842F;
}

body[data-theme="dark"] .abv-nav-logo-text span:first-child{
    color:#F3F3F3;
}

body[data-theme="dark"] .abv-nav-logo-text span:last-child{
    color:#C9963A;
}

html[dir="rtl"] .abv-nav-logo-text{
    text-align:right;
}

html[dir="ltr"] .abv-nav-logo-text{
    text-align:left;
}

/* Main links */
.abv-nav-links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:4px;
    flex:1 1 auto;
    min-width:0;
}

.abv-nav-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 12px;
    border-radius:10px;
    font-size:13px;
    font-weight:700;
    transition:background .2s ease, color .2s ease, transform .2s ease;
    white-space:nowrap;
}

body[data-theme="light"] .abv-nav-link{
    color:rgba(23,23,23,.66);
}

body[data-theme="dark"] .abv-nav-link{
    color:rgba(243,243,243,.66);
}

.abv-nav-link:hover,
.abv-nav-link.active{
    color:var(--abv-wine) !important;
    background:rgba(198,13,24,.06);
}

/* Dropdown */
.abv-nav-drop{
    position:relative;
}

.abv-nav-drop-menu{
    position:absolute;
    top:100%;
    min-width:220px;
    padding:8px;
    border-radius:14px;
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:opacity .22s ease, visibility .22s ease, transform .22s ease;
    box-shadow:0 18px 34px rgba(0,0,0,.10);
    z-index:30;
}

html[dir="rtl"] .abv-nav-drop-menu{
    right:0;
}

html[dir="ltr"] .abv-nav-drop-menu{
    left:0;
}

body[data-theme="light"] .abv-nav-drop-menu{
    background:#FFFFFF;
    border:1px solid rgba(0,0,0,.08);
}

body[data-theme="dark"] .abv-nav-drop-menu{
    background:#121212;
    border:1px solid rgba(255,255,255,.08);
}

.abv-nav-drop:hover .abv-nav-drop-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.abv-nav-drop-item{
    display:flex;
    align-items:center;
    gap:10px;
    min-height:40px;
    padding:0 12px;
    border-radius:10px;
    font-size:13px;
    font-weight:700;
    transition:background .2s ease, color .2s ease;
}

body[data-theme="light"] .abv-nav-drop-item{
    color:rgba(23,23,23,.66);
}

body[data-theme="dark"] .abv-nav-drop-item{
    color:rgba(243,243,243,.68);
}

.abv-nav-drop-item:hover{
    color:var(--abv-wine) !important;
    background:rgba(198,13,24,.06);
}

/* Actions */
.abv-nav-actions{
    display:flex;
    align-items:center;
    gap:8px;
    flex:0 0 auto;
}

.abv-nav-lang{
    display:flex;
    align-items:center;
    gap:2px;
    padding:2px;
    border-radius:10px;
}

body[data-theme="light"] .abv-nav-lang{
    background:rgba(0,0,0,.03);
    border:1px solid rgba(0,0,0,.08);
}

body[data-theme="dark"] .abv-nav-lang{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
}

.abv-nav-lang a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:30px;
    padding:0 10px;
    border-radius:8px;
    font-size:11px;
    font-weight:800;
    transition:background .2s ease, color .2s ease;
}

body[data-theme="light"] .abv-nav-lang a{
    color:rgba(23,23,23,.56);
}

body[data-theme="dark"] .abv-nav-lang a{
    color:rgba(243,243,243,.56);
}

.abv-nav-lang a.active{
    background:rgba(198,13,24,.10);
    color:var(--abv-wine) !important;
}

.abv-theme-toggle{
    width:36px;
    height:36px;
    min-width:36px;
    min-height:36px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    border:none;
    transition:transform .2s ease, background .2s ease;
}

body[data-theme="light"] .abv-theme-toggle{
    background:rgba(0,0,0,.03);
    border:1px solid rgba(0,0,0,.08);
    color:#171717;
}

body[data-theme="dark"] .abv-theme-toggle{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    color:#F3F3F3;
}

.abv-theme-toggle:hover{
    transform:translateY(-1px);
}

.abv-nav-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 16px;
    border-radius:10px;
    font-size:12px;
    font-weight:800;
    color:#FFFFFF !important;
    background:linear-gradient(135deg,var(--abv-wine),var(--abv-wine-dark));
    box-shadow:0 10px 22px rgba(198,13,24,.18);
    white-space:nowrap;
    transition:transform .22s ease, box-shadow .22s ease;
}

.abv-nav-cta:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 28px rgba(198,13,24,.26);
}

.abv-nav-burger{
    display:none;
    width:36px;
    height:36px;
    min-width:36px;
    min-height:36px;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    cursor:pointer;
    font-size:18px;
    border:none;
}

body[data-theme="light"] .abv-nav-burger{
    background:rgba(0,0,0,.03);
    border:1px solid rgba(0,0,0,.08);
    color:#171717;
}

body[data-theme="dark"] .abv-nav-burger{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    color:#F3F3F3;
}

/* Mobile */
.abv-mobile-menu{
    position:fixed;
    inset:0;
    z-index:999;
    padding:78px 20px 20px;
    display:none;
    flex-direction:column;
    gap:6px;
    overflow-y:auto;
}

body[data-theme="light"] .abv-mobile-menu{
    background:#FFFFFF;
}

body[data-theme="dark"] .abv-mobile-menu{
    background:#070707;
}

.abv-mobile-menu.open{
    display:flex;
}

.abv-mobile-menu .abv-nav-link{
    justify-content:flex-start;
    min-height:48px;
    padding:0 14px;
    border-bottom:1px solid rgba(0,0,0,.06);
    border-radius:0;
    font-size:15px;
}

body[data-theme="dark"] .abv-mobile-menu .abv-nav-link{
    border-bottom:1px solid rgba(255,255,255,.08);
}

.abv-mobile-close{
    position:absolute;
    top:16px;
    left:16px;
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    cursor:pointer;
    font-size:20px;
    border:none;
}

body[data-theme="light"] .abv-mobile-close{
    background:rgba(0,0,0,.03);
    border:1px solid rgba(0,0,0,.08);
    color:#171717;
}

body[data-theme="dark"] .abv-mobile-close{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    color:#F3F3F3;
}

.abv-mobile-extra{
    display:flex;
    gap:8px;
    margin-top:12px;
}

@media (max-width:980px){
    .abv-nav-links,
    .abv-nav-actions .abv-nav-lang,
    .abv-nav-actions .abv-nav-cta{
        display:none;
    }

    .abv-nav-burger{
        display:inline-flex;
    }
}

@media (max-width:700px){
    .abv-navbar{
        padding:0 12px;
    }

    .abv-nav-logo img{
        height:34px;
    }

    .abv-nav-logo-text span:first-child{
        font-size:13px;
    }

    .abv-nav-logo-text span:last-child{
        font-size:9px;
    }
}

/* ALBASSAMI logo English text red */
.abv-nav-logo-text span:last-child {
    color: #d71920 !important;
}

html[lang="en"] .abv-nav-logo-text span:first-child {
    color: #d71920 !important;
}