/* =========================================
   RAJASTHAN AURA TOURS
   BLOG DETAIL PAGES
========================================= */


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

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.8;
}

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

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


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

.article-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    z-index: 100;
}

.article-header-container {
    width: 100%;
    max-width: 1400px;
    min-height: 85px;
    margin: 0 auto;
    padding: 0 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


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

.article-logo {
    flex-shrink: 0;

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

    color: #222;
}


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

.article-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.article-nav a {
    position: relative;

    color: #333;
    font-size: 12px;
    font-weight: 500;

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

.article-nav a:hover,
.article-nav a.active {
    color: #b68b42;
}

.article-nav a.active::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;

    width: 100%;
    height: 1px;

    background: #b68b42;
}


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

.article-hero {
    position: relative;

    width: 100%;
    height: 600px;

    overflow: hidden;
}

.article-hero > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;

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

    padding: 40px 5%;

    background:
        linear-gradient(
            rgba(15, 15, 15, 0.35),
            rgba(15, 15, 15, 0.65)
        );

    color: #fff;
    text-align: center;
}

.article-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

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

    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;

    text-transform: uppercase;
}

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

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

.article-hero-content p {
    max-width: 720px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.9);

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


/* =========================================
   ARTICLE MAIN
========================================= */

.article-main {
    padding: 100px 30px;
}

.article-container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}


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

.article-intro {
    padding-bottom: 70px;

    border-bottom: 1px solid #e5e5e5;
}

.article-label {
    display: block;

    margin-bottom: 15px;

    color: #b68b42;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;

    text-transform: uppercase;
}

.article-intro h2 {
    margin-bottom: 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 400;
}

.article-intro p {
    margin-bottom: 20px;

    color: #555;

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

.article-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================
   ARTICLE SECTIONS
========================================= */

.article-section {
    padding: 70px 0;

    border-bottom: 1px solid #e5e5e5;
}

.article-number {
    display: block;

    margin-bottom: 15px;

    color: #b68b42;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
}

.article-section h2 {
    margin-bottom: 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 400;
}

.article-section p {
    margin-bottom: 20px;

    color: #555;

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

.article-section p:last-child {
    margin-bottom: 0;
}


/* =========================================
   ARTICLE HIGHLIGHT
========================================= */

.article-highlight {
    margin: 70px 0;
    padding: 55px;

    background: #f7f5f1;
}

.article-highlight h2 {
    margin-bottom: 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 400;
}

.article-highlight p {
    margin-bottom: 20px;

    color: #555;

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

.article-highlight p:last-child {
    margin-bottom: 0;
}


/* =========================================
   EXPLORE JOURNEYS
========================================= */

.article-journeys {
    padding: 80px 0 20px;

    text-align: center;
}

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

    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 400;
}

.article-journeys p {
    max-width: 700px;
    margin: 0 auto 35px;

    color: #555;

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

.article-button {
    display: inline-block;

    padding: 15px 28px;

    border: 1px solid #222;

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

    text-transform: uppercase;

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

.article-button:hover {
    background: #222;
    color: #fff;
}


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

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

    background: #1d1d1b;
    color: #fff;

    text-align: center;
}

.article-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

    margin-bottom: 18px;

    color: #b68b42;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;

    text-transform: uppercase;
}

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

    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    line-height: 1.25;
    font-weight: 400;
}

.article-cta-content p {
    max-width: 680px;
    margin: 0 auto 35px;

    color: rgba(255, 255, 255, 0.72);

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

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

    gap: 15px;
}

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

    min-width: 200px;
    padding: 15px 28px;

    border: 1px solid #fff;

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

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.article-whatsapp-button {
    background: #fff;
    color: #1d1d1b;
}

.article-email-button {
    background: transparent;
    color: #fff;
}

.article-whatsapp-button:hover {
    background: #b68b42;
    border-color: #b68b42;
    color: #fff;
}

.article-email-button:hover {
    background: #fff;
    color: #1d1d1b;
}


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

.article-logo:focus-visible,
.article-nav a:focus-visible,
.article-button:focus-visible,
.article-whatsapp-button:focus-visible,
.article-email-button:focus-visible,
.article-footer a:focus-visible {
    outline: 2px solid #b68b42;
    outline-offset: 4px;
}


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

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

    background: #111;
    color: #fff;

    text-align: center;
}

.article-footer-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}

.article-footer-brand a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
}

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

    color: rgba(255, 255, 255, 0.5);

    font-size: 12px;
    letter-spacing: 0.5px;
}

.article-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px 25px;

    margin-top: 30px;
}

.article-footer-links a {
    color: rgba(255, 255, 255, 0.7);

    font-size: 12px;

    transition: color 0.3s ease;
}

.article-footer-links a:hover {
    color: #b68b42;
}

.article-footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px 25px;

    margin-top: 25px;
}

.article-footer-contact a {
    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;

    transition: color 0.3s ease;
}

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

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

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.article-footer-bottom p {
    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;
}


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

@media (max-width: 1000px) {

    .article-header-container {
        flex-wrap: wrap;
        justify-content: center;

        padding-top: 20px;
        padding-bottom: 20px;
    }

    .article-logo {
        width: 100%;
        text-align: center;
    }

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

        gap: 15px 20px;
    }

    .article-hero {
        height: 520px;
    }

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

    .article-main {
        padding: 80px 30px;
    }

}


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

@media (max-width: 650px) {

    /* HEADER */

    .article-header-container {
        padding: 20px 18px;
    }

    .article-logo {
        font-size: 23px;
    }

    .article-nav {
        gap: 10px 15px;
    }

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


    /* HERO */

    .article-hero {
        height: 480px;
    }

    .article-hero-overlay {
        padding: 40px 20px;
    }

    .article-hero-content span {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .article-hero-content h1 {
        font-size: 37px;
    }

    .article-hero-content p {
        font-size: 15px;
    }


    /* MAIN */

    .article-main {
        padding: 70px 20px;
    }


    /* INTRO */

    .article-intro {
        padding-bottom: 55px;
    }

    .article-intro h2 {
        font-size: 32px;
    }

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


    /* ARTICLE SECTIONS */

    .article-section {
        padding: 55px 0;
    }

    .article-section h2 {
        font-size: 30px;
    }

    .article-section p {
        font-size: 15px;
    }


    /* HIGHLIGHT */

    .article-highlight {
        margin: 55px 0;
        padding: 35px 25px;
    }

    .article-highlight h2 {
        font-size: 30px;
    }

    .article-highlight p {
        font-size: 15px;
    }


    /* JOURNEYS */

    .article-journeys {
        padding: 65px 0 10px;
    }

    .article-journeys h2 {
        font-size: 33px;
    }

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

    .article-button {
        width: 100%;
    }


    /* CTA */

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

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

    .article-cta-content p {
        font-size: 14px;
    }

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

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


    /* FOOTER */

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

    .article-footer-links,
    .article-footer-contact {
        flex-direction: column;
        gap: 12px;
    }

}


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

@media (max-width: 380px) {

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

    .article-hero {
        height: 460px;
    }

    .article-hero-content h1 {
        font-size: 33px;
    }

    .article-intro h2 {
        font-size: 29px;
    }

    .article-section h2,
    .article-highlight h2 {
        font-size: 28px;
    }

    .article-journeys h2 {
        font-size: 30px;
    }

    .article-cta-content h2 {
        font-size: 32px;
    }

}


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

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}