/* Style général de la page */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FAF8F5;
    color: #2D2D2D;
    margin: 0;
}

/* En-tête de la page */
.header-categories {
    background: #1A1A1A;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.container-header {
    max-width: 1400px;
    margin: auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-luxe {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #C9A961;
    letter-spacing: 3px;
}

/* Navigation */
.nav-menu a {
    margin-left: 25px;
    text-decoration: none;
    font-size: 14px;
    color: #FAF8F5;
    letter-spacing: 1px;
}

.nav-menu .active {
    color: #C9A961;
}

/* Bloc d’introduction */
.section-intro {
    text-align: center;
    padding: 80px 30px 40px;
}

.titre-page {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    color: #1A1A1A;
}

.intro-text {
    font-size: 16px;
    margin-top: 10px;
    color: #666;
}

/* Grille des catégories */
.grid-categories {
    max-width: 1400px;
    margin: auto;
    padding: 50px 40px 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.bloc-categorie {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform .3s ease;
}

.bloc-categorie:hover {
    transform: translateY(-8px);
}

.image-categorie {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.categorie-info {
    padding: 25px;
    text-align: center;
}

.nom-categorie {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #1A1A1A;
    margin-bottom: 15px;
}

/* Bouton */
.btn-decouvrir {
    display: inline-block;
    text-decoration: none;
    padding: 10px 30px;
    border: 2px solid #C9A961;
    color: #1A1A1A;
    letter-spacing: 1px;
    transition: .3s;
}

.btn-decouvrir:hover {
    background: #C9A961;
    color: #1A1A1A;
}
