/* Variables CSS globales */
:root {
    --orange-primary: #FF6B35;
    --orange-dark: #D85A2E;
    --blue-primary: #004E89;
    --blue-dark: #003D6B;
    --yellow-accent: #FFD23F;
    --cream: #FFF8E7;
    --gray-dark: #2D3142;
    --green-success: #06D6A0;
    --red-error: #EF476F;
}

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles de base du body */
body {
    font-family: 'Rubik', sans-serif;
    color: var(--gray-dark);
    background: var(--cream);
    line-height: 1.6;
}

/* Styles des liens */
a {
    color: inherit;
    text-decoration: none;
}

/* Styles des listes */
ul, ol {
    list-style: none;
}

/* Styles des boutons de base */
button {
    font-family: inherit;
    cursor: pointer;
}

/* Styles des inputs de base */
input, select, textarea {
    font-family: inherit;
}

/* Utilitaires de texte */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Utilitaires de marge */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Utilitaires de padding */
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Utilitaires de couleur */
.text-orange { color: var(--orange-primary); }
.text-blue { color: var(--blue-primary); }
.text-yellow { color: var(--yellow-accent); }
.text-error { color: var(--red-error); }
.text-success { color: var(--green-success); }

.bg-orange { background-color: var(--orange-primary); }
.bg-blue { background-color: var(--blue-primary); }
.bg-cream { background-color: var(--cream); }
