/* Genel stil ayarları */

@import url('https://fonts.cdnfonts.com/css/serotiva');
@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: 40px;

}

.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;

}

.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;
    text-align: center;
    padding-top: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease;
}



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

header nav ul li {
    display: inline;
    text-align: center;
}

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;
}







/* Hakkımızda Section */
.about-section {
    padding: 150px 20px 80px;
    background-color: white;
}

.about-section h1{
    padding-top: 15px;
}


.about-content-a{
    background-color: #eaeaea;
    width: auto;
    height: auto;
    padding-left: 150px;
    padding-right: 200px;
    display: flex;

}

.about-section-img{
    max-width: 450px;
    max-height: 450px;
    overflow: hidden;
    margin: 10px;


}

.yazı{
    flex-direction: column;
    text-align: justify;
    margin-left: 50px;
    margin-top: 90px;

}

/* Footer Section */
footer {
    background-color: #333;
    padding: 40px 20px;
    color: white;
    text-align: center; /* Footer metnini ortaladık */
    align-items: center;
}

.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 */

}
.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;

}
.i {
    font-family: 'Arial', sans-serif;
    position: relative;
    top: 4px;
    padding-right: 1px;
}
.azupir_hover:hover{
    color: #8a2be2; /* Purple text color */
    border-color: #8a2be2; /* Purple border */
    cursor: pointer; /* Changes cursor to pointer */

}




@media (max-width: 850px) {

    /* Header içindeki menüyü ortalayalım */
    header nav ul {
        flex-direction: column; /* Menü öğelerini dikey hizala */
        gap: 15px; /* Aralarına daha fazla boşluk bırak */
        padding-right: 0;
    }

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

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

    }

    .about-content-a {
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
    }

    .about-section-img {
        max-width: 400px;
        align-items: center;
    }
    .yazı{
        padding-top: 0;
        padding-bottom: 50px;
    }

    /* Founder Info */
    .founder-info {
        flex-direction: column; /* Founder section öğelerini dikey hizala */
        gap: 10px; /* Aralarına boşluk bırak */
    }

    .founder-text h3 {
        font-size: 1.5em;
    }

    .founder-text p {
        font-size: 1.1em;
    }

}




@media (max-width: 850px) {

    .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: 17px;
    }


    .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: 12px;
        right: 12px;
        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 */
    }
}


.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;
}



@media (max-width: 650px) {
    .about-content-a {
        padding-left: 10px;
        padding-right: 20px;
        display: block;
    }

    .about-section-img {
        max-width: 300px;
        align-items: center;
        padding-left: 30px;

    }
    .azupir_hover{
        font-family: "Courier Prime";
    }
}