/* =========================================================
   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:#ffffff;

    border-bottom:1px solid #e5e7eb;

    position:sticky;
    top:0;

    z-index:9999;

    box-shadow:
        0 2px 12px rgba(0,0,0,0.05);
}

/* =========================================================
   LOGO
========================================================= */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:36px;
    width:auto;
}

/* =========================================================
   NAVIGATION
========================================================= */

.nav{
    display:flex;
    align-items:center;
    gap:26px;
}

.nav a{
    position:relative;

    color:#374151;

    font-size:14px;
    font-weight:500;

    transition:.2s ease;
}

/* UNDERLINE */
.nav a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-5px;

    width:0%;
    height:2px;

    background:#2563eb;

    transition:.25s ease;
}

.nav a:hover{
    color:#2563eb;
}

.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:#f8fafc;

    border:1px solid #e5e7eb;

    padding:7px 12px;

    border-radius:10px;

    color:#374151;

    font-size:13px;
    font-weight:500;

    transition:.2s ease;
}

.signin-btn:hover{
    background:#eef2ff;
    border-color:#c7d2fe;
}

/* ICON */
.signin-icon{
    display:none !important;
}

.signin-icon svg{
    width:18px;
    height:18px;

    fill:#374151;
}

/* =========================================================
   POST JOB BUTTON
========================================================= */

.post-btn{
    background:
    linear-gradient(
        135deg,
        #ff2d55,
        #ff6a00
    );

    color:#ffffff;

    padding:9px 16px;

    border-radius:10px;

    font-size:13px;
    font-weight:600;

    box-shadow:
        0 4px 14px rgba(255,45,85,0.3);

    transition:.25s ease;
}

.post-btn:hover{
    transform:translateY(-2px);

    box-shadow:
        0 6px 18px rgba(255,45,85,0.4);
}

/* 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,
        #ff2d55,
        #ff6a00
    );

    cursor:pointer;

    user-select:none;

    flex-shrink:0;

    box-shadow:
        0 4px 14px rgba(255,45,85,0.25);

    transition:.2s ease;
}

.menu-toggle{

    color:#fff;

    font-size:20px;
    font-weight:700;

    line-height:1;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:900px){

    .header{
        padding:0 14px;
    }

    /* LOGO */
    .logo{
        display:flex;
        align-items:center;
    }

    .logo img{
        height:32px;
    }

    /* TOGGLE */
    .menu-toggle{
        display:flex;
    }

    /* MOBILE NAV */
    .nav{

    display:none;

    flex-direction:column;

    align-items:flex-start;

    gap:0;

    position:fixed;

    top:0;
    left:0;

    width:240px;
    height:100vh;

    background:#ffffff;

    padding:90px 22px 30px;

    border-right:1px solid #f1f5f9;

    box-shadow:
        4px 0 24px rgba(0,0,0,0.08);

    z-index:9999;
}
    
    
    

    /* OPEN */
    .nav.active{
        display:flex;
    }

    /* LINKS */
    .nav a{

        width:100%;

        padding:14px 0;

        border-bottom:1px solid #f1f5f9;

        font-size:15px;
    }

    .nav a::after{
        display:none;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:600px){

    /* SIGN IN ICON ONLY */
    .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 JOB + ONLY */
    .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;
}