/* =========================================================
   MNE PREMIUM SINGLE TOUR 5.1
   DESIGN PREMIUM — H2 ROUTE
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

.mne5-tour-page,
.mne5-tour-page *,
.mne5-tour-page *::before,
.mne5-tour-page *::after {
    box-sizing: border-box;
}

.mne5-tour-page {
    width: 100%;
    color: #5f5b55;
    background: #fff;
}


/* =========================================================
   HERO
========================================================= */

.mne5-hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 650px;
    background: #29251f center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.mne5-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10,12,10,.08) 0%,
            rgba(10,12,10,.18) 35%,
            rgba(10,12,10,.88) 100%
        );
}

.mne5-hero-inner {
    position: relative;
    z-index: 2;

    width: min(1400px,100%);
    margin: auto;

    padding: 150px 35px 35px;
}


/* =========================================================
   BADGE
========================================================= */

.mne5-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;

    background: rgba(0,0,0,.42);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #fff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.mne5-badge i {
    color: #e1b56c;
}


/* =========================================================
   HERO TITLE
========================================================= */

.mne5-hero h1 {
    max-width: 1050px;

    margin: 18px 0 16px;

    color: #fff;

    font-size: clamp(38px,5vw,66px);
    line-height: 1.06;
    font-weight: 800;

    letter-spacing: -1.8px;
}


/* =========================================================
   ROUTE
========================================================= */

.mne5-route {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-bottom: 28px;

    color: #fff;

    font-size: 14px;
    font-weight: 700;
}

.mne5-route span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.mne5-route i {
    color: #e1b56c;
}


/* =========================================================
   INFO BAR
========================================================= */

.mne5-info-bar {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;

    overflow: hidden;

    background: rgba(0,0,0,.32);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.mne5-info-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px 20px;

    border-right: 1px solid rgba(255,255,255,.12);
}

.mne5-info-item:last-child {
    border-right: 0;
}

.mne5-info-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(225,181,108,.16);
    color: #e1b56c;
}

.mne5-info-item small {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,.55);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;

    text-transform: uppercase;
}

