/* ============================================
   CSS DÉDIÉ PAGE MARCHES
   ============================================ */

/* ===== BANNIÈRE IMAGES ===== */
.marches-banner {
    padding: 120px 60px 40px;
    background: #fff;
}

.marches-banner-content {
    max-width: 1600px;
    margin: 0 auto;
}

.marches-images-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.marches-image-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.marches-image-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.marches-image-item:hover img {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.marches-image-label {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #5a5a3a;
    letter-spacing: 0.3px;
}

/* ===== SECTION CONTENU PRINCIPAL ===== */
.marches-content-section {
    padding: 50px 60px 80px;
    background: #f8f8f8;
}

.marches-content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Colonne texte */
.marches-text-col {
    flex: 1;
    max-width: 550px;
}

.marches-description {
    margin-bottom: 35px;
}

.marches-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 15px 0;
}

.marches-description strong {
    font-weight: 600;
    color: #000;
}

.marches-btn {
    display: inline-block;
    background: #000;
    color: white;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.marches-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Colonne stats */
.marches-stats-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.marches-stats {
    display: flex;
    gap: 80px;
}

.marches-stat-item {
    text-align: center;
}

.marches-stat-number {
    font-size: 120px;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.marches-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== RESPONSIVE TABLETTE (1024px) ===== */
@media (max-width: 1024px) {
    .marches-banner {
        padding: 100px 40px 30px;
    }
    
    .marches-images-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .marches-content-section {
        padding: 40px 40px 80px;
    }
    
    .marches-content-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .marches-text-col {
        max-width: 100%;
    }
    
    .marches-text-col h1 {
        font-size: 42px;
    }
    
    .marches-stats-col {
        width: 100%;
        padding-top: 0;
    }
    
    .marches-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 30px;
    }
    
    .marches-stat-number {
        font-size: 60px;
    }
}

/* ===== RESPONSIVE MOBILE (768px) ===== */
@media (max-width: 768px) {
    .marches-banner {
        padding: 90px 20px 20px;
    }
    
    .marches-images-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .marches-image-label {
        font-size: 12px;
        margin-top: 10px;
    }
    
    .marches-content-section {
        padding: 30px 20px 60px;
    }
    
    .marches-content-wrapper {
        gap: 40px;
    }
    
    .marches-text-col h1 {
        font-size: 32px;
    }
    
    .marches-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .marches-description p {
        font-size: 15px;
    }
    
    .marches-btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }
    
    .marches-stats-col {
        justify-content: center;
    }
    
    .marches-stats {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
    }
    
    .marches-stat-item {
        text-align: center;
    }
    
    .marches-stat-number {
        font-size: 36px;
    }
    
    .marches-stat-label {
        font-size: 10px;
    }
}

/* ===== SECTION HABILLAGE ESCALIERS ===== */
.marches-habillage-section {
    padding: 80px 60px;
    background: #f8f8f8;
}

.marches-habillage-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: center;
}

.marches-habillage-text {
    padding-right: 20px;
}

.marches-habillage-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.marches-habillage-text p:last-of-type {
    margin-bottom: 35px;
}

.marches-habillage-text strong {
    font-weight: 600;
    color: #000;
}

.marches-nuancier-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.marches-nuancier-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.marches-habillage-image {
    width: 100%;
    max-width: 500px;
    justify-self: end;
}

.marches-habillage-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== SECTION NORMES PMR ===== */
.marches-normes-section {
    padding: 80px 60px;
    background: #fff;
}

.marches-normes-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.marches-normes-image {
    width: 100%;
}

.marches-normes-image img {
    width: 100%;
    height: auto;
    display: block;
}

.marches-normes-text {
    padding-top: 0;
}

.marches-normes-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
    margin-left: -30px;
}

.marches-normes-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.marches-normes-diagram {
    width: 100%;
    max-width: 500px;
}

.marches-normes-diagram img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
    padding-top: 1%;
}

/* Responsive normes section */
@media (max-width: 1024px) {
    .marches-normes-content {
        gap: 40px;
    }
    
    .marches-normes-text h2 {
        font-size: 28px;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .marches-normes-section {
        padding: 60px 20px;
    }
    
    .marches-normes-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .marches-normes-text {
        text-align: center;
    }
    
    .marches-normes-text h2 {
        font-size: 24px;
        margin-left: 0;
    }
    
    .marches-normes-text p {
        text-align: center;
    }
    
    .marches-normes-diagram {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .marches-normes-diagram img {
        height: auto;
        padding-top: 0;
    }
}

/* Responsive habillage */
@media (max-width: 1024px) {
    .marches-habillage-section {
        padding: 60px 40px;
    }
    
    .marches-habillage-content {
        gap: 40px;
    }
    
    .marches-habillage-text {
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .marches-habillage-section {
        padding: 50px 20px;
    }
    
    .marches-habillage-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .marches-habillage-text {
        padding-right: 0;
        order: 1;
        text-align: center;
    }
    
    .marches-habillage-image {
        order: 2;
        justify-self: center;
    }
    
    .marches-habillage-text p {
        font-size: 15px;
    }
    
    .marches-nuancier-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== SECTION FAQ ===== */
.marches-faq-section {
    padding: clamp(2rem, 4vw, 4rem) clamp(3rem, 5vw, 5rem);
    background: #f5f5f5;
}

.marches-faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

.marches-faq-item {
    border-top: 1px solid #ddd;
}

.marches-faq-item:last-child {
    border-bottom: 1px solid #ddd;
}

.marches-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.marches-faq-question span:first-child {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 500;
    color: #333;
}

.marches-faq-icon {
    font-size: 1.3rem;
    color: #999;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.marches-faq-item.open .marches-faq-icon {
    transform: rotate(45deg);
}

.marches-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.marches-faq-item.open .marches-faq-answer {
    max-height: 800px;
    padding-bottom: 1.5rem;
}

.marches-faq-answer p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 0.6rem 0;
}

.marches-doc-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.marches-doc-link:hover {
    color: #000;
    text-decoration: underline;
}

