/* Blog specific styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.blog-breadcrumb a {
    color: #1a73e8;
    text-decoration: none;
}

.blog-breadcrumb span {
    color: #666;
    margin: 0 0.5rem;
}

.blog-main {
    padding: 2rem 0;
}

.blog-main h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.blog-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.search-bar {
    margin-bottom: 3rem;
}

.search-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #1a73e8;
}

.blog-posts {
    margin-bottom: 4rem;
}

.blog-post {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-post h2 {
    font-size: 1.8rem;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.blog-post p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-card h2 {
    font-size: 1.4rem;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.blog-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

.pagination {
    text-align: center;
    margin-top: 2rem;
}

.next-page {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.next-page:hover {
    background: #1557b0;
}

.featured-collections {
    margin-top: 4rem;
}

.featured-collections h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.featured-collections > p {
    color: #666;
    margin-bottom: 2rem;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.collection-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.collection-card h3 {
    font-size: 1.4rem;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.collection-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.explore-collection {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.explore-collection:hover {
    text-decoration: underline;
}

/* Header and Navigation Styles */
.header {
    background-color: white;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    position: relative;
}

.logo {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-main h1 {
        font-size: 2rem;
    }

    .blog-post h2 {
        font-size: 1.6rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }
}

@media (max-width: 480px) {
    .blog-main h1 {
        font-size: 1.8rem;
    }

    .blog-post {
        padding: 1.5rem;
    }

    .blog-post h2 {
        font-size: 1.4rem;
    }

    .blog-card {
        padding: 1rem;
    }

    .blog-card h2 {
        font-size: 1.2rem;
    }
}