/* Styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header .logo h1 {
    margin-bottom: 10px;
}

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

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Section héros */
.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #ecf0f1;
}

/* Produits luxe */
.produits-luxe {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.produit {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    width: 250px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.produit img {
    width: 100%;
    border-radius: 8px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: #fff;
    margin-top: 20px;
}

footer .social a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

footer .social a:hover {
    text-decoration: underline;
}

/* Réactivité pour mobile */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
    
    .produits-phares {
        flex-direction: column;
        align-items: center;
    }
    
    .produit {
        width: 80%;
    }
}

