.header-wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    padding: 30px 0 20px 0;
    z-index: 100;
}

.header-fixed {
    background: rgb(0, 0, 0, 0.8);
    background: var(--bg);
    background: linear-gradient(70deg, rgb(10, 10, 10), rgb(30, 30, 60));
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0px 0px 40px rgb(0, 0, 0, 0.6);
}

.header {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.header-logo img {
    width: 40px;
}

.header-logo h1 {
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
}

.header-menu-item {
    font-size: 15px;
    color: white;
    font-weight: 600;
    padding: 3px 3px;
    border-bottom: 2px solid transparent;
    border-radius: 4px;
}

.header-menu-item:hover {
    color: var(--tint);
    border-bottom: 2px solid var(--tint);
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    position: relative;
}

.header-action-link {
    font-size: 17px;
    color: white;
    font-weight: bold;
}

.header-action-link:hover {
    color: var(--tint);
}

.header-action-btn {
    font-size: 15px;
    font-weight: 600;
    color: var(--bg-tint);
    background: var(--tint);
    padding: 10px 20px;
    border-radius: 50px;
}

.header-action-btn:hover {
    opacity: 0.8;
}

.header-action-icon {
    font-size: 25px;
    color: white;
    border-left: 1px solid var(--tint);
    border-right: 1px solid var(--tint);
    padding: 0 15px;
    cursor: pointer;
}

.header-action-icon:hover {
    color: var(--tint);
}

.header-social-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    top: 115%;
    background: black;
    padding: 20px;
    border-radius: 20px;
    width: 200px;
    animation: showsUp 0.3s ease-in-out;
    box-shadow: 0px 0px 50px black;
    display: none;
}

@keyframes showsUp {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-social-menu h3 {
    font-size: 15px;
    color: rgb(150, 150, 150);
}

.header-social-menu div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 2px;
}

.header-social-item {
    font-size: 16px;
    color: white;
    width: 100%;
    text-align: center;
    padding: 5px;
    border-radius: 10px;
}

.header-social-item:hover {
    background: rgb(60, 60, 60);
    color: var(--tint);
}

.header-mobile-action {
    font-size: 26px;
    color: white;
    cursor: pointer;
    display: none;
}

@media (max-width: 1920px) {
    .header-mobile-action {
        display: block;
    }

    .header-action-link {
        display: none;
    }

    .header-menu {
        display: none;
    }

    .header-menu-open {
        display: flex;
        position: fixed;
        flex-direction: column;
        right: 0;
        background: black;
        top: 0;
        padding: 40px 100px 30px 20px;
        z-index: 50;
        height: 100svh;
        align-items: flex-start;
        gap: 20px;
        animation: drawIn 0.3s ease-in-out;
        box-shadow: 0px 0px 50px black;
    }

    @keyframes drawIn {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .header-menu-item {
        font-size: 15px;
        padding: 5px 0;
    }
}

@media (max-width: 650px) {
    .header-wrapper {
        padding: 20px 0;
    }

    .header-fixed {
        padding: 10px 0;
    }

    .header {
        width: 95%;
    }

    .header-logo h1 {
        font-size: 20px;
    }

    .header-logo img {
        width: 40px;
    }

    .header-right {
        gap: 15px;
    }

    .header-action-btn {
        font-size: 12px;
        display: none;
    }
}
