.navbar {
    display: flex;
    height: 10vh;
    background-color: #ffffff; /* Beyaz arka plan */
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-bottom: 0.156vw solid #e0e0e0; /* Alt kenarda ince, belirgin çerçeve */
    background: linear-gradient(145deg, #ffffff, #f9f9f9); /* Daha yumuşak gradient */
    box-shadow: inset 0 0.052vw 0.156vw rgba(255, 255, 255, 0.5), 
                0.104vw 0.104vw 0.416vw rgba(0, 0, 0, 0.15); /* Yumuşak iç ve dış gölgeler */
    transform: translateZ(0);
}

.navbar-text {
    font-size: 1.7vw;
    font-family: 'secondaryFont', sans-serif;
    text-decoration: none;
    color: var(--primary-color);
    margin: 0 1vw;

}

.nt-frame {
    display: flex;
    padding-top: 0.5vw;
}

.header {
    display: flex;
    height: 8vh;
}

.navbar-link {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1280px)  and (orientation: landscape) {
    .navbar-text {
        font-size: 1.7vw;
    }

    .nt-frame {
        padding-top: 0.5vw;
    }
}

@media screen and (max-width: 1280px)  and (orientation: portrait) {
    .navbar-text {
        font-size: 5vw;
    }

    .nt-frame {
        padding-top: 0.5vw;
    }
}

@media screen and (max-width: 768px)  and (orientation: landscape) {
    .navbar-text {
        font-size: 1.7vw;
    }

    .nt-frame {
        padding-top: 0.5vw;
    }
}

@media screen and (max-width: 768px)  and (orientation: portrait) {
    .navbar-text {
        font-size: 5vw;
    }

    .nt-frame {
        padding-top: 1.5vw;
    }
}