:root {
    --color-background: #F6F1EB; /* Crème chaud */
    --color-primary-accent: #6B4C8B; /* Violet profond */
    --color-secondary-accent: #D9B44A; /* Or léger */
    --color-text-dark: #3d3d3d;
    --color-text-light: #FFFFFF;
    --color-footer-bg: #2C3E50; /* Bleu nuit profond */
    --color-violet-light: #A186C0; /* Violet clair */
    --color-sage-green: #A3B18A; /* Sauge */

    /* Polices */
    --font-serif: "Cormorant Garamond", serif;
    --font-sans-serif: "Libre Baskerville", serif; /* Libre Baskerville is a serif font but used for body text */
    --font-script: "Satisfy", cursive;

    /* Z-Indexes */
    --z-index-header: 10;
    --z-index-menu: 100;
    --z-index-menu-toggle: 101;
}

body {
    background-color: var(--color-background);
    color: var(--color-text-dark);
    font-family: var(--font-sans-serif);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    /* Sticky footer setup */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Ensure the main content expands to fill available space */
.site-main {
    flex: 1 0 auto;
}

/* Ensure footer doesn't shrink */
.site-footer {
    flex-shrink: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-primary-accent);
    font-weight: 700;
}

a {
    color: var(--color-primary-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary-accent);
}
