/*
Theme Name: Baristo
Theme URI: https://smartdemo.digital4design.com/baristo
Author: sandeepkamra87
Author URI: https://smartdemo.digital4design.com
Description: A basic custom theme.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: baristo
Copyright: © 2026 sandeepkamra87
Tags: blog, custom-logo, custom-menu, featured-images, threaded-comments
*/
body {
    margin: 0;
}
html {
  scroll-behavior: smooth;
}

a { color: #0073aa; }

/* Paragraph style */
.is-style-fancy-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    background: #f9f9f9;
    padding: 15px;
    border-left: 4px solid #0073aa;
}

/* Image style */
.is-style-rounded-images img {
    border-radius: 100px;
    background-color: red;
}

.custom-logo {
    max-height: 60px;
    width: auto;
}

.header-banner {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.tags li {
    background: #f1f1f1;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* .sidebar {
} */


.widget-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.page-numbers {
    padding: 8px 12px;
    background: #eee;
    border-radius: 6px;
}
.page-numbers.current {
    background: #000;
    color: #fff;
}

/* Caption container */
.wp-caption {
    max-width: 100%;
    margin: 1em 0;
    text-align: center;
}

/* Image inside caption */
.wp-caption img {
    width: 100%;
    height: auto;
    display: block;
}

/* Caption text */
.wp-caption-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5em;
}

/* Alignment support */
.alignleft {
    float: left;
    margin-right: 1em;
}

.alignright {
    float: right;
    margin-left: 1em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-block-image figcaption {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}
/* Sticky post */
.sticky {
    border: 2px solid #000;
    padding: 1em;
    background-color: #f9f9f9;
}
/* Gallery caption */
.gallery-caption {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 0.5em;
}
/* Author comment */
/* .bypostauthor {
    border-left: 4px solid #0073aa;
    padding-left: 1em;
    background-color: #f5faff;
} */

/* Screen reader text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Show when focused (keyboard users) */
.screen-reader-text:focus {
    clip: auto;
    display: block;
    height: auto;
    width: auto;
    position: static;
    background-color: #f1f1f1;
    color: #000;
    padding: 10px;
    z-index: 100000; /* Above everything */
}