/* ===== BASE ===== */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: 	#fbf3ea;
    color: #2f1e14;
}

/* ===== HEADER ===== */
.header-concours {
    background-color: #8c5d3f;
    color: white;
    padding: 30px 0;
    text-align: center;
    border-bottom: 4px solid #6e3d27;
}

.titre-page {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}

.nav-principale {
    margin-top: 10px;
}

.lien-nav {
    background-color: #6d4c41;
    color: white;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.lien-nav:hover {
    background-color: #5b382f;
}

/* ===== SECTION CONCOURS ===== */
.contenu-concours {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.titre-section {
    font-size: 32px;
    text-align: center;
    color: #402419;
    margin-bottom: 30px;
    position: relative;
}

.titre-section::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    margin: 12px auto 0;
    background-color: #c9a47d;
    border-radius: 5px;
}

/* ===== CARTE CONCOURS ===== */
.fiche-concours {
    background-color: #fdf7ec;
    border: 2px solid 	#fef8f4;
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.fiche-concours:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}


.contenu-global {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Image à gauche */
.bloc-image {
    flex: 1 1 35%;
}

.bloc-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Texte à droite */
.bloc-contenu {
    flex: 1 1 60%;
}

.bloc-contenu h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #5e4035;
    position: relative;
    display: inline-block;
}
.bloc-contenu h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #a97852; /* ou une couleur nude/dorée */
    border-radius: 2px;
}

.theme {
    font-style: italic;
    font-size: 16px;
    color: #8c5d3f;
    margin-bottom: 8px;
}

.dates {
    background-color: #f5e5d6;
    padding: 6px 14px;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    color: #4b2f24;
    margin-bottom: 10px;
}
.description {
    font-size: 16px;
    line-height: 1.7;
    color: #3c2a21;
    margin-top: 12px;
    padding: 0;
    border: none;
    background: transparent;
}


/* ===== MESSAGE COMMUNAUTÉ ===== */
.bandeau-communaute {
    background-color: #f0e3d6;
 
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 12px;
}

.bandeau-communaute h4 {
    font-size: 18px;
    color: #5e3e30;
    margin-bottom: 8px;
}

.bandeau-communaute p {
    font-size: 15px;
    line-height: 1.5;
}

/* ===== MINI-GALERIE DES ŒUVRES ===== */
.mini-galerie {
    margin-top: 25px;
    text-align: center;
}

.titre-galerie {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #4e3228;
}

.galerie-ligne {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.carte-oeuvre {
    background-color: #fff;
    border-radius: 14px;
    padding: 10px;
    width: 180px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.carte-oeuvre img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.carte-oeuvre:hover {
    transform: scale(1.04);
}

/* ===== BOUTON VOTER ===== */
.btn-voter {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background-color: #8c5d3f;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-voter:hover {
    background-color: #703e28;
}
.btn-voter, .btn-gagnant {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
}

.btn-voter {
    background-color: #e8d6c2;
    color: #4a2c2a;
    border: 1px solid #bfa590;
}

.btn-gagnant {
    background-color: #dbc081;
    color: #3c2e1f;
    border: 1px solid #a48b58;
}
