/* =====================================
   NAVBAR
===================================== */

#header{
    position: absolute;
    top:18px;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all .35s ease;
}

#header .container{

    max-width:1380px;

    width:100%;

    margin:auto;

    padding-inline:clamp(16px,3vw,24px);

}

/* عند النزول بالصفحة */

#header.scrolled{
    position: fixed;
    top: 0;
    left: 0;
    background: #131B29;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    animation: slideDown .4s ease;
}

@keyframes slideDown{

    from{
        transform: translateY(-100%);
    }

    to{
        transform: translateY(0);
    }

}

/* ========================= */

.navbar{

    min-height:95px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/* ========================= */

.navbar-brand{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:0;

    margin:0;

}

/* ========================= */

.logo{

    height:clamp(46px,4vw,58px);

    width:auto;

    display:block;

    transition:.35s;

}

#header.scrolled .logo{

    height:clamp(44px,3.5vw,54px);
}

/* ========================= */

.navbar-collapse{

    justify-content:center;

}

/* ========================= */

.navbar-nav{

    display:flex;

    align-items:center;

    gap:38px;

}

/* ========================= */

.nav-link{

    color:#ffffff !important;

    font-size:clamp(.95rem,1vw,1.05rem);

    font-weight:600;

    padding:0 !important;

    transition:.35s;

}

.nav-link:hover,

.nav-link.active{

    color:#966A30 !important;

}

/* ========================= */

#header.scrolled .nav-link{

    color:#ffffff !important;

}

#header.scrolled .nav-link.active,

#header.scrolled .nav-link:hover{

    color:#966A30 !important;

}

/* ========================= */

.nav-right{

    display:flex;

    align-items:center;

    gap:22px;

}

/* ========================= */

.language-switch{

    display:flex;

    align-items:center;

    gap:10px;

}

.language-switch span{

    color:rgba(255,255,255,.35);

}

.language-switch a{

    color:#ffffff;

    font-size:clamp(.85rem,.9vw,.95rem);

    font-weight:600;

    transition:.3s;

}

.language-switch a:hover{

    color:#966A30;

}

#header.scrolled .language-switch a{

    color:#ffffff;

}

#header.scrolled .language-switch span{

    color:rgba(255,255,255,.35);

}

/* ========================= */

.btn-donate{

    min-width:135px;

    height:58px;

    padding:0 28px;

    border-radius:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

}
.btn-donate:hover{

    transform:translateY(-4px);

    background:#B88645;

    color:#ffffff;

    box-shadow:0 12px 25px rgba(150,106,48,.35);

}

/* ========================= */

.navbar-toggler{

    border:none;

    color:#ffffff;

    font-size:28px;

}

.navbar-toggler:focus{

    box-shadow:none;

}

#header.scrolled .navbar-toggler{

    color:#ffffff;

}
.language-switch a.active{

    color:#966A30;

}
/* =====================================
   RESPONSIVE
===================================== */


