@font-face {
    font-family: 'Chomsky';
    src: url('/fonts/chomsky.woff2') format('woff2'), url('/fonts/chomsky.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


.bkft-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 10px 50px;
    border-radius: 6px 6px 0 0;
    color: white;
    position: relative;
    
}

    .bkft-header::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50px; 
        right: 50px;
        height: 3px; 
        background: #ffffff;
    }

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .header-left img {
        width: 70px;
        height: auto;
        filter: brightness(0) invert(1);
    }

.logo {
    width: 30px;
    height: auto;
}


.logo-title {
    font-family: 'Chomsky', serif;
    font-size: 70px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    padding-bottom: 10px;

    text-shadow: 2px 2px 0px #ff6600, 
    3px 3px 0px #ffd700, 
    4px 4px 0px #00e5d4; 
   
}

.header-right ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-right li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    font-family: 'Chomsky', serif;
    font-size: 14px;
    transition: transform 0.2s ease, color 0.3s;
}

    .header-right li a:hover {
        transform: scale(1.1);
        color: #FFB526;
    }

.header-right img {
    width: 35px;
    height: auto;
    margin-bottom: 5px;
}


/*  Mobil uyum (576px ve altı ekranlar için küçültülmüş boyut) */
@media (max-width: 576px) {
    .bkft-header {
        flex-direction: row;
        padding: 10px 20px;
        text-align: center;
    }

        .bkft-header::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 23px;
            right: 23px;
            height: 3px;
            background: #ffffff;
        }

    .logo-title {
        font-size: 40px; /* logo yazısı küçültülsün */
    }

    .header-left {
        gap: 5px; /* logo ve başlık arasındaki boşluğu azalt */
    }

        .header-left img.logo {
            width: 45px; /* logo ikon küçültülsün */
            height: auto;
        }


    .header-right ul {
        gap: 10px; /* butonlar birbirine daha yakın */
        flex-wrap: wrap; /* ikonlar yan yana sığmazsa alta geçebilir */
        justify-content: center;
    }

    .header-right img {
        width: 20px; /* ikon daha küçük */
        margin-bottom: 3px;
    }

    .header-right li a {
        font-size: 10px; /* yazı küçültülsün */
    }
}


