/* ========================================
   Summary: Root Variables
   ======================================== */
:root {
    /* Couleurs principales */
    --primary-color: peachpuff;
    --secondary-color: #fcbf49;
    --dark-color: #1e1e1e;
    --light-color: #f8f8f8;

    /* Couleurs supplémentaires */
    --accent-color: peachpuff;
    --link-hover-color: #ffc8a2;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --text-on-accent: #121212;
    --border-color: #383838;
    --border-color-light: #4f4f4f;

    /* Arrière-plans */
    --bg-surface: #1e1e1e;
    --bg-main: #121212;
    --card-bg: rgba(255, 255, 255, 0.05);
    --header-bg: #2c2c2c;

    /* Typographie */
    --font-family-body: 'Open Sans', sans-serif;
    --font-family-title: 'Lora', serif;

    /* Autres */
    --transition: all 0.3s ease-in-out;
    --spacing-unit: 1rem;
    --border-radius: 5px;
}

/* ========================================
   Summary: Reset and Box Model
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================================
   Summary: Base Body Styles
   ======================================== */
body {
    font-family: var(--font-family-body);
    background-color: var(--dark-color);
    line-height: 1.6;
    color: var(--text-color);
}

/* ========================================
   Summary: Headings
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-title);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

h1 {
    font-weight: 700;
    font-size: 2.5rem;
}

h2 {
    font-weight: 700;
    font-size: 2rem;
}

/* ========================================
   Summary: Paragraphs
   ======================================== */
p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ========================================
   Summary: Links
   ======================================== */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}
