 /* Reset and Base Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: #7d5a5a;
    transition: color 0.3s ease;
}

a:hover {
    color: #614646;
}

img {    
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Main Hero Banner */
.article-hero {
    height: 500px;
    overflow: hidden;
    background-image: url('../img/blogherobg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 40px;
}



/* 2nd Blog */
.article-hero-black-cat{
    height: 500px;
    overflow: hidden;
    background-image: url('../img/ladyandlunahero.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: fixed;
    position: relative;
    margin-bottom: 40px;
} 

/* 2nd Blog */
.article-hero-petals-of-healing{
    height: 500px;
    overflow: hidden;
    background-image: url('../img/petalsblogbg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: fixed;
    position: relative;
    margin-bottom: 40px;
} 

.article-hero-inside-out {
    height: 500px;    
    overflow: hidden;
    background-image: url('../img/insideoutbg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: fixed;
    position: relative;
    margin-bottom: 40px;
}

.article-hero-courage-to-be-me {
    height: 500px;    
    overflow: hidden;
    background-image: url('../img/couragetobemebloghero.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: fixed;
    position: relative;
    margin-bottom: 40px;
}


.article-hero-choose-yourself {
    height: 500px;    
    overflow: hidden;
    background-image: url('../img/whatitlookslike.svg');
    background-repeat: no-repeat;
    background-size: cover;    
    background-position: fixed;
    position: relative;
    margin-bottom: 40px;
}


.article-hero-bees {
    height: 600px;    
    overflow: hidden; 
    background-image: url('../img/sacredbeesarticlecover.webp');
    background-repeat: no-repeat;
    background-size: cover;    
    background-position: fixed;
    position: relative;
    margin-bottom: 40px;
}

.article-hero-dream-healing {
    height: 600px;    
    overflow: hidden;
    background-image: url('../img/dream-healing-hero1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: fixed;
    position: relative;
    margin-bottom: 40px;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(171, 168, 168, 0.183), rgba(76, 75, 75, 0.6));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.article-hero-content {
    max-width: 800px;
    color: #fff;
}

.article-hero-content h1 {
    color: #eae9e5;
    font-size: 48px;
    margin-top: 25px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.article-hero-content h2 {
    color: #eae9e5;
    font-size: 32px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.article-meta span {
    margin: 0 15px;
    display: flex;
    justify-content: space-between;
    gap: 6px;
    align-items: center;
}

.article-meta i {
    margin-right: 5px;
}

/* Article Content */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.article-body {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body h2 {
    font-size: 28px;
    color: #614646;
    margin: 40px 0 20px;
}

.article-body h3 {
    font-size: 24px;
    color: #7d5a5a;
    margin: 30px 0 18px;
}

.article-body ul, .article-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 4px solid #7d5a5a;
    padding: 15px 25px;
    background-color: #f9f6f6;
    margin: 30px 0;
    font-style: italic;
    color: #614646;
}

.article-img {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

/* Author Box */
.author-box {
    display: flex;
    align-items: center;
    background-color: #f9f6f6;
    border-radius: 8px;
    padding: 30px;
    margin-top: 50px;
}

.author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 25px;
    flex-shrink: 0;
}

.author-bio h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #614646;
}

.author-bio p {
    color: #666;
    margin-bottom: 15px;
}

.author-social a {
    margin-right: 15px;
    color: #7d5a5a;
    font-size: 18px;
}

/* Share Buttons */
.share-buttons {
    margin-top: 40px;
    text-align: center;
}

.share-buttons h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #614646;
}

.share-links {
    display: flex;
    justify-content: center;
}

.share-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #7d5a5a;
    color: #fff;
    border-radius: 50%;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.share-links a:hover {
    background-color: #614646;
}

/* Related Posts */
.related-posts {
    margin: 60px 0;
}

.related-posts h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #614646;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.related-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.related-card-img {
    height: 200px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.related-card-content {
    padding: 25px;
}

.related-card-date {
    color: #7d5a5a;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.related-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #614646;
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: #7d5a5a;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #614646;
    color: #fff;
}

/* Comment Section */
.comments-section {
    margin-bottom: 60px;
}

.comments-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #614646;
}

.comment-form {
    margin-bottom: 40px;
}

.comment-form-group {
    margin-bottom: 20px;
}

.comment-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #614646;
}

.comment-form-group input,
.comment-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.comment-form-group textarea {
    height: 150px;
    resize: vertical;
}

.comment-submit {
    padding: 12px 25px;
    background-color: #7d5a5a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-submit:hover {
    background-color: #614646;
}

/* Quote Banner */
.quote-banner {
    background-color: #614646;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin: 60px 0;
}

.quote-banner blockquote {
    font-size: 28px;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 20px;
}

.quote-banner cite {
    font-size: 18px;
    font-style: normal;
}

/* Newsletter */
.newsletter {
    background-color: #f5f0f0;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #614646;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #7d5a5a;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 12px 25px;
    background-color: #7d5a5a;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #614646;
}

