/*
Theme Name: MariaTheme
Theme URI: https://yourwebsite.com/
Author: Your Name
Author URI: https://yourwebsite.com/
Description: A WordPress theme for a news website.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: MariaTheme
*/


/*single blog content style start*/

.post-content {
    color: #777;
    /* Light gray text */
    line-height: 1.8;
    /* Improves paragraph spacing */
    font-size: 14px;
    /* Slightly larger for better readability */
    font-weight: 300;
    /* Light font weight */
}

.post-content p {
    margin-bottom: 15px;
    /* Adds space between paragraphs */
}

strong {
    font-weight: 500;
    font-size: 25px !important;
}


/*single blog content style end*/

*/
/*about page start*/

b {
    color: #FF7575;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.text-justify {
    text-align: justify;
}


/* Rounded Thumbnail */

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}


/* Rounded Thumbnail */

.thumbnailsmall {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    align-self: flex-start;
    /* Aligns the thumbnail at the top */
}


/* Experience Section Styling */

.experience-item {
    display: flex;
    align-items: center;
    gap: 20px;
    /* Space between image and title */
    margin-bottom: 20px;
}

.sub-role {
    padding-left: 100px;
    /* Indentation for hierarchy */
}

.custom-hr {
    border: none;
    /* Removes default styling */
    height: 2px;
    /* Adjust thickness */
    background-color: #FF7575;
    /* Change color (dark gray) */
    margin: 20px 0;
    /* Adjust spacing */
}


/* button */

.credential-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* Space between text and icon */
    padding: 10px 20px;
    border: 1px solid #FF7575;
    /* Primary color border */
    border-radius: 50px;
    /* Oval shape */
    background-color: transparent;
    color: #FF7575;
    /* Primary text color */
    font-weight: light;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.credential-btn:hover {
    background-color: #FF7575;
    /* Primary color fill */
    color: #fff;
    /* White text on hover */
}


/*About page end*/

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-img-top {
    height: 200px;
    /* Adjust as needed */
    object-fit: cover;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    flex-grow: 0;
}

.card-text {
    flex-grow: 1;
}

.btn-primary {
    margin-top: auto;
}

.large-thumbnail {
    height: 250px;
    /* Adjust as needed */
    object-fit: cover;
    width: 100%;
}

.search-container {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    width: 0;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    margin-right: 10px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.search-container.expanded .search-input {
    width: 200px;
    /* Adjust width as needed */
    opacity: 1;
}

.search-blog-btn {
    display: none;
    margin-left: 10px;
}

.search-container.expanded .search-blog-btn {
    display: inline-block;
}

.search-container .search-icon {
    cursor: pointer;
}


/* Hide search icon after expansion */

.search-container.expanded .search-icon {
    display: none;
}


/* Post Thumbnail Styling */

.post-thumbnail {
    height: 435px;
    overflow: hidden;
    position: relative;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Profile Section */

.profile-header {
    background-color: #f8f9fa;
    padding: 10px 20px;
    margin-bottom: 15px;
}

.profile-container {
    position: relative;
    margin-bottom: 20px;
}

.profile-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border: 5px solid #fff;
}

.profile-overlay {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    position: relative;
}

.profile-name {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.profile-description {
    font-size: 14px;
    color: #666;
}


/* front page */


/* slider section Styling */

.post-thumbnail {
    height: 435px;
    overflow: hidden;
    position: relative;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Profile Section */

.owl-carousel .position-relative {
    height: 435px;
}

.owl-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
}

.overlay .text-white {
    color: white !important;
}

.overlay .h2 {
    font-weight: bold;
}


/* profile section home */

.profile-container {
    position: relative;
    margin-bottom: 1rem;
}

.profile-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border: 5px solid #fff;
}

.profile-overlay {
    position: relative;
    background-color: #f8f9fa;
    padding: 1rem;
}


/* profile section end */