/*==================================================
    SS ONE
    HEADER.CSS
==================================================*/

/*==============================
HEADER
==============================*/

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    transition:all .35s ease;

    border-bottom:1px solid rgba(0,0,0,.04);

}

header .container{

    height:85px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/*==============================
LOGO
==============================*/

.logo{

    display:flex;

    align-items:center;

    gap:6px;

    font-size:34px;

    font-weight:900;

    letter-spacing:-1px;

}

.logo-ss{

    color:var(--primary);

}

.logo-one{

    color:var(--secondary);

}

/*==============================
MENU
==============================*/

nav{

    display:flex;

    align-items:center;

    gap:38px;

}

nav a{

    position:relative;

    font-size:16px;

    font-weight:600;

    color:var(--primary);

    transition:.30s;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:3px;

    background:var(--secondary);

    border-radius:5px;

    transition:.30s;

}

nav a:hover{

    color:var(--secondary);

}

nav a:hover::after{

    width:100%;

}

/*==============================
LOGIN BUTTON
==============================*/

.giris{

    display:flex;

    align-items:center;

    justify-content:center;

    height:48px;

    padding:0 26px;

    border-radius:12px;

    background:var(--secondary);

    color:#fff;

    font-weight:700;

    transition:.30s;

}

.giris:hover{

    background:var(--secondary-hover);

    transform:translateY(-3px);

    box-shadow:0 12px 28px rgba(245,158,11,.30);

}

/*==============================
STICKY
==============================*/

header.sticky{

    height:auto;

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(18px);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

/*==============================
MOBILE BUTTON
==============================*/

.mobile-menu{

    display:none;

    width:46px;

    height:46px;

    border-radius:10px;

    background:#eef5ff;

    cursor:pointer;

    align-items:center;

    justify-content:center;

}

.mobile-menu span{

    display:block;

    width:22px;

    height:2px;

    background:var(--primary);

    position:relative;

}

.mobile-menu span::before,
.mobile-menu span::after{

    content:"";

    position:absolute;

    left:0;

    width:22px;

    height:2px;

    background:var(--primary);

}

.mobile-menu span::before{

    top:-7px;

}

.mobile-menu span::after{

    top:7px;

}

.site-logo{

    height:96px;
    width:auto;
    display:block;

}

/* ==========================================
   SECTION LOGO
========================================== */

.section-logo-wrap{

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:18px;

}

.section-logo{

    height:200px;
    width:auto;

    display:block;

}