html {
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
    padding: 0;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1C0C57;
    color: #FFFFFF;
    padding: 0; /* Padding sıfırlandı */
    margin: 0;  /* Margin sıfırlandı */
}

img {
    width: 100%;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgb(54, 56, 155);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.section_maptittle {
    position: relative;
    text-align: center;
    font-size: 30px;
    transition: all .5s ease-in-out;
    color: #E35416ff;
}

.section_maptittle:hover {
    background-color: rgb(54, 56, 155);
}

.section_tittle {
    position: relative;
    text-align: center;
    font-size: 30px;
    transition: all .5s ease-in-out;
    color: #E35416ff;
    text-transform: uppercase;
}

.section_tittle:hover {
    background-color: rgb(54, 56, 155);
}

.container p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}

.map-container {
    margin-top: 20px;
}

.map-container h2 {
    padding: 2px;
    color: #E35416ff;
    text-align: center;
}

iframe {
    margin-left: 20%;
    margin-right: 20%;
    width: 60%;
    height: 480px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

section {
    padding: 100px 0;
    background-color: #161817ff;
}

/*HEADER*/
header {
    background-color: rgb(45, 47, 133);
    border-bottom: 1px solid rgba(238, 238, 238, 0.881);
    position: fixed;
    top: 0; /* Üst boşluğu kaldırmak için top değeri eklendi */
    left: 0; /* Sol boşluğu kaldırmak için left değeri eklendi */
    width: 100%;
    z-index: 5;
    padding: 10px 0; /* Üst ve alt padding */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 80%;
}

.nav_names {
    display: flex;
}

.nav_names li {
    margin-left: 15px;
    color: #fff;
    padding: 5px 15px;
}

.icons {
    border: 2px;
    border-radius: 2px;
    color: goldenrod;
}

.logo a {
    border-radius: 1px;
    border-image-width: 150%;
}

/*First Page*/
.inner_firstpage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    width: 70%;
    color: #E35416ff;
    padding-top: 70px; /* Menubar'dan kaçınmak için üst boşluk */
}

.child_firstpage {
    flex-basis: 45%;
}

.child_firstpage h1 {
    font-size: 50px;
    color: #E35416ff;
}

.child_firstpage p {
    font-size: 25px;
    margin-bottom: 12px;
}

.span_child {
    color: #fff;
}

.btn-container {
    display: flex;
    gap: 10px;
    margin: 20px 0; /* Alt ve üst boşluk ekler */
}

.btn {
    background: #32CD32;
    padding: 12px 18px;
    border-radius: 20px;
    color: #fff;
    border: 1px solid #32CD32;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
}

.btn:hover {
    background: transparent;
    letter-spacing: 3px;
}

footer {
    background-color: rgb(54, 56, 155);
    padding: 10px 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-top: auto;
}

footer p {
    margin: 0;
    font-size: 12px;
    color: #FFD700;
}

@media (max-width: 1024px) {
    .navbar {
        width: 90%;
    }

    iframe {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 100%;
        padding: 2px;
    }

    .inner_firstpage {
        flex-direction: column;
        width: 100%;
    }

    .child_firstpage {
        padding-top: 50px;
        flex-basis: 100%;
        text-align: center;
    }

    .child_firstpage h1 {
        font-size: 36px;
    }

    .child_firstpage p {
        font-size: 20px;
    }

    #cekici {
        padding-top: 20px;
    }

    .container {
        padding: 10px;
    }

    iframe {
        width: 100%;
        margin: 0;
    }

    .btn-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
    }

    .nav_names {
        flex-direction: column;
        align-items: center;
    }

    .inner_firstpage {
        flex-basis: 100%;
        padding-top: 70px; /* Menubar'dan kaçınmak için üst boşluk azaltıldı */
    }

    .nav_names li {
        margin: 5px 0;
    }

    .child_firstpage h1 {
        font-size: 28px;
    }

    .child_firstpage p {
        font-size: 18px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 16px;
    }
}
