/* Kütüphane Anasayfa Stilleri */

/* Slider Stilleri */
#featured {
    background-color: #f8f8f8;
    padding: 20px 0;
}

.main-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slides li {
    min-width: 100%;
    flex-shrink: 0;
}

.slides li img {
    width: 100%;
    height: auto;
    display: block;
}

/* Buton Stilleri */
.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
    padding: 12px 25px;
    margin: 8px 5px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

/* İçerik Bölümü */
#leftside {
    margin: 20px 0;
    text-align: center;
}

#leftside .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Görsel Stilleri */
.container img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.container img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Video İframe Stilleri */
.container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .btn-danger {
        padding: 10px 15px;
        font-size: 12px;
        margin: 5px 3px;
    }

    .col-lg-6 {
        width: 100%;
        padding: 10px;
    }

    .container iframe {
        width: 100% !important;
        height: 300px !important;
    }

    #leftside .row {
        flex-direction: column;
    }
}

/* Modal Stilleri */
.modal-content {
    border-radius: 10px;
}

.modal-body img {
    border-radius: 8px;
    margin-bottom: 15px;
}

.modal-footer {
    border-top: none;
}

/* Yuvarlak Çizgi */
hr.rounded {
    border-top: 4px solid #bbb;
    border-radius: 4px;
    margin: 30px 0;
}

/* Metin Stilleri */
h5 {
    color: #333;
    font-weight: 600;
    line-height: 1.6;
    margin: 20px 0;
}

/* Poster Grid */
.col-lg-12 .col-lg-6 {
    margin-bottom: 20px;
}

.col-lg-12 .col-lg-6 a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

/* Center Alignment */
center {
    text-align: center;
}

/* Padding ve Spacing */
.container .row {
    margin-bottom: 20px;
}

/* Link Stilleri */
a {
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.85;
}



