/*
Theme Name: Heavenly Blog
Theme URI: https://theheavenlyslumber.com/
Author: Roshan
Description: Minimal custom blog theme for Heavenly Slumber with responsive design and sidebar.
Version: 1.0
*/

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: #613a8c;
}
a:hover {
    color: #f6cb6d;
}

p {
        letter-spacing: 1px;
    line-height: 27px;
}
}

.text-primary {
    color: #613a8c;
}

.header nav > ul > li {
    height: 63px;
}

.content-wrapper {
    padding-top: 20px;
}

.cookieadmin_re_consent {
    display: none;
}


.foter_bg {
    background-image: url(https://theheavenlyslumber.com/images/heavenly/mattress_texture.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}
.blog-card-content {
    padding: 15px;
}
.blog-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #613a8c;
}
.blog-card-title:hover {
    color: #f6cb6d;
}
.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #f6cb6d;
    color: #000;
    border-radius: 5px;
    transition: 0.3s;
}
.read-more:hover {
    background: #613a8c;
    color: #fff;
}

/* Sidebar */
.blog-sidebar {
    padding-left: 20px;
}
.sidebar-widget {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.sidebar-widget .widget-title {
    color: #613a8c;
    font-weight: bold;
    border-left: 4px solid #f6cb6d;
    padding-left: 10px;
    margin-bottom: 15px;
}
.sidebar-widget ul {
    list-style: none;
    padding: 0;
}
.sidebar-widget ul li {
    margin-bottom: 10px;
}
.sidebar-widget ul li a {
    color: #333;
    text-decoration: none;
}
.sidebar-widget ul li a:hover {
    color: #613a8c;
}

/* Single Post */
.single-post-title {
    color: #613a8c;
    font-size: 28px;
    font-weight: bold;
    margin-top: 20px;
}
.single-post-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.comment-form input[type=submit] {
    background: #f6cb6d;
    color: #000;
    border: none;
    cursor: pointer;
}
.comment-form input[type=submit]:hover {
    background: #613a8c;
    color: #fff;
}


.header.style-1 > .content-wrapper {
    padding: 19px 54px;
}