.header{
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: whitesmoke;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.logo{
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}
.navbar a{
    position: relative;

    font-size:18px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.navbar a::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: .3s;

}

.navbar a:hover::before{
    width: 100%;
}

/* Mobil Cihazlar için Navbar Ayarları */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        flex-direction: column; /* Menü öğelerini dikey hizala */
        align-items: center; /* Tüm menü öğelerini ortala */
        gap: 20px; /* Öğeler arasına eşit boşluk ekle */
    }

    .navbar a {
        font-size: 18px; /* Menü yazı boyutu */
        color: #000; /* Yazı rengi */
        text-decoration: none; /* Alt çizgi kaldır */
        text-align: center; /* Yazıları ortala */
        width: 100%; /* Her bağlantıyı aynı genişlikte yap */
    }

    .logo {
        font-size: 22px; /* Logo yazı boyutu */
        margin-bottom: 20px; /* Logo ile menü öğeleri arasına boşluk ekle */
        text-align: center; /* Logoyu ortala */
        width: 100%; /* Logoyu tam hizaya getir */
    }
}
