/*
 Theme Name:   ByFocus
 Theme URI:    https://byfocus.space
 Description:  Craft pixel-perfect websites from strategy to code. No templates, no AI — just handbuilt, conversion-driven web design for businesses that care about quality.
 Author:       ByFocus
 Author URI:   https://byfocus.space
 Template:     bricks
 Version:      1.0.4
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  bricks
 Copyright (c) 2026 ByFocus. All rights reserved.
 This software is released under the GPLv2 license.
*/

/* Shimmer Animation */
@keyframes shimmer {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}

/* Strong Pulse Animation (Blue) */
@keyframes strongPulseBlue {
0% { box-shadow: 0 0 0 0 rgba(29, 78, 216, 0.7); }
70% { box-shadow: 0 0 0 12px rgba(29, 78, 216, 0); }
100% { box-shadow: 0 0 0 0 rgba(29, 78, 216, 0); }
}

/* Button Class */
.button-effect {
background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 25%, #60a5fa 50%, #3b82f6 75%, #1d4ed8 100%);
background-size: 200% 100%;
animation: shimmer 3s infinite linear, strongPulseBlue 1.5s infinite;
border: none;
color: white;
}