/* =========================================
   RAJASTHAN AURA TOURS
   BLOG / TRAVEL STORIES PAGE
========================================= */


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

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

html{
    scroll-behavior:smooth;
}

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

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

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


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

.blog-header{
    width:100%;
    background:#ffffff;
    border-bottom:1px solid #eeeeee;
    position:relative;
    z-index:100;
}

.blog-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 ===== */

.blog-logo{
    flex-shrink:0;

    color:#222222;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:25px;
    font-weight:400;

    white-space:nowrap;
}


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

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

    gap:25px;
}

.blog-nav a{
    position:relative;

    color:#333333;

    font-size:12px;
    font-weight:500;

    white-space:nowrap;

    transition:color .3s ease;
}

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

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

    position:absolute;

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

    width:100%;
    height:1px;

    background:#b68b42;
}


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

.blog-hero{
    min-height:520px;
    padding:100px 5%;

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

    color:#ffffff;

    text-align:center;

    background:
        linear-gradient(
            rgba(15,15,15,.42),
            rgba(15,15,15,.68)
        ),
        url("images/blog/rajasthan-guide.webp")
        center center / cover no-repeat;
}

.blog-hero-content{
    max-width:850px;
    margin:0 auto;
}

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

    margin-bottom:20px;

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

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

    text-transform:uppercase;
}

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

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:60px;
    line-height:1.15;
    font-weight:400;
}

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

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

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


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

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

    margin:0 auto;
}


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

.blog-intro{
    padding:100px 5% 85px;

    background:#ffffff;

    text-align:center;
}

.blog-intro .blog-container{
    max-width:820px;
}

.blog-section-label{
    display:block;

    margin-bottom:16px;

    color:#b68b42;

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

    text-transform:uppercase;
}

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

    color:#222222;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:44px;
    line-height:1.25;
    font-weight:400;
}

.blog-intro p{
    max-width:750px;
    margin:0 auto;

    color:#666666;

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


/* =========================================
   BLOG ARTICLES
========================================= */

.blog-articles{
    padding:100px 5% 110px;

    background:#f7f5f1;
}

.blog-grid{
    display:grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:30px;
}


/* =========================================
   BLOG CARD
========================================= */

.blog-card{
    min-width:0;

    display:flex;
    flex-direction:column;

    overflow:hidden;

    background:#ffffff;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.blog-card:hover{
    transform:translateY(-5px);

    box-shadow:
        0 18px 45px rgba(0,0,0,.08);
}


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

.blog-card-image{
    width:100%;
    height:280px;

    overflow:hidden;

    background:#eeeeee;
}

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

    object-fit:cover;

    transition:transform .6s ease;
}

.blog-card:hover .blog-card-image img{
    transform:scale(1.05);
}


/* ===== CARD CONTENT ===== */

.blog-card-content{
    padding:35px 30px 40px;

    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.blog-category{
    display:block;

    margin-bottom:15px;

    color:#b68b42;

    font-size:9px;
    font-weight:600;
    letter-spacing:2.5px;

    text-transform:uppercase;
}

.blog-card-content h2{
    margin-bottom:18px;

    color:#222222;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:27px;
    line-height:1.35;
    font-weight:400;
}

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

    color:#666666;

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


/* ===== READ LINK ===== */

.blog-read-link{
    display:inline-block;
    align-self:flex-start;

    margin-top:auto;
    padding-bottom:5px;

    color:#222222;

    border-bottom:1px solid #222222;

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

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

.blog-read-link:hover{
    color:#b68b42;
    border-color:#b68b42;
}


/* =========================================
   TRAVEL INSPIRATION
========================================= */

.blog-inspiration{
    padding:105px 5%;

    background:#ffffff;

    text-align:center;
}

.blog-inspiration-content{
    max-width:800px;
    margin:0 auto;
}

.blog-inspiration-content > span{
    display:block;

    margin-bottom:18px;

    color:#b68b42;

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

    text-transform:uppercase;
}

.blog-inspiration-content h2{
    margin-bottom:25px;

    color:#222222;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:44px;
    line-height:1.25;
    font-weight:400;
}

.blog-inspiration-content p{
    max-width:700px;
    margin:0 auto 35px;

    color:#666666;

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


/* ===== JOURNEYS BUTTON ===== */

.blog-journeys-button{
    display:inline-block;

    padding:15px 28px;

    border:1px solid #222222;

    background:transparent;
    color:#222222;

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

    text-transform:uppercase;

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

.blog-journeys-button:hover{
    background:#222222;
    color:#ffffff;
}


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

.blog-cta{
    padding:110px 5%;

    background:#1d1d1b;

    color:#ffffff;

    text-align:center;
}

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

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

    margin-bottom:18px;

    color:#b68b42;

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

    text-transform:uppercase;
}

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

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:47px;
    line-height:1.25;
    font-weight:400;
}

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

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

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


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

.blog-cta-buttons{
    display:flex;

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

    flex-wrap:wrap;

    gap:15px;
}

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

    min-width:200px;

    padding:15px 25px;

    border:1px solid #ffffff;

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

    text-transform:uppercase;

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

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

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

.blog-whatsapp-button:hover{
    background:#b68b42;
    border-color:#b68b42;
    color:#ffffff;
}

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


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

.blog-footer{
    padding:65px 5% 30px;

    background:#111111;

    color:#ffffff;

    text-align:center;
}

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

    margin:0 auto;
}


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

.blog-footer-brand a{
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:26px;
    font-weight:400;
}

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

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

    font-size:12px;
    letter-spacing:.5px;
}


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

