/* Variables CSS et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-warm: #C17A4F;
    --warm-brown: #8B5A3C;
    --warm-beige: #D4A574;
    --warm-orange: #E8956B;
    --warm-light: #F5E6D3;
    --dark-gray: #222222;
    --medium-gray: #717171;
    --light-gray: #FFF8F0;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-gray);
    line-height: 1.7;
    background: var(--light-gray);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-24 {
    margin-bottom: 24px;
}

.mt-48 {
    margin-top: 48px;
}