/* =====================================================
   RAJASTHAN AURA TOURS
   EXPERIENCE DETAIL PAGES - CLEAN FINAL STYLESHEET
   File: experiences/experience-style.css
===================================================== */


/* =====================================================
   0. GLOBAL RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #222222;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.tour-detail-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =====================================================
   1. PAGE HEADER
===================================================== */

.tour-page-header {
    position: relative;
    z-index: 100;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.tour-header-container {
    width: 90%;
    max-width: 1400px;
    min-height: 80px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.tour-page-logo {
    color: #222222;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;

    white-space: nowrap;
}

.tour-page-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.tour-page-nav a {
    position: relative;

    padding: 30px 0;

    color: #444444;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition: color .3s ease;
}

.tour-page-nav a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 22px;

    width: 0;
    height: 1px;

    background: #b68b42;

    transform: translateX(-50%);

    transition: width .3s ease;
}

.tour-page-nav a:hover {
    color: #b68b42;
}

.tour-page-nav a:hover::after {
    width: 100%;
}


/* =====================================================
   2. HERO
===================================================== */

.tour-detail-hero {
    position: relative;

    width: 100%;
    height: 650px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;
    background: #111111;
}

.tour-detail-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

.tour-detail-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.tour-detail-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, .08) 20%,
            rgba(0, 0, 0, .18) 50%,
            rgba(0, 0, 0, .78) 100%
        );

    pointer-events: none;
}

.tour-detail-hero-content {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1250px;

    margin: 0 auto 70px;

    color: #ffffff;
}

.tour-detail-label {
    display: block;

    margin-bottom: 15px;

    color: #e0bd79;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.tour-detail-hero-content h1 {
    max-width: 850px;

    margin: 0 0 15px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 58px;
    font-weight: 400;

    line-height: 1.1;

    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.tour-detail-hero-content p {
    margin: 0;

    color: rgba(255, 255, 255, .9);

    font-size: 14px;

    letter-spacing: 1.5px;
}


/* =====================================================
   3. EXPERIENCE DISCOVERY SECTION
===================================================== */

.desert-discovery {
    padding: 55px 18px;
    background: #ffffff;
}

.desert-discovery .tour-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* =====================================================
   DISCOVERY HEADING
===================================================== */

.desert-discovery-heading {
    max-width: 720px;
    margin: 0 auto 35px;
    text-align: center;
}

.desert-discovery-heading span {
    display: block;

    margin-bottom: 10px;

    color: #b38a45;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2px;
}

.desert-discovery-heading h2 {
    margin: 0 0 12px;

    color: #222222;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;

    line-height: 1.2;
}

.desert-discovery-heading p {
    margin: 0;

    color: #666666;

    font-size: 16px;
    line-height: 1.6;
}


/* =====================================================
   4. EXPERIENCE IMAGE GRID
===================================================== */

.desert-discovery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


/* =====================================================
   EXPERIENCE IMAGE CARD
===================================================== */

.desert-discovery-card {
    position: relative;

    height: 280px;

    overflow: hidden;

    border-radius: 5px;

    background: #eeeeee;
}

.desert-discovery-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    cursor: pointer;

    transition: transform .5s ease;
}

.desert-discovery-card:hover img {
    transform: scale(1.035);
}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.desert-discovery-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .48) 0%,
            rgba(0, 0, 0, .10) 55%,
            rgba(0, 0, 0, .02) 100%
        );

    pointer-events: none;
}


/* =====================================================
   TEXT OVER IMAGE
===================================================== */

.desert-discovery-content {
    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 20px;

    z-index: 2;

    pointer-events: none;
}

.desert-discovery-content span {
    display: block;

    margin-bottom: 6px;

    color: #e0bd75;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2px;
}

.desert-discovery-content h3 {
    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;

    line-height: 1.25;

    text-shadow: 0 1px 4px rgba(0, 0, 0, .45);
}


/* =====================================================
   DISCOVERY BOTTOM NOTE
===================================================== */

.desert-discovery-note {
    margin-top: 30px;
    text-align: center;
}

.desert-discovery-note p {
    margin: 0;

    color: #666666;

    font-size: 15px;
    line-height: 1.6;
}


/* =====================================================
   5. ENQUIRY / WHATSAPP CTA
===================================================== */

.tour-enquiry-cta {
    width: 100%;

    padding: 100px 5%;

    background: #25221e;

    text-align: center;
}

