
    /* CORE STYLES */
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
    
   :root { 
    --bg-color: #F9F7F2; 
    --text-main: #1A1A1B; 
    --gold-primary: #B59432; 
    --text-secondary: #555;
}

    body { 
    background-color: var(--bg-color); 
    color: var(--text-main); 
    line-height: 1.9; 
    margin: 0;
}
    a { text-decoration: none; color: var(--gold-primary); transition: 0.3s; }
    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--text-main); font-weight: 400; }

    /* --- FIXED HEADER (NAVIGATION) --- */
   .site-header { 
    padding: 15px 5%; 
    background-color: rgba(255, 255, 255, 0.98); 
    position: fixed; 
    width: 100%; 
    top: 0; 
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
    z-index: 1000; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}
    .back-btn { 
        font-size: 0.75rem; 
        text-transform: uppercase; 
        letter-spacing: 2px; 
        color: #777; 
        display: flex; 
        align-items: center; 
        gap: 8px; 
        font-weight: 700;
    }
    .back-btn:hover { color: var(--gold-primary); }

    /* --- BLOG CONTAINER --- */
  .blog-container { 
    max-width: 800px; 
    margin: 140px auto 60px; 
    padding: 0 20px; 
}
    .blog-header-content { 
        text-align: center; 
        margin-bottom: 50px; 
        display: block;
        width: 100%;
    }
    
    .blog-meta { 
    display: block;
    text-align: center;
    color: var(--gold-primary); 
    font-size: 0.75rem; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    font-weight: 700;
    margin-bottom: 10px;
}
    
   .blog-title { 
    font-family: 'Playfair Display', serif;
    font-size: 3rem; 
    text-align: center;
    color: var(--text-main);
}
    .blog-hero-img { 
    width: 100%; 
    height: auto; 
    border-radius: 4px; 
    margin-top: 30px;
}
    
    .blog-body { font-size: 1.15rem; color: var(--text-secondary); text-align: left; }
    .blog-body h4 { 
        font-size: 1.8rem; 
        margin-top: 50px; 
        margin-bottom: 20px; 
        color: var(--text-main); 
    }
    .blog-body p { margin-bottom: 25px; }
    .blog-body strong { color: var(--text-main); font-weight: 600; }

    /* SHARE SECTION */
    .share-section { 
        margin-top: 80px; 
        padding: 40px; 
        background: #fff; /* White box for the share area */
        border-radius: 4px;
        text-align: center; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    }
    .share-btn-main { 
        background: var(--text-main); 
        border: none; 
        color: #fff; 
        padding: 15px 35px; 
        cursor: pointer; 
        font-size: 0.8rem; 
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 700;
        margin-top: 15px; 
        transition: 0.3s; 
    }
    .share-btn-main:hover { background: var(--gold-primary); transform: translateY(-2px); }

    /* FOOTER */
   footer { 
    background-color: #1A1A1B; 
    padding: 60px 5%; 
    text-align: center; 
    margin-top: 80px;
}
    footer a { color: var(--gold-primary); }

    /* MOBILE RESPONSIVENESS */
    @media(max-width: 768px) {
        .blog-title { font-size: 2rem; } 
        .blog-hero-img { height: 300px; }
        .blog-container { width: 92%; margin-top: 100px; }
        .blog-body { font-size: 1.1rem; }
    }
