/* Basic Reset and Variables (Optional but good practice) */
:root {
    --primary-color: #795548; /* Earthy Brown */
    --secondary-color: #5d4037; /* Darker Brown */
    --accent-color: #e8a87c; /* Henna Stain Orange/Red */
    --background-color: #f7f7f7;
    --text-color: #333;
    --font-serif: 'Georgia', serif;
    --font-sans: 'Helvetica', Arial, sans-serif;
    --nature-green: #38761d; /* A more pleasant, subtle green */
    --feature-title-color: #4a2f1c; /* Darker, sophisticated brown for features */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    padding-top: 60px; /* Space for fixed header */
}

/* Header Styling */
.blog-header {
    /* Changed from bright 'green' to a subtle, earthy brown */
    background-color: darkgreen; 
    color: white;
    padding: 15px 0;
    margin-top: -21px;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 6rem;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-header h1 {
    font-size: 1.8em;
    font-family: var(--font-serif);
    max-width: 900px;
    margin: 0 auto;
}

/* Main Blog Container */
.blog-container {
    max-width: 800px;
    margin: 141px auto auto auto;
    padding: 0 20px;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 8px;
}

/* Headings and Typography */
h2 {
    font-size: 1.8em;
    color: var(--secondary-color);
    padding-top: 50px;
    margin-bottom: 15px;
    /* Used accent color for the dividing line */
    border-bottom: 2px solid var(--accent-color); 
    padding-bottom: 5px;
    font-family: var(--font-serif);
}

h3 {
    font-size: 1.4em;
    /* Updated h3 color to a feature-specific brown */
    color: green; 
    margin-top: 25px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

strong {
    /* Updated strong color to a nature-inspired green */
    color: var(--nature-green); 
}

.main-image img{
    width: 100%;
    max-height: 400px;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Design Feature Sections (for the list items) */
.design-feature {
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
}

.design-feature ul {
    list-style: none;
    padding: 0;
    margin-left: 20px;
}

.design-feature li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.design-feature li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* 🖼️ Image Placeholder/Figure Styling (Modified) */
.henna-image {
    margin: 20px 0;
    text-align: center;
    overflow: hidden; /* To handle floating elements, if any */
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.henna-image img {
    /* Ensure image fills its container and is responsive */
    width: 100%; 
    max-height: 400px; /* Set a max height to prevent oversized images */
    height: auto;
    display: block;
    object-fit: cover; /* Ensures image covers area without distortion */
}

/* Call to Action Styling */
.call-to-action {
    text-align: center;
    padding: 40px 0;
    background-color: #fff9f6; /* Light, warm background */
    border-top: 3px solid var(--accent-color);
    margin-bottom: 0;
    border-radius: 0 0 8px 8px;
}

.call-to-action h2 {
    border-bottom: none;
    /* Updated h2 color for CTA to a more thematic green */
    color: var(--nature-green); 
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px 0;
    /* Used secondary color for the footer */
    background-color: darkgreen; 
    color: #fff;
    font-size: 0.8em;
    margin-top: 30px;
}

/* Remove the unused image placeholder styling from the original CSS */
/* .design-feature [data-image-tag] { ... } 
*/


/* Mobile Responsiveness (Minimal example) */
@media (max-width: 600px) {
    body {
        padding-top: 80px;
    }
    header h1 {
        font-size: 1.4em;
    }
    .blog-container {
        margin: 180px auto;
        padding: 0 10px;
        box-shadow: none;
    }
    h2 {
        font-size: 1.6em;
    }
}