/*
 Theme Name:   CGIB Child
 Theme URI:    https://cgibinstitute.com/
 Description:  A premium child theme for Astra, customized for the Chartered Global Investment Banker (CGIB) Institute. Features custom layouts, high-performance CSS isolation, and cinematic animations.
 Author:       Cipher Stack Private Limited (Sachin Varma)
 Author URI:   https://cipher-stack.com
 Template:     astra
 Version:      1.0.3
 Text Domain:  cgib-child
*/

/* 
 * Global Child Theme Styles 
 * Note: Most styles are loaded conditionally via functions.php to ensure performance and isolation.
 */

:root {
    --cgib-gold: #c5a059;
    --cgib-gold-light: #d4af37;
    --cgib-gold-dark: #996515;
    --cgib-dark: #0a0a0a;
    --cgib-dark-accent: #111111;
    --cgib-white: #ffffff;
    --cgib-gray: #888888;
    --cgib-glass: rgba(255, 255, 255, 0.05);
    /* Adding standard spacing and radius tokens */
    --cgib-radius-sm: 4px;
    --cgib-radius-md: 8px;
    --cgib-radius-lg: 16px;
    --cgib-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets to prevent Astra/Elementor leaks into custom components */
.cgib-custom-component {
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cgib-custom-component * {
    box-sizing: inherit;
}