/*
Theme Name: My Custom Theme
Theme URI: http://example.com/my-custom-theme
Description: A custom WordPress theme built from HTML and CSS
Version: 1.0
Author: Your Name
Author URI: http://example.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --blue: #0d6efd;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #d63384;
    --red: #dc3545;
    --light-pink: #fcd5d5;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #198754;
    --teal: #20c997;
    --cyan: #0dcaf0;
    --dark: #000000;
    --white: #ffffff;
    --gradient-blue-dark-primary: linear-gradient(-20deg, #616161 0%, #9bc5c3 100%);
}

.container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
}

.bg-image {
    background-position: center;
    background: #fff8f8 url('images/rectangle-bg-image.png') repeat left top/cover;
}

.repeat {
    background-repeat: repeat;
}

.no-repeat {
    background-repeat: no-repeat;
}

h1 {
    color: var(--red);
    background: url(images/heading-icon.png) no-repeat left center;
    text-transform: capitalize;
    padding-left: 60px;
    padding-bottom: 5px;
    background-position: 0px center;
}

h1 span {
    border-bottom: 2px solid var(--light-pink);
}

.search-bar-container {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    border-radius: 30px;
}

.search-bar-container input {
    width: 100%;
    height: 50px;
    font-size: 18px;
    padding: 10px;
    border-radius: 25px 0px 0px 25px !important;
    border: 1px solid #ccc;
}

.search-bar-container button {
    width: 100px !important;
    border-radius: 0px 25px 25px 0 !important;
}

.bi::before,
[class*=" bi-"]::before,
[class^=bi-]::before {
    position: relative;
    top: 1px;
}


.card-blog {
    margin-bottom: 25px;
    /* background-image: var(--gradient-blue-dark-primary); */
    color: var(--red);
}

.card-blog .card-image {
    padding: 15px;
    border-radius: 15px;
    position: relative;
    top: -35px;
}

.card-blog .card-image img {
    object-fit: cover;
}

.card-blog .author {
    position: absolute;
    bottom: -20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    color: var(--white);
    font-size: 14px;
    padding: 5px;
}

.card-blog .author .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid var(--white);
}

.card-blog .author a {
    padding: 5px;
    text-decoration: none;
    color: var(--dark);
}

.card-blog .stats {
    display: flex;
    align-items: center;
    background-color: var(--dark);
    padding: 5px;
    border-radius: 15px;
    margin-top: 5px;
}

.card-blog .card-caption a {
    color: var(--red);
    position: relative;
    top: -20px;
    text-decoration: none;
    font-size: 1.2rem;
}



.card-custom .card {
    border-radius: 5px;
    border: 1px solid #ddd;
}

.card-custom .card-title a {
    color: #0d6efd;
    text-decoration: none;
}


.card-custom>.card:hover {
    background-color: #ddd;
}





.tags-cloud .badge {
    font-weight: 500;
    padding: 15px 20px;
    font-size: 18px;
    display: inline-block;
    margin: 5px;
    border-radius: 15px;
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    color: var(--dark);
    text-decoration: none;
}

.tags-cloud .badge:hover {
    transform: scale(1.1);
}