/*
Theme Name: AJS Training Child Theme
Theme URI: https://elementor.com/products/hello-biz/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-biz
Author: Daniel
Description: Hello Biz is a free, user-friendly Hybrid WordPress Theme that was crafted for seamless integration with the Elementor site builder and tailored specifically for business websites. Perfect for beginners, but far from limited to just them, it features a dedicated beginner-oriented “Home” screen to simplify and streamline the web-building process. Hello Biz also integrates with Elementor’s premium features, giving you access to tools like AI, and accessibility enhancements in one place. Whether launching a startup site or refining a company portfolio, Hello Biz offers a solid, responsive foundation for all web creators. Report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team validates, triages, and handles vulnerabilities. Report here: https://patchstack.com/database/wordpress/theme/hello-biz/vdp.
Tags: flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready,style-variations
Version: 1.1.1.1756467372
Updated: 2025-08-29 13:36:12

*/

/* Link Text AJS Buttons */
.link-text-ajs-btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 12px 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Primary Button */
.link-text-ajs-btn--primary {
    color: #2563eb; /* Adjust to your brand color */
    font-size: 1.125rem; /* 18px - slightly larger */
}

.link-text-ajs-btn--primary::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    left: 0;
    background: #2563eb;
    transition: width 0.3s ease;
}

.link-text-ajs-btn--primary:hover {
    color: #1d4ed8;
    transform: translateY(-1px);
}

.link-text-ajs-btn--primary:hover::after {
    width: 100%;
}

/* Secondary Button */
.link-text-ajs-btn--secondary {
    color: #6b7280;
    font-size: 1rem; /* 16px */
}

.link-text-ajs-btn--secondary::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 8px;
    left: 0;
    background: #6b7280;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.link-text-ajs-btn--secondary:hover {
    color: #374151;
    transform: translateY(-1px);
}

.link-text-ajs-btn--secondary:hover::after {
    transform: scaleX(1);
}

/* Subtle Button */
.link-text-ajs-btn--subtle {
    color: #9ca3af;
    font-size: 0.875rem; /* 14px */
}

.link-text-ajs-btn--subtle:hover {
    color: #6b7280;
    transform: translateX(4px);
}

/* Arrow Button (with icon) */
.link-text-ajs-btn--arrow {
    color: #374151;
    font-size: 1rem;
}

.link-text-ajs-btn--arrow::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.link-text-ajs-btn--arrow:hover {
    color: #111827;
}

.link-text-ajs-btn--arrow:hover::after {
    transform: translateX(4px);
}

/* Focus states for accessibility */
.link-text-ajs-btn:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Active state */
.link-text-ajs-btn:active {
    transform: translateY(0);
}

