@import url(../main.css);
@import url(../color.css);



.banner
{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 20vh;
    width: 100%;
    background: url(3d-wall.jpg);
    background-size: cover;
    background-position: center 40%;
    box-shadow: 0px 10px 50px 30px rgba(0,0,0,0.6)
}
.banner::before
{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.2);
}
.logo-box
{
    position: absolute;
    z-index: 5;
    top: 10px;
    left: 8%;
    height: 15rem;
    width: 15rem;
}
.logo-box a
{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-box a img
{
    position: relative;
    z-index: 5;
    height: 70%;
}
.logo-box::before
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-52%, -50%);
    display: block;
    content: "";
    height: 70%;
    width: 70%;
    background-color: rgba(255,255,255,0.8);
    border-radius: 20%;
}
.baslik-box
{
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    padding-left: 15rem
}
.baslik-box h1
{
    color: white;
    font-size: 4rem;
    word-spacing: 20px;
    letter-spacing: 10px;
    font-weight: 400;
    font-family: 'Train One', cursive;
    line-height: 7rem;
}
.baslik-box p
{
    color: white;
    font-size: 6rem;
    word-spacing: 10px;
    letter-spacing: 5px;
    font-weight: 400;
    font-family: 'Lato', cursive;
    line-height: 6rem;
}





nav
{
    width: 100%;
    height: auto;
    background-color: white;
    margin-top: 2rem;
}
nav .geri-tus
{
    width: 100%;
    height: 10vh;
    font-size: 5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.4);
}
nav .geri-tus a
{
    margin-left: 2rem;
}
.prev-icon
{
    transition: all .3s ;
}
nav .geri-tus:hover .prev-icon
{
    transform: translateX(-20px);
}
.nav-baslik
{
    height: 10vh;
    width: 100%;
    text-align: center;
    font-size: 6rem;
    margin-top: 8rem;
    margin-bottom: 5rem;
}
nav section
{
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin-bottom: 5rem;
}
nav .item-box, .img-box, .title-box
{
    display: flex;
    justify-content: center;
    align-items: center;
}
.item-box
{
    position: relative;
    height: 30vh;
    width: 75%;
    border: 2px solid black;
    border-radius: 20px;
    /* box-shadow: -20px 20px 30px 5px rgba(0,0,0,0.6); */
}
.img-box
{
    flex: 30%;
    height: 100%;
    width: 100%;
}
.img-box img
{
    height: 70%;
}
.title-box
{
    flex: 70%;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.title-box h2
{
    font-size: 4.5rem;
}
.title-box p
{
    font-size: 3rem;
}
nav section a
{
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    transition: all .3s ease-in-out;
}
nav section a:hover
{
    box-shadow: -20px 20px 30px 5px rgba(0,0,0,0.6);
}




/* ---  FOOTER  --- */

footer
{
    width: 100%;
    height: 15vh;
    background-color: white;
    padding: 3rem;
    margin-top: 4rem;
    border-top: 1px solid black;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}
footer section
{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}
footer .first-box
{
    height: 100%;
    flex: 75%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 1.6rem;
}
footer .iletisim-box
{
    height: 50%;
    flex: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border-left: 1px solid black;
}


@media(max-width:550px)
{
    html
    {
        font-size: 7px;
    }


    .baslik-box
    {
        padding: 0;
        padding-top: 10rem;
    }
    .baslik-box h1
    {
        margin-top: 3rem;
        font-size: 3rem;
        line-height: 1rem;
        letter-spacing: 0;
        word-spacing: 0;
    }
    .baslik-box p
    {
        font-size: 5rem;
        letter-spacing: 0;
        word-spacing: 0;
    }
    .logo-box
    {
        position: absolute;
        z-index: 5;
        top: 30px;
        left: 40%;
        height: 10rem;
        width: 10rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav .geri-tus
    {
        padding-top: 2rem;
        font-size: 4rem;
    }
    nav .nav-baslik
    {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    nav section
    {
        height: auto;
        flex-direction: column;
        padding: 2rem;
    }
    section .title-box h2
    {
        text-align: center;
    }
    nav section .item-box
    {
        width: 100%;
        flex-direction: column;
        margin-bottom: 2rem;
    }
    section .item-box img
    {
        width: 30%;
        margin: 2rem;
    }

    .banner
    {
        height: 30vh;
    }
    footer section
    {
        flex-direction: column;
    }
    footer .iletisim-box
    {
        border: none;
        border-top: 1px solid black;
        width: 80%;
        padding: 2rem;
    }
    footer .first-box
    {
        padding: 2rem;
        justify-content: space-between;
    }
    footer .first-box p
    {
        width: 80%;
        text-align: center;
    }
}