/* KİTAP */

body {
    font-family: 'Raleway', sans-serif;
}

#book-background {
    padding-top: 70px;
    padding-bottom: 10px;
    background-color: #1E1E1E;
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;    
}

#book-header {
    display: inline-block;
    margin: 60px auto 0 auto;
}

#book-container {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    display: inline-block;
}

#books-container {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    display: inline-block;
}

#book-content {
    margin: 30px 0;
}

#books-content {
    margin: 10px 0;
}

.book-cover {
    width: 47%;
    display: inline-block;
    margin: 5px;
    position: relative;
    border: 1px solid lightgrey;
    height: 200px;
    border-radius: 10px;
}

.book-cover:hover {
    border: 1px solid lightgrey;
    cursor: pointer;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#book-page {
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
    height: 50px;
    text-align: center;
    display: inline-block;
}

.book-image {
    width: 35%;
    height: 99%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    background-color: #F7F7F7;
    border: 1px solid #F7F7F7;
    border-right: 1px solid #CCCCCC;
    margin: 0 auto;
}

.book-img-k {
    height: 85%;
    margin-top: 15px;
    border-radius: 6px;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.book-detail {
    width: 65%;
    height: 100%;
    float: right;
}

.book-info {
    width: 100%;
    height: 160px;
    border-top-right-radius: 10px;
    background-color: #ffffff;
    text-align: center;
    position: relative;
}

.book-summary {
    width: 100%;
    height: 37px;
    border-bottom-right-radius: 10px;
    position: relative;
    background-color: #F7F7F7;
    border-left: 1px solid #F7F7F7;
    border-top: 1px solid #CCCCCC;
}

.book-text {
    position:absolute;
    text-align: left;
    margin-left: 10%;
    line-height: 0.5;
    padding: 0;
}

.book-text-margin {
    margin-top: 20px;
    margin-right: 10px;
}

.book-name {
    font-size: 20px;
    line-height: 1.2em;
    color: #4682B4;
    font-weight: bold;
}

.book-author {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2em;
    margin-top: -10px;
    margin-right: 10px;
}

.book-type {
    font-size: 12px;
}

.book-read {
    font-size: 13px;
    line-height: 1;
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

.book-button {
    text-decoration: none;
    display: inline-block;
    height: 100%;
    width: 70px;
    margin: 0 20px;
    color: #ffffff;
    border-radius: 5px;
    background-color: #4682B4;
    font-size: 2em;
    line-height: 1.5em;
}

.book-button:hover {
    background-color: #36648b;
}

.book-page-num {
    font-weight: 600;
    font-size: 14px;
}

#book-page ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

#book-page ul li {
    display: inline-block;
}

.book-hr {
    border: 0.5px solid whitesmoke;
}

.book {
    transition: 0.3s;
}

.bookcov {
    transition: 0.5s;
}

.bookcovhover {    
    cursor: pointer;    
    background-color: #C8C8C8;
    box-shadow: 0px 0px 15px 5px #C8C8C8, 0px 0px 20px 5px #C8C8C8;    
    transition: 0.5s;
}

@media screen and (max-width: 970px) {
    #book-container {
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #eeeeee;
    }

    #books-container {
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #eeeeee;
    }

    .book-img-k {
        height: 80%;
        margin-top: 20px;
    }
}

/* CEP TELEFONU */
@media screen and (max-width: 730px) {
    #book-container {
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #eeeeee;
        margin-bottom: 5px;
    }

    #books-container {
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #eeeeee;
        margin-bottom: 5px;
    }

    #book-content {
        margin: 10px 0;
    }

    #books-content {
        margin: 0 0;
    }

    .book-cover {
        width: 98%;
        height: 200px;
        display: inline-block;
    }

    .book-img-k {
        height: 70%;
        margin-top: 20px;
    }

    .book-name {
        font-size: 18px;
    }

    .book-author {
        font-size: 14px;
    }

    .book-button {
        width: 50px;
    }

    .book-page-num {
        font-size: 10px;
        padding: 0;
        margin: 0;
    }

}