.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 19000;
    opacity: 0;
    /* Opaklık başlangıcı */
    transition: opacity 0.3s ease;
    /* Geçiş efekti */
}

.menu-full {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #1c66ac;
    height: 100vh;
    width: fit-content;
    min-width: 40vw;
    max-width: 90vw;
    padding: clamp(1rem, 2vw, 3rem);
    z-index: 20000;
    overflow: auto;
    transform: translateX(100%);
    /* Başlangıç konumu sağda */
    transition: transform 0.3s ease;
    /* Geçiş efekti */
}

.menu-full .icon {
    width: 18px;
    height: 18px;
}

.menu-full>ul {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: end;
    color: white;
    gap: clamp(2rem, 2vw, 30rem);
    font-size: clamp(1.5rem, 2vw, 2rem);
    padding: 8rem 1rem;
    z-index: 21;
}

.menu-full>ul:not(:last-child) {
    border-bottom: 3px solid white;
    padding-bottom: 1rem;
}

.menu-full>ul>a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.menu-full .kapat-buton {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: clamp(2.5rem, 2vw, 3.5rem);
    font-weight: 700;
    z-index: 21;
    color: white;
}

.menu-full .logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 21;
    width: clamp(4rem, 4vw, 5rem);
    height: calc(clamp(4rem, 4vw, 5rem) / 1.39);
    width: auto;
}


#fullMenuButton{
    display: none;
    background-color: #1c66ac;
    padding: 3px 6px !important;
    border-radius: 1rem;

}

#fullMenuButton>i{
    color: white;
    font-size: clamp(1.5rem, 8vw, 2rem);
}


/* Responsive */

@media(max-width:620px) {
    header #fullMenuButton{
        display: block;
    }
}
