/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* Series Files Styling */
.series-files-container {
    margin: 40px auto;
    padding: 30px;
    background: #423622;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 750px;
}

.series-files-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.series-files-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
	color: #fff;
}

.download-all-btn {
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: none;
}

.download-all-btn:hover {
    transform: translateY(-2px);
}

.zip-icon {
    width: 20px;
    height: 20px;
}

.series-files-grid {
    display: grid;
    gap: 25px;
}

.series-file-item {
background: rgb(255 248 235);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.series-file-item:hover {
	transform: translateY(-5px);
    background: rgb(255 255 255);
}

.file-title {
    font-size: 20px;
    font-weight: 600;
    color: #423622;
}

.file-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.file-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.srt-link {
    background: #896623;
    color: #fff;
}

.srt-link:hover {
    transform: translateY(-2px);
    color: white;
}

.pdf-link {
    background: #2061b2;
    color: #fff;
}

.pdf-link:hover {
    transform: translateY(-2px);
    color: white;
}

.video-link {
	background: #0d998a;
    color: white;
}

.video-link:hover {
    transform: translateY(-2px);
    color: white;
}

.file-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-label {
    font-size: 14px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .series-files-container {
        margin: 20px 0;
        padding: 20px;
    }
    
    .series-files-header {
        flex-direction: column;
        text-align: center;
    }
    
    .series-files-title {
        font-size: 24px;
    }
    
    .series-files-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .file-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .file-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .series-files-container {
        padding: 15px;
    }
    
    .series-files-title {
        font-size: 20px;
    }
    
    .file-title {
        font-size: 18px;
    }
    
    .file-link {
        padding: 10px 16px;
        font-size: 14px;
    }
}