/* =========================
   PAGE ACCUEIL - BANDEAU MRC
========================= */

.Mrc-strip {
    width: 100%;
    background: #dadada;
    padding: 14px 20px;
    overflow: hidden;
}

.Mrc-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
}

.Mrc-text {
    text-align: center;
    color: #111;
}

@media (max-width: 768px) {
    .Mrc-container {
        flex-direction: column;
        gap: 10px;
    }
}


/* =========================
   PAGE ACCUEIL - HERO
========================= */

/* Même fond pour Top tendances que le reste de la page */
.top-tendances,
.home-center-content .top-tendances,
.top-tendances-slider,
.slider-container,
.carousel-container {
    background: #f4f4f4 !important;
}

.hero {
    min-height: 620px;
    background:
            linear-gradient(rgba(8, 18, 55, 0.58), rgba(8, 18, 55, 0.58)),
            url("../image/Horizontal-boutique.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-content {
    color: white;
    max-width: 950px;
}

.hero-content h1 {
    font-size: 72px;
    margin-bottom: 14px;
    font-weight: 800;
}

.hero-content h1 span {
    display: inline-block;
    color: #f7c400;
    animation: mrcTombe 1.2s ease-out forwards;
}

@keyframes mrcTombe {
    0% {
        transform: translateY(-150px);
        opacity: 0;
    }

    65% {
        transform: translateY(12px);
        opacity: 1;
    }

    82% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-content .hero-date {
    margin-top: 28px;
    font-size: 34px;
    font-weight: 800;
    color: #f7c400;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);

    opacity: 0;
    animation: heroDateArriveDroite 1s ease-out forwards;
    animation-delay: 1.4s;
}

@keyframes heroDateArriveDroite {
    from {
        opacity: 0;
        transform: translateX(220px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content h2,
.hero-content p,
.hero-content .hero-btn {
    opacity: 0;
    animation: apparitionHero 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes apparitionHero {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btn {
    display: inline-block;
    margin-top: 5px;
    padding: 14px 28px;
    background: #f7c400;
    color: white;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.2s ease;
}

.hero-btn:hover {
    background: #f7c400;
}

@media (max-width: 700px) {
    .hero {
        min-height: 520px;
        padding: 45px 18px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-content .hero-date {
        font-size: 22px;
        margin-top: 20px;
    }
}


/* =========================
   PAGE ACCUEIL - NOTRE TRAVAIL
========================= */

.work-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 24px;
}

.work-section h2 {
    font-size: 30px;
    margin-bottom: 24px;
    color: #f7c400;
    text-align: center;
}

.work-box {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.work-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.work-card {
    text-align: center;
    padding: 10px 8px;
}

.work-icon {
    width: 72px;
    height: 72px;
    border: 2px solid #1f2c3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #1f2c3a;
    font-size: 28px;
}

.work-card h3 {
    font-size: 20px;
    color: #1f1f1f;
    margin-bottom: 12px;
    line-height: 1.4;
}

.work-card p {
    font-size: 15px;
    color: #1f2c3a;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .work-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .work-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .work-box {
        padding: 28px 20px;
    }

    .work-cards {
        grid-template-columns: 1fr;
    }

    .work-card h3 {
        font-size: 18px;
    }
}


/* =========================
   PAGE ACCUEIL - FACEBOOK
========================= */

.facebook-sidebar-title {
    text-align: center;
    margin-bottom: 100px;
}

.facebook-sidebar-title span {
    display: inline-block;
    background: #f7c400;
    color: #111;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.facebook-sidebar-title h3 {
    font-size: 22px;
    color: #111;
    margin: 0;
}

.facebook-left-box {
    width: 500px;
    min-height: 100%;
    background: white;
    border-radius: 0 18px 18px 0;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    border-top: 5px solid #f7c400;
    display: flex;
    flex-direction: column;
}

.facebook-frame-crop {
    width: 100%;
    height: 650px;
    overflow: hidden;
    border-radius: 12px;
}

.facebook-frame-crop iframe {
    width: 500px;
    height: 900px;
    border: none;
    pointer-events: none;
}

.facebook-open-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 90%;
    align-self: center;

    margin-top: auto;
    margin-bottom: auto;

    text-align: center;
    background: #f7c400;
    color: #111;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: 800;
}

.home-white-with-facebook {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 55px 24px 55px 0;
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 45px;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .home-white-with-facebook {
        grid-template-columns: 1fr;
        padding: 45px 20px;
    }

    .facebook-left-box {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        border-radius: 18px;
    }

    .facebook-frame-crop iframe {
        width: 500px;
        max-width: 100%;
    }
}

/* =========================
   CORRECTION ACCUEIL MOBILE
========================= */

@media (max-width: 700px) {
    .Mrc-strip,
    .hero,
    .work-section,
    .home-white-with-facebook {
        width: 100%;
        max-width: 100%;
    }

    .hero {
        min-height: 430px;
        padding: 45px 16px;
        background-position: center;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.05;
        word-break: normal;
    }

    .hero-content h2 {
        font-size: 21px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.4;
    }

    .hero-btn {
        font-size: 14px;
        padding: 11px 18px;
    }

    .Mrc-strip {
        padding: 14px 18px;
    }

    .Mrc-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .work-section {
        margin: 35px auto;
        padding: 0 16px;
    }

    .work-box {
        width: 100%;
        padding: 26px 18px;
    }

    .home-white-with-facebook {
        display: block;
        padding: 35px 16px;
    }

    .facebook-left-box {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 18px;
        padding: 14px;
    }

    .facebook-sidebar-title {
        margin-bottom: 22px;
    }

    .facebook-frame-crop {
        height: 520px;
    }

    .facebook-frame-crop iframe {
        width: 100%;
        max-width: 100%;
    }
}