.mne5-info-item strong {
    display: block;

    color: #fff;

    font-size: 12px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.mne5-layout {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        360px;

    gap: 55px;

    width: min(1400px,100%);

    margin: auto;

    padding: 65px 35px 100px;
}


/* =========================================================
   CONTENT
========================================================= */

.mne5-content {
    min-width: 0;

    font-size: 16px;
    line-height: 1.85;
}

.mne5-content > p {
    margin: 0 0 22px;
}

.mne5-content strong {
    color: #282725;
}

.mne5-content a {
    color: #9b6b32;
}


/* =========================================================
   COMMON TITLES
========================================================= */

.mne5-content .mne5-h2-title,
.mne5-content .mne5-h3-title,
.mne5-content .mne5-included-title,
.mne5-content .mne5-excluded-title,
.mne5-content .mne5-faq-title {

    display: flex !important;

    align-items: center !important;

    gap: 13px !important;

    width: 100%;

    margin: 45px 0 18px !important;

    padding: 14px 17px !important;

    border-radius: 12px !important;

    font-weight: 800 !important;

    line-height: 1.3 !important;
}


/* =========================================================
   H2 — ROUTE
========================================================= */

.mne5-h2-title {

    position: relative;

    border: 1px solid #e4ddd0 !important;

    border-left: 4px solid #b8894c !important;

    background:
        linear-gradient(
            90deg,
            #faf7f1 0%,
            #fffdfa 55%,
            #ffffff 100%
        ) !important;

    color: #292724 !important;

    font-size: 26px !important;

    box-shadow:
        0 7px 24px rgba(50,40,25,.045);
}


/* =========================================================
   H2 — ROUTE ICON
========================================================= */

.mne5-h2-title::before {
    content: "\f4d7" !important;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    width: 40px;
    height: 40px;
    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #eee5d5;
    color: #a87535;

    font-size: 17px;
}


/* =========================================================
   H2 HOVER
========================================================= */

.mne5-h2-title {
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.mne5-h2-title:hover {

    border-left-color: #9e6d2f !important;

    box-shadow:
        0 10px 28px rgba(50,40,25,.07);

}


/* =========================================================
   H3 — LOCATION
========================================================= */

.mne5-h3-title {

    border: 1px solid #e3e9e5 !important;

    background:
        linear-gradient(
            90deg,
            #f5f9f6,
            #ffffff
        ) !important;

    color: #2d493b !important;

    font-size: 21px !important;
}

.mne5-h3-title::before {

    content: "\f3c5";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #e7f0ea;

    color: #367052;

    font-size: 14px;
}


/* =========================================================
   H3 CONTENT
   Tous les paragraphes regroupés sous le H3
========================================================= */

.mne5-h3-content {

    margin: 0 0 30px;

    padding: 21px 24px;

    border: 1px solid #e9e4dc;

    border-top: 3px solid #d6b77e;

    border-radius: 0 0 14px 14px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fcfbf8 100%
        );

    box-shadow:
        0 8px 24px rgba(35,30,20,.045);
}

.mne5-h3-content p {
    margin: 0 0 15px;
}

.mne5-h3-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   INCLUDED
========================================================= */

.mne5-included-title {

    border: 1px solid #d7eadb !important;

    background:
        linear-gradient(
            90deg,
            #eff8f1,
            #ffffff
        ) !important;

    color: #27603d !important;

    font-size: 20px !important;
}

.mne5-included-title::before {

    content: "\f00c";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dcefe1;

    color: #318052;
}


/* =========================================================
   INCLUDED LIST
========================================================= */

.mne5-content ul.mne5-included-list {

    list-style: none !important;

    margin: 0 0 32px !important;

    padding: 14px 18px !important;

    border-left: 4px solid #4f9b69;

    border-radius: 0 0 12px 12px;

    background: #fbfefb;
}

.mne5-content ul.mne5-included-list li {

    position: relative;

    padding: 7px 8px 7px 29px;

    color: #615d57;
}

.mne5-content ul.mne5-included-list li::before {

    content: "\f00c";

    position: absolute;

    left: 0;
    top: 9px;

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    color: #318052;
}


/* =========================================================
   EXCLUDED
========================================================= */

.mne5-excluded-title {

    border: 1px solid #f0d7d7 !important;

    background:
        linear-gradient(
            90deg,
            #fff3f3,
            #ffffff
        ) !important;

    color: #a33f3f !important;

    font-size: 20px !important;
}

.mne5-excluded-title::before {

    content: "\f00d";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f9dddd;

    color: #c24c4c;
}


/* =========================================================
   EXCLUDED LIST
========================================================= */

.mne5-content ul.mne5-excluded-list {

    list-style: none !important;

    margin: 0 0 32px !important;

    padding: 14px 18px !important;

    border-left: 4px solid #d26161;

    border-radius: 0 0 12px 12px;

    background: #fffafa;
}

.mne5-content ul.mne5-excluded-list li {

    position: relative;

    padding: 7px 8px 7px 29px;

    color: #615d57;
}

.mne5-content ul.mne5-excluded-list li::before {

    content: "\f00d";

    position: absolute;

    left: 0;
    top: 9px;

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    color: #c24c4c;
}


/* =========================================================
   FAQ TITLE
========================================================= */

.mne5-faq-title {

    border: 1px solid #e5dfd3 !important;

    background:
        linear-gradient(
            90deg,
            #faf8f3,
            #ffffff
        ) !important;

    color: #2b2925 !important;

    font-size: 23px !important;
}

.mne5-faq-title::before {

    content: "\f128";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #eee5d5;

    color: #a87535;
}


/* =========================================================
   FAQ LIST
========================================================= */

.mne5-faq-list {

    display: grid;

    gap: 10px;

    margin-bottom: 35px;
}

.mne5-faq-item {

    border: 1px solid #e5e0d8;

    border-radius: 13px;

    background: #fff;

    overflow: hidden;

    box-shadow:
        0 5px 18px rgba(30,25,20,.035);
}

.mne5-faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    gap: 11px;

    border: 0;

    background: #faf9f6;

    color: #2b2926;

    text-align: left;

    padding: 14px 16px;

    font: inherit;

    font-size: 15px;

    font-weight: 800;

    cursor: pointer;
}

.mne5-faq-q-icon {

    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #eee5d5;

    color: #a87535;
}

.mne5-faq-chevron {

    margin-left: auto;

    color: #a87535;

    transition: transform .2s ease;
}

.mne5-faq-question[aria-expanded="true"]
.mne5-faq-chevron {

    transform: rotate(180deg);
}

.mne5-faq-answer {

    background: #fff;
}

