/* ========================================
   CSS Variables - Website SMP Negeri 5 Pagentan
   ======================================== */

:root {
    /* Primary Colors */
    --color-primary: #136ad5;
    --color-primary-dark: #0d4fa3;
    --color-primary-light: rgba(19, 106, 213, 0.1);
    
    /* Success Colors */
    --color-success: #13d571;
    --color-success-dark: #0e834e;
    --color-success-light: rgba(19, 213, 113, 0.1);
    
    /* Neutral Colors */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray: #666666;
    --color-gray-light: #f5f7fa;
    --color-gray-dark: #333333;
    
    /* Background Colors */
    --bg-primary-light: rgba(150, 155, 161, 0.05);
    --bg-secondary-light: rgba(19, 106, 213, 0.05);
    
    /* Spacing */
    --spacing-xs: 10px;
    --spacing-sm: 15px;
    --spacing-md: 30px;
    --spacing-lg: 45px;
    --spacing-xl: 80px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 7px;
    --radius-lg: 30px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-default: 0.3s all ease;
    --transition-fast: 0.2s all ease;
    --transition-slow: 0.5s all ease;
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
    
    /* Font Families */
    --font-primary: "Inter", sans-serif;
    --font-heading: "Display Playfair", serif;
    
    /* Font Sizes */
    --font-xs: 11px;
    --font-sm: 14px;
    --font-base: 16px;
    --font-lg: 18px;
    --font-xl: 20px;
    --font-2xl: 25px;
    --font-3xl: 35px;
    --font-4xl: 45px;
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.4;
    --line-height-relaxed: 1.6;
    
    /* Z-index */
    --z-dropdown: 999;
    --z-sticky: 1000;
    --z-modal: 9999;
    --z-overlay: 7100;
    --z-loader: 7700;
    
    /* Container */
    --container-max-width: 1200px;
    
    /* Breakpoints (for reference in media queries) */
    --breakpoint-xs: 576px;
    --breakpoint-sm: 768px;
    --breakpoint-md: 992px;
    --breakpoint-lg: 1200px;
}
