        :root {
            --beige: #f5efe6;
            --terracotta: #b66c53;
            --dark-brown: #1e0d01;
            --sage: #8D8B63;
            --white: #FFFFFF;
            --light-gray: #f9f9f9;
            --dark-sage: #6d6b4d;
            --cream: #faf8f5;
            --gold: #d4af37;
            --soft-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Red Hat Display', sans-serif;
            line-height: 1.8;
            color: var(--dark-brown);
            background-color: var(--cream);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--dark-brown);
        }

        .container {
            max-width: 1200px;
            padding: 0 20px;
        }

        /* Hero Section */
        .blog-hero {
            height: 80vh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
            margin-bottom: 80px;
        }

        .blog-hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
            z-index: 1;
        }

        .blog-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
            z-index: 2;
        }

        .blog-hero-content {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding-bottom: 80px;
            color: var(--white);
        }

        .blog-category {
            display: inline-block;
            background: var(--terracotta);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-title {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 30px;
        }

        .blog-author {
            display: flex;
            align-items: center;
        }

        .blog-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 2px solid var(--white);
        }

        .blog-date, .blog-reading-time {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .blog-date i, .blog-reading-time i {
            margin-right: 8px;
            color: var(--gold);
        }

        /* Content Section */
        .blog-content-container {
            position: relative;
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--soft-shadow);
            margin-top: -60px;
            padding: 60px;
            z-index: 4;
            margin-bottom: 80px;
        }

        .blog-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .blog-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--dark-brown);
        }

        .blog-content h2 {
            font-size: 2rem;
            margin: 3rem 0 1.5rem;
            color: var(--terracotta);
        }

        .blog-content h3 {
            font-size: 1.5rem;
            margin: 2.5rem 0 1.2rem;
            color: var(--sage);
        }

        .blog-content blockquote {
            border-left: 3px solid var(--gold);
            padding-left: 30px;
            margin: 2.5rem 0;
            font-style: italic;
            color: var(--dark-sage);
            font-size: 1.3rem;
            line-height: 1.6;
        }

        .blog-content img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 3rem 0;
            box-shadow: var(--soft-shadow);
        }

        .blog-content ul, .blog-content ol {
            margin: 2rem 0;
            padding-left: 2rem;
        }

        .blog-content li {
            margin-bottom: 1rem;
        }

        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 3rem 0;
        }

        .gallery-image {
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            transition: all 0.4s ease;
        }

        .gallery-image:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            margin: 0;
            border-radius: 0;
            box-shadow: none;
        }

        .gallery-image:hover img {
            transform: scale(1.1);
        }

        /* Tags & Share */
        .blog-tags-share {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            padding: 3rem 0;
            border-top: 1px solid rgba(0,0,0,0.1);
            border-bottom: 1px solid rgba(0,0,0,0.1);
            margin: 4rem 0;
        }

        .blog-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .blog-tag {
            background: var(--beige);
            color: var(--terracotta);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .blog-tag:hover {
            background: var(--terracotta);
            color: var(--white);
        }

        .share-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .share-text {
            font-weight: 600;
            color: var(--sage);
        }

        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .share-btn.facebook { background: #3b5998; }
        .share-btn.twitter { background: #1da1f2; }
        .share-btn.linkedin { background: #0077b5; }
        .share-btn.pinterest { background: #bd081c; }

        .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .author-social a:hover {
            color: var(--dark-sage);
            transform: translateY(-3px);
        }

        /* Related Posts */
        .related-posts {
            margin: 6rem 0;
        }

        .section-title {
            font-size: 2.2rem;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--terracotta), var(--gold));
            border-radius: 3px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .related-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--soft-shadow);
            transition: all 0.4s ease;
        }

        .related-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.12);
        }

        .related-card-image {
            height: 200px;
            overflow: hidden;
        }

        .related-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .related-card:hover .related-card-image img {
            transform: scale(1.05);
        }

        .related-card-content {
            padding: 25px;
        }

        .related-card-category {
            display: inline-block;
            background: var(--beige);
            color: var(--terracotta);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .related-card-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .related-card-date {
            color: var(--sage);
            font-size: 0.85rem;
        }

        /* Back Button */
        .back-to-blog {
            text-align: center;
            margin: 4rem 0;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            background: var(--terracotta);
            color: var(--white);
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(182, 108, 83, 0.3);
        }

        .back-btn i {
            margin-right: 10px;
            transition: transform 0.3s ease;
        }

        .back-btn:hover {
            background: var(--dark-sage);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(109, 107, 77, 0.4);
        }

        .back-btn:hover i {
            transform: translateX(-5px);
        }

        /* Newsletter */
        .newsletter-section {
            background: linear-gradient(135deg, var(--terracotta), var(--dark-sage));
            padding: 80px 0;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .newsletter-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-family: 'Playfair Display', serif;
        }

        .newsletter-description {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.7;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .newsletter-input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            font-size: 1rem;
            color: var(--dark-brown);
        }

        .newsletter-input:focus {
            outline: none;
        }

        .newsletter-btn {
            background: var(--gold);
            color: var(--white);
            border: none;
            padding: 0 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: var(--dark-brown);
        }

        /* Decorative Elements */
        .decorative-element {
            position: absolute;
            opacity: 0.1;
            z-index: 1;
        }

        .decorative-element.leaf-1 {
            top: 20%;
            left: 5%;
            font-size: 5rem;
            color: var(--gold);
            transform: rotate(-15deg);
            animation: float 6s ease-in-out infinite;
        }

        .decorative-element.leaf-2 {
            bottom: 15%;
            right: 8%;
            font-size: 4rem;
            color: var(--sage);
            transform: rotate(25deg);
            animation: float 8s ease-in-out infinite 2s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(-15deg); }
            50% { transform: translateY(-20px) rotate(-20deg); }
        }

        /* Responsive */
        @media (max-width: 1199.98px) {
            .container {
                max-width: 100%;
                padding: 0 30px;
            }
        }

        @media (max-width: 991.98px) {
            .blog-hero {
                height: 70vh;
                min-height: 500px;
            }

            .blog-title {
                font-size: 3rem;
            }

            .blog-content-container {
                padding: 50px;
            }

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

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

            .author-box {
                flex-direction: column;
                text-align: center;
            }

            .author-avatar {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 767.98px) {
            .blog-hero {
                height: 60vh;
                min-height: 400px;
                margin-bottom: 60px;
            }

            .blog-title {
                font-size: 2.5rem;
            }

            .blog-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .blog-content-container {
                padding: 40px;
                margin-bottom: 60px;
            }

            .blog-tags-share {
                flex-direction: column;
                align-items: flex-start;
            }

            .image-gallery {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 575.98px) {
            .blog-hero {
                height: 50vh;
                min-height: 300px;
            }

            .blog-title {
                font-size: 2rem;
            }

            .blog-content-container {
                padding: 30px 20px;
            }

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

            .blog-content h3 {
                font-size: 1.3rem;
            }

            .related-grid {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
                border-radius: 25px;
            }

            .newsletter-input {
                border-radius: 25px 25px 0 0;
            }

            .newsletter-btn {
                border-radius: 0 0 25px 25px;
                padding: 15px;
            }
        }
