/* =========================================
   RAJASTHAN AURA TOURS
   ALL JOURNEYS PAGE - FINAL CSS
========================================= */


/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222222;
    background: #ffffff;
    line-height: 1.7;
}

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

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


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

.journeys-header {
    position: relative;
    z-index: 100;

    width: 100%;

    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.journeys-header-container {
    width: min(1200px, 94%);
    min-height: 82px;

    margin: 0 auto;

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

    gap: 30px;
}


/* =========================================
   LOGO
========================================= */

.journeys-logo {
    flex-shrink: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 600;

    color: #2f2925;

    white-space: nowrap;
}


/* =========================================
   NAVIGATION
========================================= */

.journeys-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 28px;
}

.journeys-nav a {
    position: relative;

    font-size: 14px;

    color: #3b342f;

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

.journeys-nav a:hover {
    color: #a56a3a;
}

.journeys-nav a[aria-current="page"] {
    color: #a56a3a;
    font-weight: 600;
}


/* =========================================
   KEYBOARD FOCUS
========================================= */

.journeys-logo:focus-visible,
.journeys-nav a:focus-visible,
.journey-card:focus-visible,
.journeys-whatsapp-button:focus-visible,
.journeys-email-button:focus-visible,
.journeys-footer a:focus-visible {
    outline: 3px solid #a56a3a;
    outline-offset: 4px;
}


/* =========================================
   HERO
========================================= */

.journeys-hero {
    min-height: 520px;

    padding: 100px 30px;

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

    text-align: center;

    background:
        linear-gradient(
            rgba(20, 20, 20, 0.58),
            rgba(20, 20, 20, 0.58)
        ),
        url("images/packages/royal-rajasthan-heritage.webp")
        center center / cover no-repeat;

    color: #ffffff;
}

.journeys-hero-content {
    width: 100%;
    max-width: 850px;
}

.journeys-hero-content span {
    display: block;

    margin-bottom: 20px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
}

.journeys-hero-content h1 {
    margin-bottom: 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 58px);
    font-weight: 500;
    line-height: 1.15;
}

.journeys-hero-content p {
    max-width: 700px;

    margin: 0 auto;

    font-size: 18px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.92);
}


/* =========================================
   COMMON CONTAINER
========================================= */

.journeys-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}


/* =========================================
   INTRODUCTION
========================================= */

.journeys-intro {
    padding: 100px 30px;

    text-align: center;

    background: #ffffff;
}

.journeys-intro .journeys-container {
    max-width: 850px;
}

.journeys-section-label {
    display: block;

    margin-bottom: 18px;

    color: #a56a3a;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.journeys-intro h2 {
    margin-bottom: 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4vw, 44px);
    font-weight: 500;
    line-height: 1.25;

    color: #2d2723;
}

.journeys-intro p {
    color: #66605b;

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


/* =========================================
   ALL JOURNEYS
========================================= */

.all-journeys {
    padding: 100px 30px;

    background: #f7f5f1;
}


/* =========================================
   JOURNEYS SECTION HEADING
========================================= */

.journeys-section-heading {
    margin-bottom: 60px;

    text-align: center;
}

.journeys-section-heading span {
    display: block;

    margin-bottom: 16px;

    color: #a56a3a;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.journeys-section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4vw, 44px);
    font-weight: 500;
    line-height: 1.25;

    color: #2d2723;
}


/* =========================================
   JOURNEYS GRID
========================================= */

.journeys-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 35px;
}


/* =========================================
   JOURNEY CARD
========================================= */

.journey-card {
    display: flex;
    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.04);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

@media (hover: hover) {

    .journey-card:hover {
        transform: translateY(-6px);

        box-shadow:
            0 18px 40px rgba(0, 0, 0, 0.10);
    }

}


/* =========================================
   JOURNEY IMAGE
========================================= */

.journey-card-image {
    width: 100%;
    height: 360px;

    overflow: hidden;

    background: #e9e5df;
}

.journey-card-image img {
    width: 100%;
    height: 100%;

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

    transition: transform 0.5s ease;
}

@media (hover: hover) {

    .journey-card:hover .journey-card-image img {
        transform: scale(1.04);
    }

}


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

.journey-card-content {
    flex: 1;

    padding: 35px;

    display: flex;
    flex-direction: column;
}

.journey-card-content span {
    display: block;

    margin-bottom: 15px;

    color: #77716c;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    line-height: 1.6;
}

.journey-card-content h3 {
    margin-bottom: 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;

    color: #302923;
}

.journey-card-content p {
    margin-bottom: 25px;

    color: #66605b;

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

.journey-card-content strong {
    display: inline-block;

    margin-top: auto;

    color: #7b4b2a;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* =========================================
   CUSTOM JOURNEY CTA
========================================= */

.journeys-cta {
    padding: 110px 30px;

    background: #1d1d1b;

    color: #ffffff;

    text-align: center;
}

.journeys-cta-content {
    width: 100%;
    max-width: 800px;

    margin: 0 auto;
}

.journeys-cta-content > span {
    display: block;

    margin-bottom: 18px;

    color: #d4a476;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.journeys-cta-content h2 {
    margin-bottom: 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 5vw, 46px);
    font-weight: 500;
    line-height: 1.25;
}

.journeys-cta-content p {
    margin-bottom: 35px;

    color: #d1d1d1;

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


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

.journeys-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 15px;
}

.journeys-whatsapp-button,
.journeys-email-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 14px 28px;

    border: 1px solid #ffffff;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.journeys-whatsapp-button {
    background: #ffffff;
    color: #1d1d1b;
}

