@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

html {
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* background: #FFFFF0; */
}

.text-title{
    font-family: 'Montserrat', sans-serif;

    font-size: 3rem;
    font-weight: 900;
}

.social-icons {
    display: flex;
    justify-content: end; /* Ortaya hizalar */
    gap: 15px; /* İkonlar arası boşluk */
    margin-top: 10px; /* Başlıktan sonra biraz boşluk bırak */
}
.social-icons a {
    text-decoration: none;
    color: white;
}


.nav-link{
    font-size: 1.5rem;
    font-weight: 500;
    color: black;
}
.pdf-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    text-align: center;
}
.pdf-container {
    max-width: 400px;
    margin: auto;
    text-align: center;
}
.pdf-container img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.pdf-container img:hover {
    transform: scale(1.05);
}


 /* Flipbook Container */
 .flipbook-container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* Swiper Slide */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 50%; /* Çift sayfa görünümü için %50 */
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Swiper Navigasyon */
.swiper-button-next, .swiper-button-prev {
    color: #096bd8;
}

/* Pagination Noktaları */
.swiper-pagination-bullet-active {
    background: #096bd8;
}

/* Mobilde tek sayfa */
@media (max-width: 768px) {
    .swiper-slide img {
        width: 100%;
    }
}



.swiper {
    position: relative;
    background: #f3f3f3; /* Hafif kitap arkaplanı */
    padding: 20px;
    border-radius: 5px;
    box-shadow: inset 0px 5px 10px rgba(0,0,0,0.1), /* İç gölge */
                0px 5px 15px rgba(0,0,0,0.3); /* Dış gölge */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent; /* Sayfa değiştikçe arkaplanı değiştirmez */
    padding: 20px;
    border-radius: 5px;
}

/* Sayfa Çevirme Efekti */
.swiper-slide img {
    width: 50%;
    height: auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

/* Kitap Orta Cilt Efekti */
.swiper-slide::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}


@media (max-width:576px){
    
    .text-title{
        font-size: 2rem;
        font-weight: 900;
    }
    footer .row{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .hero{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .social-icons {
        display: flex;
        justify-content: center; /* Ortaya hizalar */
        gap: 15px; /* İkonlar arası boşluk */
        margin-top: 10px; /* Başlıktan sonra biraz boşluk bırak */
    }
    }