/*=========================================== RESET & CONFLICT FIXES ===========================================*/

body{
    overflow-x: hidden;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}

.rishikesh-blog-container *,
.rishikesh-blog-section *,
.rishikesh-faq-section *{
    box-sizing: border-box;
}

.rishikesh-blog-section{
    display: block;
    width: 100%;
}

.rishikesh-blog-container section{
    display: block;
}

/*=========================================== Hero Section ===========================================*/

.rishikesh-blog-hero-section{
    position: relative;
    width: 100%;
    min-height: 90vh;
    background: url('../assets/home/campnstay_rishikesh.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5%;
    overflow: hidden;
}

.rishikesh-blog-hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.60);
}

.rishikesh-blog-hero-content{
    position: relative;
    z-index: 2;
    max-width: 950px;
    text-align: center;
    color: white;
}

.rishikesh-blog-badge{
    color: white;
    display: inline-block;
    padding: 10px 22px;
    background: var(--tertiary-text-color);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(10px);
}

.rishikesh-blog-hero-content h1{
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Fredoka', sans-serif;
    color: white;
}

.rishikesh-blog-hero-content p{
    font-size: 1.1rem;
    line-height: 2;
    max-width: 800px;
    margin: auto;
    color: rgba(255,255,255,0.90);
    font-family: 'Poppins', sans-serif;
}

/*=========================================== Blog Container ===========================================*/

.rishikesh-blog-container{
    width: 100%;
    padding: 5rem 7%;
}

.rishikesh-blog-intro{
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.rishikesh-blog-intro p{
    font-size: 1rem;
    line-height: 2;
    color: #444;
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
}

/*=========================================== Season Grid ===========================================*/

.rishikesh-season-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 4rem;
}

