/**
Theme Name: EMPEERYAL
Author: Paul Peery
Author URI: https://empeeryal.com
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: empeeryal
Template: astra
*/

.comments-area #wp-comment-fc-consent {
    margin-right: 10px;
}

/* --- EMPEERYAL SALES PAGE STYLES --- */

:root {
    --emp-bg: #0d1117;       /* GitHub Dark Background */
    --emp-card: #161b22;     /* Card Background */
    --emp-border: #30363d;   /* Subtle Border */
    --emp-primary: #8A2BE2;  /* Violet Brand Color */
    --emp-text-main: #ffffff;
    --emp-text-muted: #8b949e;
}

/* 1. Page Background Wrapper */
.emp-sales-page {
    background-color: var(--emp-bg);
    color: var(--emp-text-main);
    font-family: 'Inter', sans-serif; /* Astra usually loads system fonts, this is safe */
}

/* 2. Hero Section Gradient */
.emp-hero-section {
    background: radial-gradient(circle at 50% 0%, #1f1e2e 0%, var(--emp-bg) 70%);
    padding-top: 80px !important;
    padding-bottom: 60px !important;
}

/* 3. Text Gradient Effect (Add class 'emp-gradient-text' to Heading block) */
.emp-gradient-text {
    background: linear-gradient(135deg, #a78bfa 0%, #2dd4bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block; /* Required for gradient text on some browsers */
}

/* 4. Feature Cards (Add class 'emp-feature-card' to a Group block) */
.emp-feature-card {
    background-color: var(--emp-card);
    border: 1px solid var(--emp-border);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.2s ease, border-color 0.2s ease;
    height: 100%;
}

.emp-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--emp-primary);
}

.emp-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.emp-feature-card p {
    color: var(--emp-text-muted);
    font-size: 0.95rem;
}

/* 5. Pricing Card (Add class 'emp-pricing-card' to a Group block) */
.emp-pricing-card {
    background: linear-gradient(180deg, var(--emp-card) 0%, #0d1117 100%);
    border: 2px solid var(--emp-primary);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 6. Glowing Button (Add class 'emp-glow-btn' to Button block) */
.wp-block-button.emp-glow-btn .wp-block-button__link {
    background-color: var(--emp-primary);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.wp-block-button.emp-glow-btn .wp-block-button__link:hover {
    box-shadow: 0 0 35px rgba(138, 43, 226, 0.6);
    transform: translateY(-2px);
}