/**
 * Blog Category Page Styles
 *
 * @package NYCNewYears
 * @subpackage CSS
 */

/* Import blog card component styles */
@import url('components/blog-card.css');

/* Override site-inner styles for full width */
.blog-category .site-inner {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.blog-categories {
    padding: 5rem 0 1rem;
}

.venues-hero {
    text-align: center;
    position: relative;
    height: calc(40vh + 80px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venues-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.venues-hero-content {
    position: relative;
    z-index: 1;
}

.venues-hero h1 {
    position: relative;
    z-index: 1;
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 60px 4rem;
    background: #e5e7eb;
}

.blog-posts-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #333;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

/* Event Sections */
.event-section {
    margin-bottom: 60px;
}

.event-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.section-venues {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 20px;
}

/* Pagination Styles */
.blog-pagination {
    text-align: center;
    margin-top: 40px;
}

.blog-pagination .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination .pagination a,
.blog-pagination .pagination span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-pagination .pagination a:hover {
    background: #ba534a;
    color: white;
}

.blog-pagination .pagination .current {
    background: #ba534a;
    color: white;
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 8px;
    margin: 2rem 0;
}

.no-posts p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .section-venues {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .venues-hero-content {
        height: calc(30vh + 60px);
    }

    .venues-hero h1 {
        font-size: 2rem;
    }

    .section-venues {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-posts-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-categories {
        padding: 7.5rem 0 1rem;
    }

    .venues-hero-content {
        height: calc(25vh + 40px);
    }

    .venues-hero h1 {
        font-size: 1.8rem;
    }

    .blog-posts-section {
        padding: 1.5rem 1rem;
    }

    .blog-posts-section h2 {
        font-size: 1.5rem;
    }

    .event-section .section-title {
        font-size: 1.3rem;
    }

    .section-venues {
        grid-template-columns: 1fr;
    }
}
