/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

button{
    border:none;
    outline:none;
    background:none;
    font-family:inherit;
}

/* =========================================================
   HEADER
========================================================= */

.header{
    display:flex;
    align-items:center;
    justify-content:space-between;

    height:78px;

    padding:0 32px;

    background:#111111;

    border-bottom:1px solid #2d2d2d;

    position:sticky;
    top:0;

    z-index:9999;

    backdrop-filter:blur(12px);

    box-shadow:
    0 8px 30px rgba(0,0,0,.35);
}

/* =========================================================
   LOGO
========================================================= */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:36px;
    width:auto;

    filter:brightness(1.08);
}

/* =========================================================
   NAVIGATION
========================================================= */

.nav{
    display:flex;
    align-items:center;
    gap:26px;
}

.nav a{
    position:relative;

    color:#e5e7eb;

    font-size:14px;
    font-weight:500;

    transition:.25s ease;
}

/* UNDERLINE */
.nav a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-5px;

    width:0%;
    height:2px;

    background:#8b5cf6;

    transition:.25s ease;
}

.nav a:hover{
    color:#8b5cf6;
}

.nav a:hover::after{
    width:100%;
}

/* =========================================================
   RIGHT SIDE
========================================================= */

.header-right{
    display:flex;
    align-items:center;
    gap:10px;
}

/* =========================================================
   SIGN IN
========================================================= */

.signin-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;

    background:#1f1f1f;

    border:1px solid #2d2d2d;

    padding:7px 12px;

    border-radius:10px;

    color:#ffffff;

    font-size:13px;
    font-weight:500;

    transition:.25s ease;
}

.signin-btn:hover{
    background:#262626;
    border-color:#8b5cf6;
}

/* ICON */
.signin-icon{
    display:none !important;
}

.signin-icon svg{
    width:18px;
    height:18px;

    fill:#ffffff;
}

/* =========================================================
   POST JOB BUTTON
========================================================= */

.post-btn{
    background:
    linear-gradient(
        135deg,
        #8b5cf6,
        #6366f1
    );

    color:#ffffff;

    padding:9px 16px;

    border-radius:10px;

    font-size:13px;
    font-weight:600;

    box-shadow:
    0 8px 25px rgba(139,92,246,.35);

    transition:.25s ease;
}

.post-btn:hover{
    transform:translateY(-2px);

    box-shadow:
    0 12px 30px rgba(139,92,246,.45);
}

/* DESKTOP ICON HIDE */
.post-btn .post-icon{
    display:none !important;
}

/* =========================================================
   MENU TOGGLE
========================================================= */

.menu-toggle{

    display:none;

    align-items:center;
    justify-content:center;

    margin-left:10px;

    width:38px;
    height:38px;

    border-radius:10px;

    background:
    linear-gradient(
        135deg,
        #8b5cf6,
        #6366f1
    );

    cursor:pointer;

    user-select:none;

    flex-shrink:0;

    box-shadow:
    0 8px 25px rgba(139,92,246,.35);

    transition:.25s ease;

    color:#fff;

    font-size:20px;
    font-weight:700;

    line-height:1;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:900px){

    .header{
        padding:0 14px;
    }

    .logo{
        display:flex;
        align-items:center;
    }

    .logo img{
        height:32px;
    }

    .menu-toggle{
        display:flex;
    }

    .nav{

        display:none;

        flex-direction:column;

        align-items:flex-start;

        gap:0;

        position:fixed;

        top:0;
        left:0;

        width:260px;
        height:100vh;

        background:#111111;

        padding:90px 22px 30px;

        border-right:1px solid #2d2d2d;

        box-shadow:
        4px 0 24px rgba(0,0,0,.45);

        z-index:9999;
    }

    .nav.active{
        display:flex;
    }

    .nav a{

        width:100%;

        padding:14px 0;

        border-bottom:1px solid #2d2d2d;

        font-size:15px;

        color:#e5e7eb;
    }

    .nav a::after{
        display:none;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:600px){

    .signin-text{
        display:none !important;
    }

    .signin-icon{
        display:flex !important;

        align-items:center;
        justify-content:center;
    }

    .signin-btn{
        width:36px;
        height:36px;

        padding:0;

        border-radius:8px;
    }

    .post-text{
        display:none !important;
    }

    .post-btn .post-icon{
        display:inline-block !important;

        font-size:18px;
        font-weight:700;
    }

    .post-btn{
        padding:8px 12px;

        border-radius:8px;
    }
}

.menu-toggle{
    position:relative;
    z-index:999999 !important;
    color:#fff !important;
}

.logo a{

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    padding:4px 12px;

    border-radius:14px;

    box-shadow:
    0 2px 10px rgba(0,0,0,.15);

    transition:.25s ease;
}

.logo a:hover{

    transform:translateY(-1px);

    box-shadow:
    0 6px 18px rgba(139,92,246,.20);
}

.logo img{

    display:block;

    height:28px;

    width:auto;

    max-width:none;
}

@media(max-width:768px){

    .logo a{

        padding:4px 8px;

        border-radius:10px;
    }

    .logo img{

        height:24px;
    }

}