/*
Theme Name: PAT Business School Theme
Theme URI: https://pat.edu.eu
Description: Child theme for Hello Elementor with custom mega menu, footer, and page shortcodes
Author: DevOpera
Author URI: https://devopera.ie
Template: hello-elementor
Version: 1.0.0
Text Domain: pat-theme
*/

/* 
 * ===========================================
 * CSS VARIABLES (Global)
 * ===========================================
 * These variables are available across all shortcodes
 */
:root {
    /* Primary Brand Colors */
    --pat-primary: rgb(8, 87, 102);
    --pat-primary-light: rgb(12, 118, 138);
    --pat-primary-dark: rgb(5, 65, 77);
    
    /* Neutral Colors */
    --pat-text: #1a1a2e;
    --pat-text-light: #64748b;
    --pat-bg: #ffffff;
    --pat-bg-alt: #f8fafc;
    --pat-bg-page: #f5f5f7;
    --pat-border: #e2e8f0;
    
    /* Dark Theme (Footer) */
    --pat-slate-dark: #1e293b;
    --pat-slate-light: #94a3b8;
    
    /* Shadows & Transitions */
    --pat-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --pat-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --pat-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --pat-radius-sm: 8px;
    --pat-radius-md: 12px;
    --pat-radius-lg: 16px;
    --pat-radius-xl: 20px;
}

/* 
 * ===========================================
 * BASE STYLES
 * ===========================================
 */
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--pat-text);
    background: var(--pat-bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove default list styles */
ul, ol {
    list-style: none;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}
