/* Videos page styles */
.video-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e74c3c;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: uppercase;
}

.view-all-btn {
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.view-all-btn:hover {
    background-color: #c0392b;
    color: #fff;
    text-decoration: none;
}

.videos-row {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding: 15px 0;
    gap: 15px;
    margin: 0 -15px;
    scroll-padding: 15px;
    scroll-snap-type: x mandatory;
}

.video-item {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(231, 76, 60, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button i {
    color: #fff;
    font-size: 24px;
}

.video-title {
    padding: 15px;
}

.video-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.video-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

.video-meta .category {
    margin-right: 15px;
}

.video-meta .date {
    display: flex;
    align-items: center;
}

.video-meta i {
    margin-right: 5px;
}

/* Video player page */
.video-player-container {
    margin-bottom: 30px;
}

.video-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    margin-top: 20px;
}

.video-info h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.video-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.related-videos {
    margin-top: 30px;
}

.related-videos h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .videos-row::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    
    .video-item {
        width: 250px;
    }
}

@media (max-width: 576px) {
    .video-item {
        width: 250px;
    }
    
    .section-header {
        flex-direction: row;
        align-items: center;
        padding: 0 15px;
    }
    
    .view-all-btn {
        margin-top: 0;
    }
} 