/*
Theme Name: Neve Pagalworlds Clone
Description: Exact clone of pagalworlds.com - 4-column song grid, downloads, audio
Author: You
Template: neve
Version: 1.0
*/

@import url("../neve/style.css");

/* === EXACT PAGALWORLDS CLONE === */

/* 1. Force 4-Column Grid (Desktop) */
.nv-index-posts .posts-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 10px !important;
}
.nv-index-posts article {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.nv-index-posts article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(47,90,174,0.2);
    border: 2px solid #2f5aae;
}

/* 2. Responsive Grid */
@media (max-width: 960px) {
    .nv-index-posts .posts-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 600px) {
    .nv-index-posts .posts-wrapper {
        grid-template-columns: 1fr !important;
        padding: 0 15px !important;
    }
}

/* 3. Featured Image - Square 180x180 */
.nv-post-thumbnail-wrap {
    margin: 0 !important;
    padding: 0 !important;
}
.nv-post-thumbnail-wrap img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    border-radius: 10px 10px 0 0 !important;
    display: block;
}

/* 4. Song Title - Exact Like Pagalworld */
.blog-entry-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    margin: 8px 10px 10px !important;
    text-align: center !important;
    line-height: 1.3 !important;
    padding: 0 !important;
}
.blog-entry-title a {
    color: #000 !important;
    text-decoration: none !important;
}
.blog-entry-title a:hover {
    color: #2f5aae !important;
}

/* 5. Hide Everything Else */
.nv-meta-list,
.posted-on,
.byline,
.cat-links,
.nv-post-author,
.nv-post-date,
.nv-comments-title,
.nv-comment-form,
.nv-bc,
.nv-tags-list,
.entry-content p {
    display: none !important;
}

/* 6. Compact Header (Like Pagalworld) */
.nv-navbar {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 8px 0 !important;
}
.nv-navbar .navbar-brand {
    font-size: 24px;
    font-weight: 800;
    color: #2f5aae !important;
}
.nv-navbar .nav-menu li a {
    font-size: 14px;
    color: #333;
    padding: 8px 15px;
}
.nv-navbar .nav-menu li a:hover {
    color: #2f5aae;
}

/* 7. Search Icon in Header */
.header-search-icon {
    color: #2f5aae;
    font-size: 18px;
}

/* 8. Pagination */
.page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    background: #f0f0f0;
    color: #333;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}
.page-numbers.current,
.page-numbers:hover {
    background: #2f5aae;
    color: #fff !important;
}

/* 9. Footer - Dark Like Pagalworld */
.site-footer {
    background: #111 !important;
    color: #888 !important;
    padding: 20px 0;
    margin-top: 50px;
    font-size: 12px;
}
.site-footer p {
    text-align: center;
    margin: 0;
    color: #666;
}
.site-footer a {
    color: #888;
    text-decoration: none;
}
.site-footer a:hover {
    color: #2f5aae;
}

/* 10. Single Page - Clean */
.single-post .entry-title {
    font-size: 22px !important;
    text-align: center;
    color: #2f5aae;
    margin: 20px 0;
}
.single-post .nv-post-thumbnail-wrap img {
    max-width: 300px;
    border-radius: 12px;
    display: block;
    margin: 0 auto 20px;
}

/* Download Buttons */
.song-download-btn {
    display: inline-block;
    background: #2f5aae;
    color: #fff !important;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.song-download-btn.high {
    background: #e91e63;
}