/*
Theme Name: Ikreate FSE
Theme URI: https://ikreatethemes.com/wordpress-theme/full-site-editing-wordpress-theme/
Author: ikreatethemes
Author URI: https://ikreatethemes.com/
Description: Ikreate FSE is a fast, clean, and powerful Full Site Editing WordPress theme designed for modern business websites. With full support for block-based editing, you can customize every part of your site—including headers, footers, templates, and global styles—directly in the Site Editor, without writing any code. The theme includes 35+ pre-designed block patterns and multiple ready-to-use templates, allowing you to create unique layouts in minutes. Whether you need a homepage, about page, services section, testimonials, or call-to-action, everything is ready to drag, drop, and personalize. Ikreate FSE is fully responsive, cross-browser compatible, SEO-friendly, RTL-ready, translation-ready, and speed-optimized—ensuring smooth performance across all devices and platforms. With Global Styles, you can manage colors, typography, and spacing site-wide for a consistent and professional design. If you encounter any issues while using our theme, please refer to our theme documentation or contact our friendly support staff at [https://ikreatethemes.com/support/].
Version: 1.1.1
Requires at least: 5.9
Tested up to: 6.8
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: ikreate-fse
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/** Section Title **/
.super-title {
    line-height: 1;
    color: var(--wp--preset--color--secondary);
    position: relative;
}
.super-title:before,
.super-title:after {
    content: "";
    height: 2px;
    width: 25px;
    position: absolute;
    background-color: var(--wp--preset--color--secondary);
    top: 8px;
}
.super-title:before {
    right: calc(100% + 20px);
    background-image: -webkit-gradient(linear, right top, left top, from(var(--wp--preset--color--secondary)), color-stop(130%, transparent));
    background-image: -o-linear-gradient(right, var(--wp--preset--color--secondary), transparent 130%);
    background-image: linear-gradient(to left, var(--wp--preset--color--secondary), transparent 130%);
    background-color: transparent;
}
.super-title:after {
    left: calc(100% + 20px);
    background-image: -webkit-gradient(linear, left top, right top, from(var(--wp--preset--color--secondary)), color-stop(130%, transparent));
    background-image: -o-linear-gradient(left, var(--wp--preset--color--secondary), transparent 130%);
    background-image: linear-gradient(to right, var(--wp--preset--color--secondary), transparent 130%);
    background-color: transparent;
}
.text-left.super-title:before {
    display: none;
}
.text-right.super-title:after {
    display: none;
}

/** How it Works **/
.how_it_works .step_block .step_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}
.how_it_works .step_block .step_item:last-child {
    margin-bottom: 0;
}
.how_it_works .step_block .step_item::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    width: 6px;
    height: calc(100% + 100px);
    background-color: var(--wp--preset--color--primary);
}
.how_it_works .step_block .step_item:first-child::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background-color: var(--wp--preset--color--primary);
    border-radius: 15px;
}
.how_it_works .step_block .step_item:first-child::before {
    top: 0;
}
.how_it_works .step_block .step_item:last-child::before {
    height: 50%;
    top: 0;
}
.how_it_works .step_block .step_item:nth-child(2n) {
    flex-direction: row-reverse;
}
.how_it_works .step_block .step_item .step_number {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 100%;
    background: var(--wp--preset--color--white);
    border: 5px solid var(--wp--preset--color--primary);
}
.how_it_works .step_number h2 {
    color: var(--wp--preset--color--primary);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--wp--preset--color--primary);
    border-radius: 100%;
}
@keyframes ripples {
    to {
        box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.2), 0 0 0 32px rgba(255, 255, 255, 0.2), 0 0 0 48px rgba(255, 255, 255, 0.2), 0 0 0 64px rgba(255, 255, 255, 0);
    }
}

/** Button **/
.wp-block-button.is-style-outline .wp-block-button__link:hover{
    border-color: var(--wp--preset--color--secondary);
    color: var(--wp--preset--color--secondary);
    -webkit-box-shadow: 0px 3px 24px 0px 3px 24px rgba(var(--wp--preset--color--primary), 0.2);
    box-shadow: 0px 3px 24px rgba(var(--wp--preset--color--primary), 0.2);
}

.footer-header{
    margin: 0;
}

/** Contact Form **/
input:focus,
textarea:focus{
    outline: none;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--wp--preset--color--secondary);
    border-radius: 8px;
    width: 96%;
    font-size: 18px;
    padding: 12px;
    margin-bottom: 5px;
}
.contactform textarea {
    height: 70px;
}
.contactform input[type="submit"]{ 
    width: 100%;
    padding: 16px 35px;
    background-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--white);
    font-size: 18px;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
}
.wpcf7-spinner {
    position: absolute;
    top: 50%;
    right: 45%;
}
.wpcf7 form .wpcf7-response-output {
    margin: 10px;
}