:root {
    /* Couleurs principales */
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --primary-light: #66b3ff;
    --secondary-color: #6c757d;
    --secondary-dark: #545b62;
    --secondary-light: #adb5bd;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;

    /* Couleurs spécifiques */
    --text-color: #212529;
    --text-muted: #6c757d;
    --text-light: #ffffff;
    --heading-color: #343a40;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --border-color: #dee2e6;

    /* Typographie */
    --font-family-base: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-family-heading: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 0.875rem;
    /* 14px - Small text */
    --font-size-sm: 0.75rem;
    /* 12px */
    --font-size-lg: 1rem;
    /* 16px */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Espacements */
    --spacing-xs: 0.25rem;
    /* 4px */
    --spacing-sm: 0.5rem;
    /* 8px */
    --spacing-md: 1rem;
    /* 16px */
    --spacing-lg: 1.5rem;
    /* 24px */
    --spacing-xl: 2rem;
    /* 32px */
    --spacing-xxl: 3rem;
    /* 48px */

    /* Bordures */
    --border-width: 1px;
    --border-radius: 0.25rem;
    /* 4px */
    --border-radius-sm: 0.125rem;
    /* 2px */
    --border-radius-lg: 0.5rem;
    /* 8px */
    --border-radius-xl: 1rem;
    /* 16px */

    /* Ombres */
    --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --box-shadow-xl: 0 1rem 2rem rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;

    /* Navbar spécifique */
    --navbar-height: 70px;
    --navbar-bg: var(--bg-white);
    --navbar-text: var(--text-color);
    --navbar-link-hover: var(--primary-color);
    --navbar-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

    /* Footer spécifique */
    --footer-bg: var(--dark-color);
    --footer-text: var(--text-light);
    --footer-link-hover: var(--primary-light);
    --footer-border: rgba(255, 255, 255, 0.1);

    /* Breakpoints */
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;
}

/* Buttons */
.btn {
    padding: 0.375rem 0.75rem;
    /* Small buttons */
    font-size: var(--font-size-base);
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-base);
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: var(--font-size-sm);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    font-family: var(--font-family-heading);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

/* Paragraphs */
p {
    font-size: var(--font-size-base);
    color: var(--text-color);
    line-height: 1.6;
}