.journeys-email-button {
    background: transparent;
    color: #ffffff;
}

@media (hover: hover) {

    .journeys-whatsapp-button:hover {
        background: transparent;
        color: #ffffff;

        transform: translateY(-2px);
    }

    .journeys-email-button:hover {
        background: #ffffff;
        color: #1d1d1b;

        transform: translateY(-2px);
    }

}


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

.journeys-footer {
    padding: 65px 30px 30px;

    background: #111111;

    color: #ffffff;
}

.journeys-footer-container {
    width: min(1200px, 100%);

    margin: 0 auto;

    text-align: center;
}


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

.journeys-footer-brand a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;

    color: #ffffff;
}

.journeys-footer-brand p {
    margin-top: 10px;

    color: #aaaaaa;

    font-size: 14px;
}


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

.journeys-footer-contact {
    margin-top: 30px;

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

    gap: 12px 25px;
}

.journeys-footer-contact a {
    color: #cccccc;

    font-size: 14px;

    transition: color 0.3s ease;
}

.journeys-footer-contact a:hover {
    color: #ffffff;
}


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

.journeys-footer-bottom {
    margin-top: 40px;
    padding-top: 25px;

    border-top: 1px solid #333333;
}

.journeys-footer-bottom p {
    color: #888888;

    font-size: 13px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .journeys-header-container {
        min-height: auto;

        padding: 20px 0;

        flex-direction: column;

        gap: 18px;
    }

    .journeys-nav {
        justify-content: center;
        flex-wrap: wrap;

        gap: 12px 20px;
    }

    .journeys-hero {
        min-height: 460px;
    }

    .journeys-grid {
        grid-template-columns: 1fr;

        max-width: 700px;

        margin: 0 auto;
    }

    .journey-card-image {
        height: 380px;
    }

}


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

@media (max-width: 600px) {

    .journeys-header-container {
        width: 92%;

        padding: 18px 0;
    }

    .journeys-logo {
        font-size: 21px;
    }

    .journeys-nav {
        gap: 10px 14px;
    }

    .journeys-nav a {
        font-size: 12px;
    }


    /* HERO */

    .journeys-hero {
        min-height: 430px;

        padding: 70px 20px;
    }

    .journeys-hero-content span {
        font-size: 10px;
        letter-spacing: 2px;
    }

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

    .journeys-hero-content p {
        font-size: 15px;
        line-height: 1.75;
    }


    /* INTRO */

    .journeys-intro {
        padding: 75px 20px;
    }

    .journeys-intro h2,
    .journeys-section-heading h2 {
        font-size: 34px;
    }

    .journeys-intro p {
        font-size: 15px;
    }


    /* JOURNEYS */

    .all-journeys {
        padding: 75px 18px;
    }

    .journeys-section-heading {
        margin-bottom: 45px;
    }

    .journeys-grid {
        gap: 28px;
    }

    .journey-card-image {
        height: 240px;
    }

    .journey-card-content {
        padding: 26px 22px 30px;
    }

    .journey-card-content h3 {
        font-size: 24px;
    }

    .journey-card-content p {
        font-size: 14px;
    }


    /* CTA */

    .journeys-cta {
        padding: 80px 20px;
    }

    .journeys-cta-content h2 {
        font-size: 35px;
    }

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

    .journeys-cta-buttons {
        flex-direction: column;
    }

    .journeys-whatsapp-button,
    .journeys-email-button {
        width: 100%;
    }


    /* FOOTER */

    .journeys-footer {
        padding: 55px 20px 25px;
    }

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

        gap: 12px;
    }

}


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

@media (max-width: 420px) {

    .journeys-logo {
        font-size: 20px;
    }

    .journeys-nav {
        gap: 8px 12px;
    }

    .journeys-nav a {
        font-size: 11px;
    }

    .journeys-hero {
        min-height: 410px;
    }

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

    .journey-card-image {
        height: 220px;
    }

    .journey-card-content {
        padding: 24px 20px 28px;
    }

}


/* =========================================
   REDUCED MOTION ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .journey-card,
    .journey-card-image img,
    .journeys-whatsapp-button,
    .journeys-email-button,
    .journeys-nav a,
    .journeys-footer-contact a {
        transition: none;
    }

    .journey-card:hover,
    .journey-card:hover .journey-card-image img,
    .journeys-whatsapp-button:hover,
    .journeys-email-button:hover {
        transform: none;
    }

}


/* =========================================
   END - ALL JOURNEYS PAGE
   RAJASTHAN AURA TOURS
========================================= */