/* Fontlar */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap');
@font-face {
    font-family: 'Fontum';
    src: url('/Fonts/Abel-Regular.ttf') format('truetype');
}

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* Gezinme Çubuğu */
nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 150px;
}

/* Ana Başlık */
.destek-başlik {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(../img/UygulamalarımızArkaPlan.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    overflow-x: hidden !important;
}

.destek-başlik h1 {
    margin-top: 100px;
    font-size: 36px;
    font-weight: 600;
}

/* Sayfa Gezinme Menüsü */
.sayfalar ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.sayfalar ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
}

.sayfalar ul li::after {
    content: "";
    width: 0;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: width 0.5s;
}

.sayfalar ul li:hover::after {
    width: 100%;
}

.sayfalar {
    flex: 1;
    text-align: right;
}

/* Footer */
.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.icons .fa {
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
/* Logo Stili */
.logo {
    max-width: 100%;
    height: auto;
    position: absolute;
    top: 4%;
    left: 11%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.logo {
    width: 200px;
    margin-top: 40px;
}


/* Uygulama Kutuları */
/* Diğer CSS kuralları burada */

/* Uygulama Kutuları */
.kutu2 {
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
}

.yatay {
    margin-top: 1%;
    display: flex;
    justify-content: center;
}

.kutu-cuk2 {
    flex-basis: calc(33.33% - 20px);
    border-radius: 10px;
    margin-bottom: 20px;
    margin-left: 15px;
    margin-right: 5px;
    position: relative;
    overflow: hidden;
}

.kutu-cuk2 img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

/* Yeni eklenen stil: Kutucuk başlığı */
.kutu-cuk2 .makine-baslik {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 0;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.layer {
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer:hover {
    background: rgba(226, 0, 0, 0.7);
}

.layer h3 {
    width: 100%;
    font-weight: 200;
    color: #fff;
    font-size: 17px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
    bottom: 15%;
}

.layer:hover h3 {
    bottom: 4%;
    opacity: 1;
}

/* Diğer CSS kuralları burada */

.layer h2 {
    width: 100%;
    font-weight: 600;
    color: #fff;
    font-size: 50px;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
    bottom: 20%;
}
/* Hamburger Menü Düğmesi */
/* Diğer stil kuralları buraya gelebilir */

/* Hamburger Menü Düğmesi */
.hamburger-menu {
    display: none; /* Başlangıçta gizli tutulur */
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 6px 0;
    transition: 0.4s;
}

.hamburger-icon span {
    width: 100%;
    height: 3px;
    background-color: #f44336;
}

/* Açılır Menü (Modal) */
.modal {
    display: none; /* Başlangıçta gizli tutulur */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9998;
}

.modal ul {
    list-style: none;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.modal ul li {
    margin: 20px 0;
}

.modal ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}


.icons .fa {
    color: #f44336;
    margin: 0 17px;
    cursor: pointer;
    padding: 4px 0;
}
footer {
    z-index: 999;
}
/* Medya Sorgusu: Mobil Cihazlar */
@media (max-width: 768px) {
    .hamburger-menu {
        top: 5%;
    }
    .hamburger-menu {
        display: block; /* Mobil cihazlarda görünür olur */
    }

    /* Hamburger Menü İkonu (Açık Durum) */
    .hamburger-menu.open .hamburger-icon:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger-menu.open .hamburger-icon:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.open .hamburger-icon:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .modal {
        display: block; /* Mobil cihazlarda görünür olur */
    }
}

/* Media Queries */
@media (max-width: 1000px) {
    .destek-başlik h1 {
        margin-top: 200px;
        font-size: 36px;
        font-weight: 600;
    }

}

@media (max-width: 750px) {
.logo {
    max-width: 100%;
    height: auto;
    position: absolute;
    top: 4%;
    left: 20%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.logo {
    width: 200px;
    margin-top: 40px;
}
}
@media (max-width: 1000px) {
    .yatay {
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center; /* Kutuları dikey ve yatay olarak ortala */
    }
    
    .kutu-cuk2 {
        flex-basis: calc(100% - 20px); /* Kutuların genişliğini sayfa genişliğine eşit yapın */
        margin-bottom: 20px;
        margin-left: 0; /* Kutuların sol boşluğunu kaldırın */
        margin-right: 0; /* Kutuların sağ boşluğunu kaldırın */
    }
    .layer h3 {
        font-size: 15px; /* Küçülen metin boyutu */
        bottom: 10%;
    }
    .layer:hover h3 {
        bottom: 10%;

    }

}
@media (max-width: 1000px) {

    .sayfalar ul li {
        display: block;
    }

    .sayfalar {
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fas {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .sayfalar ul {
        padding: 30px;
    }
}

@media screen and (max-width: 320px) {
    .yatay {
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center; /* Kutuları dikey ve yatay olarak ortala */
    }
    
    .kutu-cuk2 {
        flex-basis: calc(100% - 20px); /* Kutuların genişliğini sayfa genişliğine eşit yapın */
        margin-bottom: 20px;
        margin-left: 0; /* Kutuların sol boşluğunu kaldırın */
        margin-right: 0; /* Kutuların sağ boşluğunu kaldırın */

    }

    .layer h3 {
        font-size: 10px; /* Küçülen metin boyutu */
        bottom: 6%;
    }
    .layer:hover h3 {
        bottom: 6%;

    }

}


@media screen and (min-width: 321px) and (max-width: 480px) {
    .yatay {
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center; /* Kutuları dikey ve yatay olarak ortala */
    }
    
    .kutu-cuk2 {
        flex-basis: calc(100% - 20px); /* Kutuların genişliğini sayfa genişliğine eşit yapın */
        margin-bottom: 20px;
        margin-left: 0; /* Kutuların sol boşluğunu kaldırın */
        margin-right: 0; /* Kutuların sağ boşluğunu kaldırın */
    }
    .layer h3 {
        font-size: 12px; /* Küçülen metin boyutu */
        bottom: 10%;
    }
    .layer:hover h3 {
        bottom: 10%;

    }
}
    