/* =========================================================
   WANDERFREE — INDIA JOURNEYS
   ---------------------------------------------------------
   CSS for journey-india body.php only
   ========================================================= */


/* =========================================================
   JOURNEY OPTIONS
   ========================================================= */

.journey-section {
    max-width: 1350px;
    margin: auto;
    padding: 100px 5vw 120px;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 400;
    color: #ffffff;
}

.section-heading h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 400;
    color: #ffffff;
}

.section-heading p {
    max-width: 650px;
    margin: 20px auto 0;
    color: #BEB8AC;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   JOURNEY CARDS
   ========================================================= */

.journey-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.journey-option {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #181A18;
}

.journey-option-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s ease;
}


/* =========================================================
   JOURNEY IMAGES
   ========================================================= */

.south-image {
    background-image:
        linear-gradient(
            rgba(0,0,0,.05),
            rgba(0,0,0,.72)
        ),
        url("images/Web pictures/House boat kerala.JPG");
}

.north-image {
    background-image:
        linear-gradient(
            rgba(0,0,0,.05),
            rgba(0,0,0,.72)
        ),
        url("images/Taj Mahal.jpg");
}


/* =========================================================
   IMAGE HOVER
   ========================================================= */

.journey-option:hover .journey-option-image {
    transform: scale(1.05);
}


/* =========================================================
   JOURNEY CONTENT
   ========================================================= */

.journey-option-content {
    position: absolute;
    z-index: 2;
    left: 35px;
    right: 35px;
    bottom: 35px;
    color: #ffffff;
}
.journey-option-content h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    color: #ffffff !important;
}

.journey-option-content h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    color: #ffffff !important;
}
.journey-subtitle {
    margin-top: 5px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    font-style: italic;
    color: #D4AF5A;
}

.journey-description {
    max-width: 550px;
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.8;
    color: rgba(243,238,228,.82);
}

.journey-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 20px;
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* =========================================================
   JOURNEY BUTTON
   ========================================================= */

.journey-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 20px;

    border: 1px solid rgba(243,238,228,.55);

    color: #F3EEE4;
    text-decoration: none;

    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;

    transition:
        background .3s ease,
        border-color .3s ease;
}

.journey-button:hover {
    background: #8B2635;
    border-color: #8B2635;
}


/* =========================================================
   LUX JOURNEY REGION
   ========================================================= */

.lux-journey-region {
    display: inline-block;

    margin-bottom: 12px;
    padding-bottom: 7px;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;

    letter-spacing: .22em;
    text-transform: uppercase;

    color: #D4AF5A;

    border-bottom: 1px solid rgba(212,175,90,.55);
}


/* =========================================================
   ITINERARY
   ========================================================= */

.itinerary-section {
    max-width: 1000px;
    margin: auto;
    padding: 20px 5vw 120px;
}

.itinerary-heading {
    text-align: center;
    margin-bottom: 55px;
}

.itinerary-heading h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(45px, 5vw, 70px);
    font-weight: 400;
}

.itinerary-heading p {
    margin-top: 10px;
    color: #D4AF5A;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
}



/* =========================================================
   DAY
   ========================================================= */

.day {
    border-top: 1px solid rgba(243,238,228,.12);
}

.day:last-child {
    border-bottom: 1px solid rgba(243,238,228,.12);
}

.day-summary {
    display: grid;
    grid-template-columns: 70px 1fr 25px;
    gap: 20px;

    align-items: center;

    padding: 24px 0;

    cursor: pointer;
    list-style: none;
}

.day-summary::-webkit-details-marker {
    display: none;
}

.day-number {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 25px;
    color: #D4AF5A;
}

.day-place {
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(243,238,228,.55);
}

.day-title {
    display: block;

    margin-top: 5px;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 27px;

    color: #F3EEE4;
}

.day-arrow {
    font-size: 20px;
    color: #D4AF5A;

    transition: transform .3s ease;
}

.day[open] .day-arrow {
    transform: rotate(45deg);
}

.day-by-day-heading {
    text-align: center;
    margin: 70px 0 35px;
}

.day-by-day-heading span {
    display: block;
    margin-bottom: 8px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #D4AF5A;
}

.day-by-day-heading h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 38px;
    font-weight: 400;
    color: #F3EEE4;
}
/* =========================================================
   DAY DETAIL
   ========================================================= */

.day-detail {
    padding: 0 45px 30px 90px;
}

.day-detail p {
    max-width: 700px;

    color: #BEB8AC;

    font-size: 13px;
    line-height: 1.9;
}


/* =========================================================
   DAY INFORMATION
   ========================================================= */

.day-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 25px;
}

.day-info div {
    border-top: 1px solid rgba(243,238,228,.10);
    padding-top: 10px;
}

.day-info strong {
    display: block;

    font-size: 8px;
    letter-spacing: .15em;
    text-transform: uppercase;

    color: #D4AF5A;
}

.day-info span {
    display: block;

    margin-top: 6px;

    font-size: 10px;
    line-height: 1.5;

    color: rgba(243,238,228,.72);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 750px) {

    .journey-section {
        padding: 75px 20px 90px;
    }

    .journey-options {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .journey-option {
        min-height: 500px;
    }

    .journey-option-content {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }

    .journey-option-content h3 {
        font-size: 45px;
    }


    /* =====================================================
       ITINERARY — MOBILE
       ===================================================== */

    .itinerary-section {
        padding: 10px 20px 90px;
    }

    .day-summary {
        grid-template-columns: 45px 1fr 20px;
        gap: 12px;
    }

    .day-title {
        font-size: 23px;
    }

    .day-detail {
        padding: 0 10px 25px 57px;
    }

    .day-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

}