﻿/* ========================================
   PAGE PROMOTIONS/ACTUALITÉS - CARPRO
   ======================================== */

/* Header */
.promo-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #64b22a;
}

.promo-title {
    color: #2c3e50;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-subtitle {
    color: #7f8c8d;
    margin-top: 10px;
    font-size: 16px;
}

/* Image principale */
.promo-image-card {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

    .promo-image-card:hover {
        /*        transform: translateY(-5px);*/
        box-shadow: 0 12px 40px rgba(100, 178, 42, 0.2);
    }

.promo-image-main {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

/* Action cards */
.action-card {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .action-card:hover {
/*        transform: translateY(-5px);*/
        border-color: #64b22a;
        box-shadow: 0 8px 30px rgba(100, 178, 42, 0.2);
    }

.action-card-header {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

    .action-card-header .mud-icon-root {
        font-size: 60px !important;
    }

.action-card-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Section title */
.section-title {
    color: #2c3e50;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #64b22a;
    margin-bottom: 30px;
}

/* Promo cards */
.promo-card {
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .promo-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .promo-card .mud-card-media {
        background: linear-gradient(135deg, #f8f9fa 0%, #e0e0e0 100%);
    }

    .promo-card .mud-card-content {
        flex: 1;
    }

/* Avantages */
.avantages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 20px;
    border-radius: 12px;
    margin-top: 60px;
}

.avantage-card {
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

    .avantage-card:hover {
        transform: translateY(-10px);
        border-color: #64b22a;
        background: white;
        box-shadow: 0 8px 30px rgba(100, 178, 42, 0.2);
    }

.avantage-icon {
    margin-bottom: 20px;
}

    .avantage-icon .mud-icon-root {
        font-size: 60px !important;
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-header,
.promo-image-card,
.action-card,
.promo-card,
.avantage-card {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive */
@media (max-width: 960px) {
    .promo-title {
        font-size: 28px;
        flex-direction: column;
    }

        .promo-title .mud-icon-root {
            margin-bottom: 10px;
        }

    .action-card {
        padding: 20px;
    }

    .avantages-section {
        padding: 40px 15px;
    }
}

@media (max-width: 600px) {
    .promo-header {
        margin-bottom: 20px;
    }

    .promo-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
        flex-direction: column;
    }
}