.tour-enquiry-content {
    width: 100%;
    max-width: 800px;

    margin: 0 auto;
}

.tour-enquiry-content > span {
    display: block;

    margin-bottom: 16px;

    color: #d4ad63;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.tour-enquiry-content h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    font-weight: 400;

    line-height: 1.2;
}

.tour-enquiry-content p {
    max-width: 620px;

    margin: 0 auto 32px;

    color: rgba(255, 255, 255, .7);

    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   CTA BUTTONS
===================================================== */

.tour-enquiry-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.tour-whatsapp-button,
.tour-email-button {
    display: inline-block;

    padding: 15px 25px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

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

.tour-whatsapp-button {
    color: #ffffff;

    background: #b68b42;

    border: 1px solid #b68b42;
}

.tour-whatsapp-button:hover {
    background: #96702f;
    border-color: #96702f;
}

.tour-email-button {
    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, .5);
}

.tour-email-button:hover {
    color: #222222;

    background: #ffffff;

    border-color: #ffffff;
}


/* =====================================================
   6. PAGE FOOTER
===================================================== */

.tour-page-footer {
    width: 100%;

    padding: 55px 5% 25px;

    background: #151515;

    color: #ffffff;
}

.tour-page-footer-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
}

.tour-footer-brand {
    text-align: center;
}

.tour-footer-brand > a {
    display: inline-block;

    margin-bottom: 10px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
}

.tour-footer-brand p {
    margin: 0;

    color: #b68b42;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =====================================================
   FOOTER CONTACT
===================================================== */

.tour-footer-contact {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 15px 30px;

    margin-top: 30px;
}

.tour-footer-contact a {
    color: rgba(255, 255, 255, .65);

    font-size: 12px;

    transition: color .3s ease;
}

.tour-footer-contact a:hover {
    color: #b68b42;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.tour-footer-bottom {
    margin-top: 40px;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, .12);

    text-align: center;
}

.tour-footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, .4);

    font-size: 10px;
}


/* =====================================================
   7. EXPERIENCE IMAGE LIGHTBOX
===================================================== */

.experience-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, .92);
}

.experience-lightbox.active {
    display: flex;
}

.experience-lightbox img {
    display: block;

    width: auto;
    height: auto;

    max-width: 95vw;
    max-height: 90vh;

    object-fit: contain;

    border-radius: 3px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, .45);
}

.experience-lightbox-close {
    position: absolute;

    top: 18px;
    right: 22px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: #ffffff;
    background: rgba(0, 0, 0, .35);

    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    z-index: 10000;
}

.experience-lightbox-close:hover {
    color: #222222;
    background: #ffffff;
}

body.lightbox-open {
    overflow: hidden;
}


/* =====================================================
   8. TABLET
   901px AND BELOW
===================================================== */

@media (max-width: 900px) {

    .tour-header-container {
        min-height: 70px;
    }

    .tour-page-nav {
        gap: 18px;
    }

    .tour-page-nav a {
        padding: 25px 0;
        font-size: 10px;
    }

    .tour-page-nav a::after {
        bottom: 17px;
    }


    /* HERO */

    .tour-detail-hero {
        height: 550px;
    }

    .tour-detail-hero-content {
        margin-bottom: 55px;
    }

    .tour-detail-hero-content h1 {
        font-size: 48px;
    }


    /* CTA */

    .tour-enquiry-cta {
        padding: 85px 5%;
    }

    .tour-enquiry-content h2 {
        font-size: 40px;
    }

}


/* =====================================================
   9. MOBILE
   700px AND BELOW
===================================================== */

