/* Couleurs et typographie de base */
:root {
    --couleur-principale: #8e44ad; /* Violet élégant */
    --couleur-secondaire: #f39c12; /* Or / Jaune chaleureux */
    --fond-clair: #f9f9f9;
    --texte: #333333;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--texte);
    line-height: 1.6;
}

/* En-tête */
header {
    background-color: white;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: var(--couleur-principale);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--texte);
    font-weight: 400;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--couleur-principale);
}

/* Section Héro */
.hero {
    background: linear-gradient(135deg, rgba(142,68,173,0.1) 0%, rgba(243,156,18,0.1) 100%);
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--couleur-principale);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    background-color: var(--couleur-principale);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #732d91;
}

/* Sections communes */
section {
    padding: 80px 20px;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    color: var(--couleur-principale);
    margin-bottom: 30px;
}

.concept p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Grille de créations */
.creations {
    background-color: var(--fond-clair);
}

.grid-produits {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.carte-produit {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.carte-produit:hover {
    transform: translateY(-5px);
}

.image-placeholder {
    background-color: #e0e0e0;
    height: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    margin-bottom: 15px;
}

/* Pied de page */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer h2 {
    color: white;
}

footer p {
    margin-bottom: 10px;
}