.dress-code-section {
    padding: 100px 0; /* Grand espace pour séparer de la galerie et de la map */
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Georgia', serif;
}

.dc-title-img h2 {
    font-size: 2.5rem;
    color: #c05a33; /* Votre Terracotta */
    letter-spacing: 10px;
    border-bottom: 1px solid #c05a33;
    padding-bottom: 5px;
}

.dc-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5d3d2e;
    font-style: italic;
    margin-bottom: 40px;
    padding: 0 20px;
}

.dc-text strong {
    color: #c05a33;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* La rangée de couleurs */
.dc-circles {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.swatch {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* On retire les bordures et ombres pour un look plus "éditorial" */
.color-1 { background-color: #c05a33; } /* Terracotta principal */
.color-2 { background-color: #e5ccb6; } /* Beige */
.color-3 { background-color: #633a25; } /* Brun */
.color-4 { background-color: #9d503b; } /* Brique */
.color-5 { background-color: #8c4c36; } /* Ocre */

.swatch:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 600px) {
    .dress-code-section { padding: 60px 0; }
    .swatch { width: 35px; height: 35px; }
}