.blog-footer-links{
    display:flex;

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

    flex-wrap:wrap;

    gap:12px 25px;

    margin-top:30px;
}

.blog-footer-links a{
    color:rgba(255,255,255,.70);

    font-size:12px;

    transition:color .3s ease;
}

.blog-footer-links a:hover,
.blog-footer-links a[aria-current="page"]{
    color:#b68b42;
}


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

.blog-footer-contact{
    display:flex;

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

    flex-wrap:wrap;

    gap:12px 25px;

    margin-top:25px;
}

.blog-footer-contact a{
    color:rgba(255,255,255,.55);

    font-size:12px;

    transition:color .3s ease;
}

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


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

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

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

.blog-footer-bottom p{
    color:rgba(255,255,255,.35);

    font-size:10px;
}


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

@media(max-width:1000px){

    .blog-header-container{
        flex-wrap:wrap;

        justify-content:center;

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


    .blog-logo{
        width:100%;

        text-align:center;
    }


    .blog-nav{
        flex-wrap:wrap;

        justify-content:center;

        gap:15px 20px;
    }


    .blog-hero{
        min-height:500px;
    }


    .blog-hero-content h1{
        font-size:52px;
    }


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

}


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

@media(max-width:650px){

    /* HEADER */

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


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


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


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


    /* HERO */

    .blog-hero{
        min-height:470px;

        padding:
            75px 20px;
    }


    .blog-hero-content span{
        font-size:9px;

        letter-spacing:2px;
    }


    .blog-hero-content h1{
        font-size:41px;
    }


    .blog-hero-content p{
        font-size:14px;
    }


    /* INTRO */

    .blog-intro{
        padding:
            75px 20px 65px;
    }


    .blog-intro h2{
        font-size:35px;
    }


    .blog-intro p{
        font-size:14px;
    }


    /* ARTICLES */

    .blog-articles{
        padding:
            75px 18px 80px;
    }


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

        gap:22px;
    }


    .blog-card-image{
        height:250px;
    }


    .blog-card-content{
        padding:
            30px 24px 35px;
    }


    .blog-card-content h2{
        font-size:25px;
    }


    /* INSPIRATION */

    .blog-inspiration{
        padding:
            80px 20px;
    }


    .blog-inspiration-content h2{
        font-size:35px;
    }


    .blog-inspiration-content p{
        font-size:14px;
    }


    .blog-journeys-button{
        width:100%;
    }


    /* CTA */

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


    .blog-cta-content h2{
        font-size:36px;
    }


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


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


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


    /* FOOTER */

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


    .blog-footer-links,
    .blog-footer-contact{
        flex-direction:column;

        gap:12px;
    }

}


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

@media(max-width:380px){

    .blog-hero{
        min-height:440px;
    }


    .blog-hero-content h1{
        font-size:36px;
    }


    .blog-intro h2,
    .blog-inspiration-content h2{
        font-size:31px;
    }


    .blog-card-image{
        height:225px;
    }


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

}