/* Variables de couleurs */
:root {
    --color-primary: #8b7355; /* Marron terre */
    --color-secondary: #a8c090; /* Vert doux */
    --color-accent: #d4c5b9; /* Beige clair */
    --color-text: #4a4a4a; /* Gris foncé */
    --color-background: #faf7f2; /* Beige très clair */
}

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

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
    min-height: 100vh;  
    justify-content: space-between;
}

/* Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    position: relative;
    max-width: 1200px;
    height: 3rem;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--color-secondary);
}

/* Conteneur général */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Titres */
h2 {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

/* Footer */
footer {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Featured Creations */
.featured-creations-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.featured-creation-item {
    flex: 1 1 300px;
    box-sizing: border-box;
}
