header {
    display: flex;
    gap: 1rem;
    width: 100vw;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff54;
    padding: calc(1rem + 0.5vw) calc(0.5rem + 2vw);
    /* Drowdwon İçin zindex*/
    z-index: 3 !important;

}

header>.logo {
    width: clamp(100px, calc(100px + 5vw), 175px);
    max-height: clamp(30px, calc(30px + 5vw), 60px);
    object-fit: contain;
    object-position: left;
    cursor: pointer;
}

header>nav {
    display: flex;
    gap: calc(0.75rem + 1vw);
    align-items: center;

}

header>nav :is(a,button) {
    font-size: clamp(1.5rem, 1.75vw, 1.75rem);
    font-weight: 600;
    cursor: pointer;
    background:none;
}

header>.ulasin {
    background-color: #1c66ac;
    padding: calc(0.5rem + 0.25vw) calc(0.75rem + 0.30vw);
    font-size: clamp(1.5rem, 1.75vw, 1.75rem);
    transition: background-color 0.6s ease-in-out;
    /* Yumuşak geçiş */
}

header>.ulasin:hover {
    background-color: #96cc17;
}


/* Responsive */
@media (max-width:740px) {
    header>nav {
        display: none;
    }


    header>.ulasin {
        margin-left: auto;
    }
}

@media (max-width:320px) {
    header>.ulasin {
        display: none;
    }
}


/* Dropdown Nav */
.dropdown {
    position: relative;
    display: flex;
    flex-direction: column;

}

.dropdown>ul {
    visibility: hidden;
    position: absolute;
    top: 100%;
    background-color: #1c66ac;
    padding: 10px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: start;


    width: max-content;
    /*Efekt İçin*/
    opacity: 0;
    /* Öğenin başlangıçta görünmez olması için */
    transform: translateY(-10px);
    /* Menü yukarıda başlasın */
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.dropdown>ul>li {
text-align: start;

}

.dropdown>ul>li a {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem) !important;
}

.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

/* Full Menü */
.menu-full,
.menu-overlay {
    position: fixed;
    top: 0;
    height: 100vh
}

.menu-overlay {
    display: none;
    left: 0;
    width: 100vw;
    background-color: rgba(0, 0, 0, .5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 19000;
    opacity: 0;
    transition: opacity .3s
}

#fullMenuButton,
.menu-full {
    display: none;
    background-color: #1c66ac
}

.menu-full {
    right: 0;
    width: fit-content;
    min-width: 50vw;
    max-width: 90vw;
    padding: clamp(1rem, 2vw, 3rem);
    z-index: 20000;
    overflow: auto;
    transform: translateX(100%);
    transition: transform .3s
}

.menu-full .icon {
    width: 18px;
    height: 18px
}

.menu-full>ul {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: end;
    color: #fff;
    gap: clamp(2rem, 2vw, 30rem);
    font-size: clamp(1.75rem, 2vw, 2.25rem);
    padding: 6rem 1rem;
    z-index: 21
}

.menu-full>ul:not(:last-child) {
    border-bottom: 1px solid #fff;
    padding-bottom: 1rem
}


.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: #fff
}

.menu-full .logo {
    /* position: absolute;
    top: 1rem;
    left: 1rem; */
    z-index: 21;
    height: auto;
    width: 35vw;
}

.menu-full .sosyal {
    display: flex;
    gap: 2rem;
    justify-content: end;
    margin-top: 2rem;
}

.menu-full .sosyal i {
    font-size: clamp(2.25rem,3vw,2.75rem);
}

#fullMenuButton {
    padding: 2px 6px
}

#fullMenuButton>i {
    font-size: clamp(1.5rem, 8vw, 2rem)
}

@media(max-width:620px) {
    header #fullMenuButton {
        display: block
    }
}




/* Sticky Buttons - Start*/
#contact-buttons {
    position: fixed;
    bottom: calc(10px + 1vw);
    right: calc(5px + 1vw);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(1rem + 0.25vw);
}

#contact-buttons a {
    width: calc(50px + 0.60vw);
    height: calc(50px + 0.60vw);
    background-color: #1c66ac;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);

    display: flex;
    align-items: center;
    justify-content: center;
    /* Animasyon ekleniyor */

}

#contact-buttons a:nth-of-type(1) {
    animation: shake 2s infinite ease-in-out;
}

#contact-buttons a:nth-of-type(2) {
    animation: shake 1.5s infinite ease-in;
}

#contact-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 80px 50px rgba(0, 0, 0, 0.2);
}

#contact-buttons i {
    font-size: calc(2.75rem + 0.25vw);
}

/* Sticky Buttons - End*/


/* Hafif ve yavaş titreşim animasyonu */
@keyframes shake {
    0% {
        transform: translateX(0) translateY(0);
    }

    20% {
        transform: translateX(-1px) translateY(0);
    }

    40% {
        transform: translateX(1px) translateY(0);
    }

    60% {
        transform: translateX(0) translateY(1px);
    }

    80% {
        transform: translateX(0) translateY(-1px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}