@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Oswald", sans-serif;
    line-height: 1.4;
    margin: 0;
    color: black; /* Başlangıçta siyah renk */
    background-color: #f8f8f8;
}




.menu li a:hover {
    color: #118da1;
}

.menu {
    list-style: none;
    display: flex;
    gap: 50px;
    padding-right: 320px;
    padding-left: 25px;

    font-size: large;
}
.menu li {
    display: inline;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hamburger Menü Checkbox */
.menu-toggle {
    display: none;
}

/* Menü İkonunu sadece anasayfada gizle */
.home-page .menu-icon  {
    display: none;
}

.close-menu {
    opacity: 0;
}




.social-icons {
    display: flex;
    gap: 6px; /* Aralarına boşluk bırak */
    padding-right: 50px;

}

.social-icon {
    width: 25px;  /* İkonların boyutunu ayarla */
    height: 25px;  /* İkonların boyutunu ayarla */
    border-radius: 50%;
    font-size: 16px; /* İkonların boyutu */
    color: white; /* Başlangıç rengi */
    text-decoration: none; /* Bağlantı alt çizgisi kaldır */
    background-color: rgba(197, 191, 191, 0.4);
    transition: background-color 0.3s ease;
    padding-left: 6px;
}

#youtube_icon{
    padding-left: 3px;

}

.social-icon:hover {
    background-color: rgba(197, 191, 191, 0.63); /* Hover (fareyle üzerine gelindiğinde) rengi değiştir */

}


/* Header */
header {
    background: linear-gradient(
            to bottom,
            #007591 0%,
            rgba(0, 188, 212, 0.3) 18%,
            rgba(0, 188, 212, 0.1) 88%,
            rgba(0, 188, 212, 0) 85%
    );
    padding: 27px 0;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header.scrolled {
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding-right: 40px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: white;
    font-weight: bold;
    font-size: 17px;
    transition: color 0.4s ease;
    text-decoration: none;

}

header nav ul li a:hover {
    color: #118da1;
    text-decoration: underline;
    text-decoration: none;
}

header .logo img {
    margin: 12px;
    margin-bottom: 0;
    height: 45px;
}


/* Section */
.section{
    background-color: #eaeaea;
    color: black;
    font-weight: bolder;
    padding: 90px;
    padding-bottom: 90px;
    margin-top: 25px;
    border-top: 120px solid white;
    text-align: center;
    font-size: 23px;
}

.section-b{
    background-color: white;
    padding: 70px;
    text-align: center;
    font-size: 16px;
}

.başvur{
    text-decoration: none;
}

.başvur:hover{
    color: #3b93ff;
    text-decoration: none;
}

footer {
    background-color: #333;
    padding: 40px 20px;
    color: white;
    text-align: center; /* Footer metnini ortaladık */
    height: 100px;
    position: absolute;
    bottom:0;
    width: 100%;
    margin-top: 180px;

}

.footer-text {
    font-size: 14px;
    color: #aaa;
}


.azupir_link{
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    color: #800080; /* Mor renk */
    text-align: center;
    letter-spacing: 2px; /* Harfler arasındaki boşluk */

}

.i {
    font-family: 'Arial', sans-serif;
    position: relative;
    top: 4px;
    padding-right: 1px;
}

.azupir_hover {
    font-family: "Courier Prime", monospace;
    display: inline-block;
    padding: 8px;
    font-size: 14px;
    color: white;
    border: 2px solid transparent; /* Default border */
    border-radius: 45px;
    transition: all 0.3s ease; /* Smooth transition for effects */
    text-decoration: none;

}
.azupir_hover:hover{
    color: #8a2be2; /* Purple text color */
    border-color: #8a2be2; /* Purple border */
    cursor: pointer; /* Changes cursor to pointer */

}




@media (max-width: 850px) {

    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
        padding-right: 50px;
    }
    .social-icon{
        font-size: 17px;
        padding-right: 5px;
        padding-top: 2px;
    }


    header .logo img {
        height: 36px;  /* Logonun boyutunu küçült */
        padding: 0 15px;

    }


    .home-page .menu-icon {
        display: block; /* Menüyü küçük ekranlarda göster */
    }

    .menu-icon {
        font-size: 20px;
        color: white;
        cursor: pointer;
        display: block;
        position: absolute;
        right: 15px; /* Sağda konumlandırmak için */
        top: 16px;
    }


    .menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0; /* Menü sağdan açılacak */
        background-color: #333;
        height: 100vh;
        width: 30%; /* Menü genişliği %60 olacak */
        flex-direction: column;
        align-items: center;
        padding: 60px 20px;
        gap: 20px;
        z-index: 999;

    }


    /* Menü açıldığında (checkbox işaretlendiğinde) menüyü göster */
    #menu-toggle:checked + .menu-icon + .menu {
        display: flex;
    }

    /* Menü öğelerinin üzerine gelince renk değiştirme */
    .menu li a:hover {
        color: #118da1;
    }

    /* Çarpı İkonu */
    .close-menu {
        opacity: 1;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        display: none;
    }

    .close-label {
        color: white;
        font-size: 25px;
        cursor: pointer;
    }

    .menu-toggle:checked + .menu-icon + .menu .close-menu {
        display: block; /* Checkbox işaretlendiğinde çarpı simgesini gösterme */
    }


    .section{
        background-color: #eaeaea;
        color: black;
        font-weight: bolder;
        padding: 50px;
        margin-top: 20px;
        border-top: 100px solid white;
        text-align: center;
        font-size: 23px;
    }

    .section-b{
        background-color: white;
        padding: 40px;
        text-align: center;
        font-size: 16px;
    }

    footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 115px;

    }

}

@media (max-width: 400px) {
    .section{
        background-color: #eaeaea;
        color: black;
        font-weight: bolder;
        padding: 40px;
        margin-top: -20px;
        border-top: 100px solid white;
        text-align: center;
        font-size: 23px;
    }

    .section-b{
        background-color: white;
        padding: 20px;
        text-align: center;
        font-size: 16px;
    }

    footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 115px;

    }

    .social-icons {
        justify-content: left; /* Sosyal medya ikonlarını ortala */
        width: 80%; /* Tam genişlik kullan */
        padding-right: 50px;
        gap: 6px;
        padding-top: 6px;
    }

}


.language-switch {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
    z-index: 9999;
    transition: background-color 0.3s ease;
}

.language-switch:hover {
    background-color: #333;
}

