/**
 * Video Kartları için Özel CSS Stilleri
 */

/* Ana video kartı stilleri */
.main-video-card .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
}

.main-video-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.main-video-card .card-img-top {
    transition: transform 0.5s ease;
}

.main-video-card .card:hover .card-img-top {
    transform: scale(1.05);
}

.main-video-card .card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Küçük video kartları stilleri */
.featured-videos .col-md-4 .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    border: none;
}

.featured-videos .col-md-4 .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
}

.featured-videos .col-md-4 .card-img-top {
    transition: transform 0.5s ease;
}

.featured-videos .col-md-4 .card:hover .card-img-top {
    transform: scale(1.05);
}

/* Video Galeri Sidebar stilleri */
.video-gallery-sidebar {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.video-gallery-title h3 {
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dc3545;
}

.video-list-item {
    transition: background-color 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
}

.video-list-item:hover {
    background-color: #f0f0f0;
}

.video-list-item a {
    color: #333;
    text-decoration: none;
    padding: 8px;
    display: flex;
    align-items: center;
}

.video-thumb {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.video-thumb img {
    transition: transform 0.3s ease;
}

.video-list-item:hover .video-thumb img {
    transform: scale(1.05);
}

.video-info h6 {
    transition: color 0.3s ease;
    line-height: 1.3;
}

.video-list-item:hover .video-info h6 {
    color: #dc3545;
}

/* Responsive düzenlemeler */
@media (max-width: 767px) {
    .main-video-card .card-img-top {
        height: 240px !important;
    }
    
    .video-gallery-sidebar {
        margin-top: 20px;
    }
    
    .featured-videos .col-md-4 {
        margin-bottom: 15px;
    }
}