@media (max-width: 700px) {

    .tour-detail-container {
        width: calc(100% - 30px);
        max-width: none;
    }


    /* =================================================
       HEADER
    ================================================= */

    .tour-page-header {
        position: relative;
    }

    .tour-header-container {
        width: calc(100% - 36px);

        min-height: 70px;

        justify-content: center;
    }

    .tour-page-logo {
        font-size: 23px;

        white-space: normal;

        text-align: center;
    }

    .tour-page-nav {
        display: none;
    }


    /* =================================================
       HERO - FULL IMAGE ON MOBILE
    ================================================= */

    .tour-detail-hero {
        position: relative;

        width: 100%;

        height: auto;
        min-height: 0;

        display: block;

        overflow: hidden;
    }

    .tour-detail-hero-image {
        position: relative;

        inset: auto;

        width: 100%;
        height: auto;
    }

    .tour-detail-hero-image img {
        display: block;

        width: 100%;
        height: auto;

        object-fit: initial;
        object-position: initial;
    }

    .tour-detail-hero-overlay {
        position: absolute;
        inset: 0;

        z-index: 1;

        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0) 15%,
                rgba(0, 0, 0, .12) 45%,
                rgba(0, 0, 0, .82) 100%
            );
    }

    .tour-detail-hero-content {
        position: absolute;

        left: 20px;
        right: 20px;
        bottom: 25px;

        z-index: 2;

        width: auto;
        max-width: none;

        margin: 0;
    }

    .tour-detail-label {
        margin-bottom: 9px;

        font-size: 9px;

        letter-spacing: 2px;
    }

    .tour-detail-hero-content h1 {
        max-width: 100%;

        margin: 0 0 8px;

        font-size: 31px;

        line-height: 1.15;
    }

    .tour-detail-hero-content p {
        font-size: 11px;

        line-height: 1.5;

        letter-spacing: .8px;
    }


    /* =================================================
       DISCOVERY
    ================================================= */

    .desert-discovery {
        padding: 45px 15px;
    }

    .desert-discovery-heading {
        margin-bottom: 28px;
    }

    .desert-discovery-heading span {
        font-size: 11px;
    }

    .desert-discovery-heading h2 {
        font-size: 27px;
    }

    .desert-discovery-heading p {
        font-size: 15px;
    }

    .desert-discovery-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .desert-discovery-card {
        height: 225px;
    }

    .desert-discovery-content {
        left: 17px;
        right: 17px;
        bottom: 16px;
    }

    .desert-discovery-content span {
        font-size: 11px;
    }

    .desert-discovery-content h3 {
        font-size: 20px;
    }

    .desert-discovery-note {
        margin-top: 24px;
    }

    .desert-discovery-note p {
        font-size: 14px;
    }


    /* =================================================
       CTA
    ================================================= */

    .tour-enquiry-cta {
        padding: 70px 22px;
    }

    .tour-enquiry-content > span {
        margin-bottom: 14px;

        font-size: 9px;

        letter-spacing: 2.5px;
    }

    .tour-enquiry-content h2 {
        margin-bottom: 18px;

        font-size: 32px;

        line-height: 1.2;
    }

    .tour-enquiry-content p {
        margin-bottom: 28px;

        font-size: 13px;

        line-height: 1.75;
    }

    .tour-enquiry-buttons {
        flex-direction: column;

        gap: 10px;
    }

    .tour-whatsapp-button,
    .tour-email-button {
        width: 100%;
        max-width: 300px;

        padding: 15px 20px;

        text-align: center;
    }


    /* =================================================
       FOOTER
    ================================================= */

    .tour-page-footer {
        padding: 45px 20px 25px;
    }

    .tour-footer-brand > a {
        font-size: 23px;
    }

    .tour-footer-brand p {
        font-size: 8px;

        letter-spacing: 1.5px;
    }

    .tour-footer-contact {
        flex-direction: column;

        gap: 12px;

        margin-top: 28px;
    }

    .tour-footer-bottom {
        margin-top: 35px;

        padding-top: 20px;
    }


    /* =================================================
       LIGHTBOX
    ================================================= */

    .experience-lightbox {
        padding: 15px;
    }

    .experience-lightbox img {
        max-width: 100%;
        max-height: 85vh;
    }

    .experience-lightbox-close {
        top: 12px;
        right: 12px;

        width: 40px;
        height: 40px;

        font-size: 25px;
    }

}


/* =====================================================
   10. EXTRA SMALL MOBILE
   380px AND BELOW
===================================================== */

@media (max-width: 380px) {

    .tour-detail-container {
        width: calc(100% - 30px);
    }

    .tour-header-container {
        width: calc(100% - 30px);
    }

    .tour-page-logo {
        font-size: 21px;
    }

    .tour-detail-hero-content {
        left: 15px;
        right: 15px;
        bottom: 20px;
    }

    .tour-detail-hero-content h1 {
        font-size: 27px;
    }

    .tour-detail-hero-content p {
        font-size: 10px;
    }

    .desert-discovery-heading h2 {
        font-size: 25px;
    }

    .desert-discovery-content h3 {
        font-size: 19px;
    }

    .tour-enquiry-cta {
        padding: 60px 18px;
    }

    .tour-enquiry-content h2 {
        font-size: 28px;
    }

    .tour-page-footer {
        padding: 42px 18px 22px;
    }

}