/**
 * Theme Name: Spectra One
 * Author: Brainstorm Force
 * Author URI: https://brainstormforce.com/
 * Description: Spectra One is a beautiful and modern WordPress theme built with the Full Site Editing (FSE) feature. It's a versatile theme that can be used for blogs, portfolios, businesses, and more. Spectra One comes with a sleek and professional design that will make your website stand out from the crowd.
 * Requires at least: 6.1
 * Tested up to: 6.4
 * Requires PHP: 7.4
 * Version: 1.0.8
 * License: GNU General Public License v2 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: spectra-one
 * Tags: full-site-editing, blog, theme-options, translation-ready, rtl-language-support, full-width-template
*/

/* Grayscale effect for photos */
.pbPhoto,
.pbPhoto img,
.pbPhoto source,
.pbPhoto .wp-block-getwid-banner__image,
.pbPhoto .wp-block-getwid-banner__source {
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
    transition: filter 0.3s ease;
}

/* Optional: remove grayscale on hover */
.pbPhoto:hover,
.pbPhoto:hover img,
.pbPhoto:hover source,
.pbPhoto:hover .wp-block-getwid-banner__image,
.pbPhoto:hover .wp-block-getwid-banner__source {
    filter: grayscale(0%) !important;
    -webkit-filter: grayscale(0%) !important;
}

/* Pill/badge style for tag class */
.tag,
.tag .wp-block-getwid-advanced-heading__content {
    display: inline-block;
    background: #22c55e;
    color: white;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Toggle forms - show/hide */
.form-content {
    display: none;
}

.form-content.active {
    display: block;
}