/*
 * Feuille de style personnalisée pour le site Marché aux Puces de Jonquières.
 * Ce fichier regroupe des ajustements visuels complétant Bootstrap.
 */

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Section héroïque avec image de fond et texte superposé */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.45);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.25rem;
}

/* Section titres */
.section-title {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: #2c3e50;
}

/* Galerie responsive */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Cartes actualités */
.news-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #e3e3e3;
    border-radius: 0.5rem;
    background-color: #fafafa;
}
.news-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.news-item .date {
    color: #888;
    font-size: 0.875rem;
}

/* Formulaires */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}

/* Admin table overrides (if needed) */
.table-actions {
    display: flex;
    gap: 0.5rem;
}