/* ============================================
   VARIABLES CSS - Design System
   ============================================ */

:root {
    /* Couleurs principales */
    --primary: #aa3a4c;
    --primary-soft: #ab737c;
    --primary-light: #d4a5ad;

    /* Couleurs de texte */
    --text-dark: #4a4a4a;
    --text-light: #7a7a7a;
    --text-gray: #999;

    /* Couleurs de fond */
    --bg-body: #faf0e6;
    --bg-white: #ffffff;
    --bg-light: #fff5f0;

    /* Couleurs d'accent */
    --accent-gold: #c4a484;
    --white: #ffffff;
    --valentine-primary: #e91e63;
    --valentine-soft: #f8bbd0;

    /* Typographie */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Great Vibes', cursive;

    /* Espacements */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 80px;

    /* Bordures */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-full: 50%;

    /* Ombres */
    --shadow-soft: 0 10px 30px rgba(171, 115, 124, 0.15);
    --shadow-medium: 0 15px 35px rgba(171, 115, 124, 0.25);
    --shadow-strong: 0 20px 40px rgba(171, 115, 124, 0.35);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index layers */
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-header: 1000;
    --z-modal: 5000;
    --z-chatbot: 10000;
}

/* ============================================
   RESET & BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-body);
}

/* ============================================
   TYPOGRAPHIE
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* ============================================
   UTILITAIRES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.bg-light {
    background-color: var(--bg-light);
}

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

/* Divider élégant entre sections */
.section-padding:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(171, 115, 124, 0.3), transparent);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .section-padding {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 15px;
    }
}