/*
Theme Name:     HelloBiz Child
Theme URI:      https://yourwebsite.com/
Description:    Child theme for the HelloBiz WordPress theme.
Author:         Your Name
Author URI:     https://yourwebsite.com/
Template:       hello-biz
Version:        1.0.0
*/

/* Import parent theme styles */
@import url("../hello-biz/style.css");

body {
    margin: 0 !important;
    font-family: 'Poppins', sans-serif !important;
    background-color: #1F181E !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    overflow-x: hidden !important;
    color: #8D80AC !important;
    text-transform: lowercase;
}
.page-content.asdasds img.wp-post-image {
    border-radius: 30px !important;
}
textarea#comment {
	background-color: #131113;
}
.post {
  transition: box-shadow 0.3s ease;
}

.post:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.post img {
  width: 100%;
  height: auto;
  display: block;
}

.entry-title a {
  text-decoration: none;
}

.read-more {
  background-color: #007bff;
  color: #fff;
  padding: 5px 12px;
  text-decoration: none;
  border-radius: 3px;
  display: inline-block;
}
.widget {
  background: #131113;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.widget-title {
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 1px solid #2c282c;
  padding-bottom: 5px;
  color: #fff;
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget ul li {
  margin-bottom: 8px;
}

.widget ul li a {
  color: #8D80AC;
  text-decoration: none;
  font-size: 14px;
}

.widget ul li a:hover {
  color: #007bff;
}
.read-more:hover {
    background-color: #0056b3;
    color: #fff;
}
article.post {
    position: relative;
    overflow: hidden;
    border-radius: 20px !important;
}
article.post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(240,240,240,0) 0%, #2a3237 100%);
    z-index: 0;
    transition: background 0.5s ease;
    opacity: 1;
}

article.post:hover::before {
    background: linear-gradient(180deg, rgba(240,240,240,0) 0%, #251652 100%);
}

.CustomTittleSec {
    position: absolute;
    bottom:20px;
    padding: 0 30px;
    width: 100%;
    z-index: 1;
}
.CustomTittleSec h2 a{
    color: #8D80AC;
}
.CustomTittleSec .btn-primary {
    color: #fff;
    background-color: #8D80AC;
    border-color: #8D80AC;
}
h3.wp-block-heading {
    font-weight: 600 !important;
}
