/* ==========================================================
   NORTHEAST VOYAGERS
   COMPACT TOUR ITINERARY
   ========================================================== */

.nv-tour-itinerary {

    width: 100%;

    padding: 55px 0 70px;

    background: #f6f8f6;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    color: #174f31;
}


.nv-tour-itinerary-container {

    width: 92%;

    max-width: 1060px;

    margin: 0 auto;
}


/* ==========================================================
   PACKAGE HEADER
   ========================================================== */

.nv-tour-header {

    text-align: center;

    margin-bottom: 38px;
}


.nv-tour-brand {

    display: block;

    margin-bottom: 5px;

    color: #f56845;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


.nv-tour-header h1 {

    margin: 0;

    color: #174f31;

    font-size: 31px;

    line-height: 1.25;

    font-weight: 700;
}


.nv-tour-header h1 strong {

    color: #f56845;

    font-weight: 700;
}


.nv-tour-header h2 {

    margin: 6px 0 0;

    color: #34483b;

    font-size: 11px;

    line-height: 1.5;

    font-weight: 600;

    letter-spacing: 0.8px;
}


.nv-tour-header-line {

    width: 48px;

    height: 3px;

    margin: 14px auto 14px;

    background: #f56845;

    border-radius: 3px;
}


.nv-tour-header p {

    margin: 0 auto;

    color: #7a837d;

    font-size: 12px;

    line-height: 1.6;
}


/* ==========================================================
   DAY LIST
   ========================================================== */

.nv-day-list {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


/* ==========================================================
   DAY ITEM
   ========================================================== */

.nv-day-item {

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dfe5e1;

    border-radius: 4px;

    box-shadow:
        0 4px 12px rgba(23,79,49,0.06);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.nv-day-item:hover {

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(23,79,49,0.09);
}


/* ==========================================================
   DAY HEADER
   ========================================================== */

.nv-day-heading {

    min-height: 54px;

    display: grid;

    grid-template-columns:
        54px 1fr;

    background: #174f31;

    color: #ffffff;
}


/* ==========================================================
   DAY NUMBER
   ========================================================== */

.nv-day-number {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #f56845;

    color: #ffffff;
}


.nv-day-number span {

    margin-bottom: 1px;

    font-size: 10px;

    line-height: 1;

    font-weight: 700;
}


.nv-day-number strong {

    font-size: 21px;

    line-height: 1;

    font-weight: 800;
}


/* ==========================================================
   DAY TITLE
   ========================================================== */

.nv-day-title {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 0 18px;
}


.nv-day-title i {

    color: #f56845;

    font-size: 14px;
}


.nv-day-title h3 {

    margin: 0;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.3;

    font-weight: 700;
}


/* ==========================================================
   DAY BODY
   ========================================================== */

.nv-day-body {

    min-height: 70px;

    display: grid;

    grid-template-columns:
        54px 1fr;
}


/* ==========================================================
   TIMELINE
   ========================================================== */

.nv-day-timeline {

    position: relative;

    display: flex;

    justify-content: center;
}


.nv-day-timeline::before {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    width: 2px;

    background: #f56845;

    opacity: 0.8;
}


.nv-day-timeline span {

    position: absolute;

    top: 14px;

    width: 8px;

    height: 8px;

    background: #f56845;

    border-radius: 50%;

    z-index: 2;
}


/* ==========================================================
   TEXT
   ========================================================== */

.nv-day-text {

    padding: 13px 20px 15px 8px;
}


.nv-day-text p {

    margin: 0;

    color: #68736c;

    font-size: 14px;

    line-height: 1.7;
}


/* ==========================================================
   ACTION BAR
   ========================================================== */

.nv-tour-action-bar {

    margin-top: 12px;

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    background: #174f31;

    border-radius: 4px;

    box-shadow:
        0 5px 15px rgba(23,79,49,0.10);
}


/* ==========================================================
   ACTION BUTTONS
   ========================================================== */

.nv-tour-action-bar a {

    height: 31px;

    padding: 0 14px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border-radius: 2px;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        all 0.2s ease;
}


.nv-tour-action-bar i {

    font-size: 12px;
}


/* Book */

.nv-book-tour {

    background: #f56845;

    color: #ffffff;
}


.nv-book-tour:hover {

    background: #ffffff;

    color: #174f31;

    text-decoration: none;
}


/* Call */

.nv-call-tour {

    background: transparent;

    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.65);
}


.nv-call-tour:hover {

    background: #ffffff;

    color: #174f31;

    border-color: #ffffff;

    text-decoration: none;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 800px) {

    .nv-tour-itinerary {

        padding: 45px 0 65px;
    }


    .nv-tour-header h1 {

        font-size: 28px;
    }


    .nv-day-title h3 {

        font-size: 14px;
    }


    .nv-day-text p {

        font-size: 12px;

        line-height: 1.7;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .nv-tour-itinerary {

        padding: 38px 0 90px;
    }


    .nv-tour-itinerary-container {

        width: 94%;
    }


    /* Header */

    .nv-tour-header {

        margin-bottom: 25px;
    }


    .nv-tour-brand {

        font-size: 12px;

        letter-spacing: 2px;
    }


    .nv-tour-header h1 {

        font-size: 24px;

        line-height: 1.25;
    }


    .nv-tour-header h2 {

        font-size: 12px;

        line-height: 1.6;
    }


    .nv-tour-header p {

        font-size: 12px;

        line-height: 1.6;
    }


    /* Day list */

    .nv-day-list {

        gap: 8px;
    }


    /* Day heading */

    .nv-day-heading {

        min-height: 48px;

        grid-template-columns:
            48px 1fr;
    }


    .nv-day-number span {

        font-size: 12px;
    }


    .nv-day-number strong {

        font-size: 19px;
    }


    .nv-day-title {

        padding: 0 12px;

        gap: 7px;
    }


    .nv-day-title i {

        font-size: 10px;
    }


    .nv-day-title h3 {

        font-size: 12px;

        line-height: 1.35;
    }


    /* Day body */

    .nv-day-body {

        grid-template-columns:
            48px 1fr;
    }


    .nv-day-timeline span {

        top: 12px;

        width: 7px;

        height: 7px;
    }


    .nv-day-text {

        padding: 11px 12px 13px 3px;
    }


    .nv-day-text p {

        font-size: 12px;

        line-height: 1.75;
    }


    /* Action */

    .nv-tour-action-bar {

        min-height: 54px;

        margin-top: 10px;

        gap: 6px;
    }


    .nv-tour-action-bar a {

        height: 30px;

        padding: 0 11px;

        font-size: 12px;
    }

}