/*
Theme Name:     Briliant Prane
Theme URI:      n/a
Template:       kadence
Author:         Algera BG
Author URI:     https://algerabg.com/
Description:    Custom theme for Briliant Prane 
Version:        1.0.1
License:        GNU General Public License v3.0 (or later)
License URI:    https://www.gnu.org/licenses/gpl-3.0.html
*/

:root {
    --brl-green:         #009846;
	--brl-green-dark:    #058f32;
    --brl-green-light:   #eefaef;
    --brl-green-trans:   rgb(49 255 0 / 10%);
    --brl-green-trans-20:   rgb(49 255 0 / 20%);
    --brl-green-trans-30:   rgb(49 255 0 / 30%);
    --brl-green-trans-40:   rgb(49 255 0 / 40%);
	
    --brl-primary-light:  #eff6ff;
    --brl-success:        #059669;
    --brl-success-light:  #d1fae5;
    --brl-text:           #111827;
    --brl-text-muted:     #6b7280;
    --brl-border:         #e5e7eb;
    --brl-border-light:   #f3f4f6;
    --brl-bg:             #ffffff;
    --brl-bg-soft:        #f9fafb;
    --brl-danger:         #dc2626;
    --brl-radius:         12px;
    --brl-radius-sm:      8px;
    --brl-shadow:         0 4px 16px rgba(0,0,0,.06);
    --brl-shadow-lg:      0 10px 30px rgba(26,86,219,.12);
}



/*** Lift Columns - use .lift-columns class **/
/* Lift-up hover effect for Kadence columns */
.lift-columns .wp-block-kadence-column .kt-inside-inner-col {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
/*     border-radius: 30px; */
	border: 1px solid #EDF2F7;
	cursor: pointer;
}

.lift-columns .wp-block-kadence-column:hover .kt-inside-inner-col {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/*** Footer Clamping ***/
.footer-clamp-title a {
    font-size: clamp(0.95rem, 0.7rem + 0.8vw, 1.4rem);
    text-decoration: none;
    font-weight: 600;
    color: #000;
}