@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');



/* 1. Sıfırlama */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



/* 2. Global Body Stilleri */

html, body {

    width: 100%;

    /* height: 100%; kaldırılabilir. */

}



body {

    font-family: 'Poppins', sans-serif;

    /* Arka plan stilleri */

    background-image: url("İmages/Artboard\ 1@70x.webp");

    background-size: cover;          

    background-repeat: no-repeat;    

    background-attachment: fixed;  

    background-position: center;
    min-height: 100vh;

}



/* 3. Container Genişliği - Mobil Dışında %80 */

/* Mobil ayarını kaldırdığımız için sadece bu genel kural kalır */

.container {

    width: 80% !important;

    margin: auto !important;

}



/* Navigasyon Link Stilleri */

.navbar-nav .nav-link {

    color: black !important;

    text-decoration: none;

    display: flex;

    justify-content: space-between;

    align-items: center;

    transition: all 1s ease;

    padding: 10px 0;

}



.navbar-nav .nav-link:hover {

    background-color: black;

    color: white !important;

    border: 1px solid black;

    padding: 10px 10px !important;

    border-radius: 56px;

}



/* Header Stili (Bootstrap bg-white korunsun diye background-color transparent kaldırıldı) */

header {

    border-bottom: 2px solid black !important;

}





/* İletişim Butonu Hover Efekti */

.menu-button:hover,

.btn-dark:hover {

    background-color: white !important;

    color: black !important;

}



/* Logo Stili */

.logo-img {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    transition: all 0.3s ease;

}



/* Responsive Logolar */

@media (max-width: 992px) {

    .logo-img {

        width: 55px;

        height: 55px;

    }

}

@media (max-width: 576px) {

    .logo-img {

        width: 45px;

        height: 45px;

    }

}



/* SECTION Stilleri */

.content {

    padding-top: 50px;

    padding-bottom: 50px;

}



.content .links a:hover {

    background-color: black !important;

    color: white !important;

}



/* Mobil Responsive Ayarlar */

@media (max-width: 991.98px) {

    .navbar-collapse {

        background-color: rgba(255, 255, 255, 0.9);

        padding: 10px;

        position: absolute;

        width: 100%;

        top: 82px;

        left: 0;

        z-index: 10;

        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);

    }

    .navbar-nav {

        flex-direction: column;

        row-gap: 10px;

    }

    .btn-dark {

        margin-top: 10px;

        width: 100%;

    }

}



@media(max-width:576px){

    .container{

        width: 100% !important; /* Mobil için %100'e ayarlandı */

        padding-left: 12px !important;

        padding-right: 12px !important;

    }

    .content .links{

        flex-direction: column;

        align-items: center;

        row-gap: 1rem;

    }

    .content .links a{

        width: 90% !important;

    }

    .content h1{

        font-size: 40px;

    }

}



.nav-tabs {

    display: flex;

    flex-wrap: nowrap !important;

    overflow-x: auto;

    overflow-y: hidden;

    white-space: nowrap;

    scrollbar-width: thin;

}



.nav-tabs .nav-link {

    flex: 0 0 auto;

}





@media (max-width: 992px) {
    body {
        background-attachment: scroll !important;
        background-position: top center !important;
        /* Mobilde resim çok büyükse bazen sığmaz, gerekirse cover yerine contain denenebilir ama cover genellikle iyidir */
    }
}