/* ============================================
   INSPIREUS GLOBAL DESIGN SYSTEM
   ============================================ */

/* Import Alata Font */
@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');

/* CSS Variables */
:root {
    /* Brand Colors */
    --primary: #0A7C6E;
    --primary-hover: #086356;
    --primary-light: #E6F3F1;
    --secondary: #F59E0B;
    --secondary-hover: #D98A09;
    --accent: #FF6B35;
    --accent-hover: #E55A2B;
    --background: #FAFAFA;
    --white: #FFFFFF;
    
    /* Neutral Colors */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-family: 'Alata', sans-serif;
    --font-size-body: 16px;
    --font-size-small: 14px;
    --font-size-nav: 15px;
    --font-size-button: 15px;
    --font-size-description: 16px;
    --font-size-category-title: 20px;
    --font-size-tool-title: 18px;
    --font-size-h1: 42px;
    --font-size-h2: 32px;
    --font-size-h3: 24px;
    --font-size-h4: 20px;
    --font-size-footer: 14px;
    --line-height: 1.6;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    
    /* Spacing */
    --border-radius: 16px;
    --container-width: 1200px;
    --card-padding: 24px;
    --section-gap: 80px;
    --grid-gap: 24px;
    --button-height: 48px;
    --input-height: 52px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-body);
    line-height: var(--line-height);
    font-weight: var(--font-weight-regular);
    color: var(--gray-800);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    color: var(--gray-900);
    margin-bottom: 16px;
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }

p {
    margin-bottom: 16px;
    color: var(--gray-600);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Spacing */
.section {
    padding: var(--section-gap) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Brand Colors */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }