/* Variables CSS - Système de palettes pour le site de mariage */

:root {
    /* Olivier & Pierre claire (palette appliquée par défaut) */
    --primary-color: #8A9B68;
    --secondary-color: #E6D7B8;
    --accent-color: #F7F4ED;
    --text-color: #3D4A2E;
    --light-bg: #F7F4ED;
    --card-bg: #FFFFFF;
    
    /* Polices */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Espacements */
    --section-padding: 80px 20px;
    --container-max-width: 800px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.4s ease;
}

/* === PALETTES DE COULEURS === */

.palette-pierre-noble {
    --primary-color: #E8D5B7;
    --secondary-color: #A67C5A;
    --accent-color: #F7F4ED;
    --text-color: #4A3D2F;
    --light-bg: #F7F4ED;
    --card-bg: #FFFFFF;
}

.palette-pierre-doree {
    --primary-color: #D4A574;
    --secondary-color: #8B4B6B;
    --accent-color: #F8F5F0;
    --text-color: #4A3728;
    --light-bg: #F8F5F0;
    --card-bg: #FFFFFF;
}

.palette-olivier-pierre {
    --primary-color: #8A9B68;
    --secondary-color: #E6D7B8;
    --accent-color: #F7F4ED;
    --text-color: #3D4A2E;
    --light-bg: #F7F4ED;
    --card-bg: #FFFFFF;
}

.palette-lavande-provence {
    --primary-color: #9B7FB0;
    --secondary-color: #D4B5A0;
    --accent-color: #F5F2F7;
    --text-color: #4A3B52;
    --light-bg: #F5F2F7;
    --card-bg: #FFFFFF;
}

.palette-terre-cuite {
    --primary-color: #C67B5C;
    --secondary-color: #F2E6D9;
    --accent-color: #FAF7F3;
    --text-color: #5D3A28;
    --light-bg: #FAF7F3;
    --card-bg: #FFFFFF;
}

.palette-sauge-naturel {
    --primary-color: #7A8471;
    --secondary-color: #D2C5A2;
    --accent-color: #F4F2EC;
    --text-color: #3E4238;
    --light-bg: #F4F2EC;
    --card-bg: #FFFFFF;
}

.palette-champagne-elegance {
    --primary-color: #C9A96E;
    --secondary-color: #A67C8A;
    --accent-color: #F6F3EE;
    --text-color: #4D3E2A;
    --light-bg: #F6F3EE;
    --card-bg: #FFFFFF;
} 