.mne5-faq-answer > div {

    padding: 15px 20px 18px;

    border-top: 1px solid #eee9e2;

    color: #66615a;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   SIDEBAR
========================================================= */

.mne5-sidebar {

    position: sticky;

    top: 25px;

    align-self: start;
}

.mne5-contact-card {

    padding: 23px;

    border: 1px solid #e4dfd7;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 16px 45px rgba(30,35,30,.075);
}


/* =========================================================
   CONTACT
========================================================= */

.mne5-contact-heading {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 17px;
}

.mne5-contact-icon {

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eef4f0;

    color: #2f6549;
}

.mne5-contact-heading small {

    display: block;

    color: #ae7c3d;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.mne5-contact-heading h2 {

    margin: 3px 0 0;

    font-size: 21px;

    line-height: 1.2;

    color: #292724;
}


/* =========================================================
   FORM
========================================================= */

.mne5-form-wrap {

    padding: 16px;

    border: 1px solid #e8e3db;

    border-radius: 12px;

    background: #faf9f6;
}

.mne5-form-wrap input:not([type=submit]),
.mne5-form-wrap textarea,
.mne5-form-wrap select {

    width: 100%;

    min-height: 44px;

    margin: 0 0 10px;

    padding: 10px 12px;

    border: 1px solid #d9d4cb;

    border-radius: 8px;

    background: #fff;

    color: #292724;

    font-size: 12px;
}

.mne5-form-wrap textarea {
    min-height: 110px;
}

.mne5-form-wrap input[type=submit] {

    width: 100%;

    min-height: 47px;

    border: 0;

    border-radius: 8px;

    background: #2d6549;

    color: #fff;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    cursor: pointer;

    transition: .2s;
}

.mne5-form-wrap input[type=submit]:hover {

    background: #234f39;

    transform: translateY(-1px);
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1100px) {

    .mne5-layout {

        grid-template-columns:
            minmax(0,1fr)
            320px;

        gap: 32px;

        padding-left: 25px;
        padding-right: 25px;
    }

    .mne5-hero-inner {

        padding-left: 25px;
        padding-right: 25px;
    }

    .mne5-info-item {
        padding: 15px;
    }

    .mne5-content {
        font-size: 15px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px) {

    .mne5-hero {

        width: 100%;

        max-width: 100%;

        margin-left: 0;

        min-height: 620px;
    }

    .mne5-hero-inner {

        padding: 95px 18px 18px;
    }

    .mne5-hero h1 {

        font-size: 35px;

        letter-spacing: -1px;
    }

    .mne5-info-bar {

        grid-template-columns: repeat(2,1fr);
    }

    .mne5-info-item:nth-child(2) {
        border-right: 0;
    }

    .mne5-info-item:nth-child(n+3) {

        border-top:
            1px solid rgba(255,255,255,.12);
    }

    .mne5-layout {

        display: flex;

        flex-direction: column;

        padding: 45px 18px 65px;

        gap: 42px;
    }

    .mne5-sidebar {

        position: static;

        width: 100%;
    }

    .mne5-content {

        font-size: 15px;
    }

    .mne5-h2-title {

        font-size: 22px !important;
    }

    .mne5-h3-title {

        font-size: 19px !important;
    }

    .mne5-h3-content {

        padding: 17px 18px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:480px) {

    .mne5-hero {

        min-height: 660px;
    }

    .mne5-hero-inner {

        padding: 70px 14px 14px;
    }

    .mne5-hero h1 {

        font-size: 30px;
    }

    .mne5-info-bar {

        grid-template-columns: 1fr;
    }

    .mne5-info-item {

        border-right: 0 !important;

        border-top:
            1px solid rgba(255,255,255,.12);
    }

    .mne5-info-item:first-child {

        border-top: 0;
    }

    .mne5-layout {

        padding-left: 12px;

        padding-right: 12px;
    }

    .mne5-h2-title {

        font-size: 20px !important;

        gap: 11px !important;

        padding: 12px 14px !important;
    }

    .mne5-h2-title::before {

        width: 36px;
        height: 36px;

        flex: 0 0 36px;

        font-size: 15px;
    }

    .mne5-h3-title {

        font-size: 18px !important;
    }

    .mne5-h3-content {

        padding: 15px;
    }

    .mne5-contact-card {

        padding: 17px;
    }

    .mne5-form-wrap {

        padding: 13px;
    }
}