nav {
    width: 100%;
    height: 30px;
    padding: 20px 0px;
    background-color: rgb(26, 26, 26);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 100;
    transition: all 0.2s ease;
}

.navContainer {
    width: 100%;
    max-width: 1250px;
    height: 100%;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logoNav {
    width: fit-content;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 25px;
    cursor: pointer;
    text-decoration: none;
}

.logoNav img {
    width: fit-content;
    height: 65%;
}

.linkNav {
    width: fit-content;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-right: 25px;
}

.linkNav a {
    font-size: 15px;
    color: white;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.menuBtn {
    display: none;
    color: white;
    font-size: 20px;
    margin-right: 15px;
    cursor: pointer;
    height: 100%;
    padding: 0px 10px;
}

.iconTutup {
    font-size: 25px;
}

.menuOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.322);
    /* bisa transparent */
    z-index: 140;
    cursor: pointer;

    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
    backdrop-filter: blur(4px);
}

/* overlay aktif */
.menuOverlay.activenav {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(4px);
}

.menu {
    width: 350px;
    height: 100vh;
    background-color: rgb(26, 26, 26);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 150;
    overflow-x: hidden;
    overflow-y: auto;
    text-transform: uppercase;
}

.atasMenu {
    width: 100%;
    height: 30px;
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.atasMenu img {
    width: fit-content;
    height: 65%;
    margin-left: 25px;
}

.linkMenu {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.lineMenu {
    width: 85%;
    height: 2px;
    background-color: white;
    margin: 15px 0px;
    border-radius: 20px;
}

.lineMenuHide {
    width: 85%;
    height: 2px;
    background-color: white;
    margin-bottom: 20px;
    border-radius: 20px;
}

.linkMenus {
    width: 85%;
    background-color: transparent;
    color: white;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
}

.linkMenus:hover {
    background-color: #61010c;
}

@keyframes fadeUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-50px);
        opacity: 0;
    }
}

@media (min-width: 1200px) {
    .menuBtn {
        display: none;
    }

    .menu {
        display: none;
    }

    .linkNav {
        display: flex;
    }
}

@media (max-width: 1200px) {
    .menuBtn {
        display: block;
    }

    .menu {
        display: block;
    }

    .linkNav {
        display: none;
    }
}

@media (max-width: 800px) {
    nav {
        height: 20px;
        padding: 15px 0px;
    }

    .atasMenu {
        height: 20px;
        padding: 15px 0px;
    }

    .logoNav img {
        height: 75%;
    }

    .menuBtn {
        font-size: 18px;
    }
}

@media (max-width: 500px) {
    .menu {
        width: 100%;
    }
}