﻿/* Blog page */
        .page-header {
            margin-top: 80px;
            background: linear-gradient(135deg, var(--cream) 0%, #F5E6D3 100%);
            padding: 5rem 2rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }

        .page-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(46, 139, 87, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-light);
            position: relative;
            z-index: 1;
        }

        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--accent);
        }

        .page-header h1 {
            font-size: 3.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .page-header p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Search & Filter */
        .blog-controls {
            max-width: 1280px;
            margin: -2rem auto 3rem;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .blog-search {
            max-width: 600px;
            margin: 0 auto;
            width: 100%;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 50px;
            box-shadow: 0 10px 40px rgba(139, 69, 19, 0.1);
            border: 2px solid var(--border);
            padding: 0.25rem;
            transition: all 0.3s;
        }

        .search-box:focus-within {
            border-color: var(--accent);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
        }

        .search-box i {
            color: var(--text-light);
            margin-left: 1.25rem;
            font-size: 1.1rem;
        }

        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            padding: 1rem 1.25rem;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background: transparent;
        }

        .search-box input::placeholder {
            color: var(--text-light);
        }

        .search-box button {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border: none;
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .search-box button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
        }

        .category-pills {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .category-pill {
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            border: 2px solid var(--border);
            background: white;
            color: var(--text);
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .category-pill:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .category-pill.active {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border-color: var(--primary);
            box-shadow: 0 5px 20px rgba(139, 69, 19, 0.2);
        }

        /* Featured Blog */
        .featured-blog {
            max-width: 1280px;
            margin: 0 auto 4rem;
            padding: 0 2rem;
        }

        .featured-card {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border: 1px solid var(--border);
            transition: all 0.4s ease;
        }

        .featured-card:hover {
            box-shadow: 0 20px 60px rgba(139, 69, 19, 0.12);
            transform: translateY(-5px);
        }

        .featured-image {
            position: relative;
            overflow: hidden;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            min-height: 400px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .featured-card:hover .featured-image img {
            transform: scale(1.05);
        }

        .featured-badge {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            background: linear-gradient(135deg, var(--accent), #c99e2e);
            color: var(--dark);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .featured-content {
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .featured-meta span {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .featured-category {
            color: var(--secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
            margin-bottom: 0.75rem;
        }

        .featured-content h2 {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .featured-content p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .read-more:hover {
            gap: 1rem;
            color: var(--accent);
        }

        .read-more i {
            transition: transform 0.3s;
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        /* Blog Grid */
        .blog-section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
        }

        .section-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--dark);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border: 1px solid var(--border);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(139, 69, 19, 0.12);
        }

        .blog-image {
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-category-tag {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            color: var(--primary);
            padding: 0.35rem 0.9rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-body {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.75rem;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .blog-body h3 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 0.75rem;
            line-height: 1.3;
            transition: color 0.3s;
        }

        .blog-card:hover .blog-body h3 {
            color: var(--primary);
        }

        .blog-excerpt {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1.25rem;
            flex: 1;
        }

        .blog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
        }

        .blog-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .blog-author img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
        }

        .blog-author span {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text);
        }

        .read-time {
            font-size: 0.8rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        /* Load More */
        .load-more {
            text-align: center;
            margin: 3rem 0 2rem;
        }

        .load-more-btn {
            padding: 1rem 2.5rem;
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-family: 'Inter', sans-serif;
        }

        .load-more-btn:hover {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
        }

        /* Newsletter */
        .newsletter {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--dark), #4A3028);
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: rgba(212, 175, 55, 0.05);
            border-radius: 50%;
        }

        .newsletter-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .newsletter h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .newsletter p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            color: white;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .newsletter-form input:focus {
            border-color: var(--accent);
            background: rgba(255,255,255,0.15);
        }

        .newsletter-form button {
            padding: 1rem 2rem;
            background: var(--accent);
            color: var(--dark);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .newsletter-form button:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
        }

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.blog-card h3 {
    color: var(--dark);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .page-header h1 { font-size: 2.8rem; }
    .featured-card { grid-template-columns: 1fr; }
    .featured-image img { min-height: 300px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .page-header { padding: 4rem 1.5rem 3rem; }
    .page-header h1 { font-size: 2.2rem; }
    .blog-controls { padding: 0 1rem; }
    .category-pills { gap: 0.5rem; }
    .category-pill { padding: 0.5rem 1rem; font-size: 0.85rem; }
    .featured-content { padding: 1.5rem; }
    .featured-content h2 { font-size: 1.6rem; }
    .blog-section { padding: 0 1rem 3rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
}