.rishikesh-season-card{
    background: #fff;
    border-radius: 22px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.rishikesh-season-card:hover{
    transform: translateY(-8px);
}

.rishikesh-season-card span{
    font-size: 3rem;
}

.rishikesh-season-card h3{
    margin-top: 1rem;
    font-size: 1.4rem;
    font-family: 'Fredoka', sans-serif;
    color: #222;
}

.rishikesh-season-card p{
    margin-top: 1rem;
    line-height: 1.9;
    color: #555;
    font-family: 'Poppins', sans-serif;
}

/*=========================================== Blog Content ===========================================*/

.rishikesh-blog-content{
    max-width: 1100px;
    margin: 5rem auto 0;
}

.rishikesh-blog-section{
    margin-bottom: 5rem;
}

.rishikesh-blog-section h2{
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #222;
    font-family: 'Fredoka', sans-serif;
}

.rishikesh-blog-section img{
    width: 100%;
    max-width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.rishikesh-blog-section p{
    line-height: 2;
    color: #444;
    margin-bottom: 1.3rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

/*=========================================== Weather Table ===========================================*/

.rishikesh-weather-table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    overflow: hidden;
    border-radius: 15px;
}

.rishikesh-weather-table th,
.rishikesh-weather-table td{
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.rishikesh-weather-table th{
    background: #111;
    color: white;
}

/*=========================================== CTA ===========================================*/

.rishikesh-blog-cta{
    background: linear-gradient(135deg,#000,#2b2b2b);
    color: white;
    padding: 5rem 2rem;
    border-radius: 30px;
    text-align: center;
    margin-top: 5rem;
}

.rishikesh-blog-cta h2{
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: white;
    font-family: 'Fredoka', sans-serif;
}

.rishikesh-blog-cta p{
    max-width: 750px;
    margin: auto;
    line-height: 2;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.85);
    font-family: 'Poppins', sans-serif;
}

/*=========================================== FAQ ===========================================*/

.rishikesh-faq-section{
    width: 100%;
    padding: 5rem 7%;
}

.rishikesh-faq-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 3rem;
}

.rishikesh-faq-grid details{
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.rishikesh-faq-grid summary{
    font-weight: 600;
    cursor: pointer;
    line-height: 1.8;
    color: #222;
    font-family: 'Fredoka', sans-serif;
}

.rishikesh-faq-grid p{
    margin-top: 1rem;
    line-height: 1.9;
    color: #555;
    font-family: 'Poppins', sans-serif;
}

/*================================ CTA Button =================================*/

.rishikesh-cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--tertiary-text-color);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.rishikesh-cta-btn:hover{
    transform: translateY(-3px) scale(1.03);
}

.rishikesh-cta-btn:active{
    transform: scale(0.97);
}

/*================================ Responsive =================================*/

@media screen and (max-width:768px){

    .rishikesh-cta-btn{
        padding: 12px 26px;

        font-size: 0.95rem;
    }

}

/*=========================================== Responsive ===========================================*/

@media(max-width:991px){

    .rishikesh-blog-hero-content h1{
        font-size: 3rem;
    }

    .rishikesh-season-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .rishikesh-faq-grid{
        grid-template-columns: 1fr;
    }

    .rishikesh-blog-cta h2{
        font-size: 2.4rem;
    }
}

@media(max-width:768px){

    .rishikesh-blog-hero-section{
        min-height: 80vh;
        padding: 5rem 5%;
    }

    .rishikesh-blog-hero-content h1{
        font-size: 2.3rem;
    }

    .rishikesh-blog-hero-content p{
        font-size: 1rem;
    }

    .rishikesh-season-grid{
        grid-template-columns: 1fr;
    }

    .rishikesh-blog-section h2{
        font-size: 1.8rem;
    }

    .rishikesh-blog-section img{
        height: 260px;
    }

    .rishikesh-blog-cta h2{
        font-size: 2rem;
    }

    .rishikesh-blog-container{
        padding: 4rem 5%;
    }

    .rishikesh-faq-section{
        padding: 4rem 5%;
    }
}

@media(max-width:480px){

    .rishikesh-blog-hero-content h1{
        font-size: 1.9rem;
        line-height: 1.4;
    }

    .rishikesh-blog-section h2{
        font-size: 1.5rem;
    }

    .rishikesh-weather-table th,
    .rishikesh-weather-table td{
        padding: 10px;
        font-size: 14px;
    }

    .rishikesh-blog-cta{
        padding: 4rem 1.5rem;
    }

    .rishikesh-blog-cta h2{
        font-size: 1.7rem;
    }
}

 /* Heading Wrapper */
.rishikesh-heading-wrapper{
    width: 100%;

    text-align: center;

    margin-bottom: 3rem;
}

.rishikesh-small-heading{
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 18px;
}

.rishikesh-small-line{
    width: 85px;
    height: 3px;

    background: var(--tertiary-text-color);

    border-radius: 50px;
}

.rishikesh-small-heading h3{
    font-size: 1.05rem;

    font-weight: 500;

    letter-spacing: 0.5px;

    color: #1f1f1f;

    text-transform: uppercase;

    font-family: 'Poppins', sans-serif;
}

.rishikesh-heading-wrapper h2{
    font-size: 2rem;

    line-height: 1.15;

    font-weight: 600;

    color: #2b272d;

    font-family: 'Fredoka', sans-serif;

    max-width: 1200px;

    margin: auto;
}

/* ================= Responsive ================= */

@media screen and (max-width:768px){

    .rishikesh-heading-wrapper h2{

        line-height: 1.25;
    }

    .rishikesh-small-line{
        width: 60px;
    }
}

@media screen and (max-width:480px){

    .rishikesh-small-heading{
        gap: 10px;
    }

    .rishikesh-small-line{
        width: 45px;
    }
}

/*=========================================== TOC ===========================================*/

.rishikesh-toc{
    margin-top: 3rem;
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.rishikesh-toc h3{
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-text-color);
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
}

.rishikesh-toc-links{
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 15px;
}

.rishikesh-toc-links a{
    padding: 12px 22px;

    border-radius: 50px;

    background: #f5f5f5;

    text-decoration: none;

    color: #222;

    font-weight: 500;

    font-family: 'Poppins', sans-serif;

    transition: 0.3s ease;
}

.rishikesh-toc-links a:hover{
    background: var(--tertiary-text-color);

    color: white;

    transform: translateY(-2px);
}

@media(max-width:768px){

    .rishikesh-toc{
        padding: 1.5rem;
    }

    .rishikesh-toc-links{
        flex-direction: column;
    }

    .rishikesh-toc-links a{
        width: 100%;
    }
}