/* Container pour centrer le contenu */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header */
.main-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo { height: 100px; }

/* Hero Section */
.hero {
    position: relative;
    height: 200px;
    background-image: url('/images/fondMarche.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content { position: relative; z-index: 2; }

.hero h1 { font-size: 55px; line-height: 0.9; margin-bottom: 20px; }

/* La Carte */
.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.card img{ position:relative; float:left; }

.card-badge h4{text-align: center;}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mt-spacer { margin-top: 60px; }
.py-main { padding-top: 50px; padding-bottom: 50px; }

.btn-more{
    
    text-align: center;
    display: inline-block;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: var(--mauze-yellow);
    color: var(--mauze-ardoise);
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.plusInfo:hover {
    background-color: var(--mauze-ardoise);
    color: var(--mauze-yellow);

}
.extra-content {
    padding: 15px;
    background: #f9f9f9;
    border-left: 3px solid var(--mauze-yellow);
    margin-top: 10px;
    animation: fadeIn 0.4s ease; /* Petit effet d'apparition */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
