/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Yatra+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sura:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --white-color: #ffffff;
    --backgound-color: #f7f7f7;
    --mobilenav-color: #f5f5f5;
    --text-color: #2b2a29;
    --brand-yellow: #fbad05;
    --brand-red: #710605;
    --brand-orange: #ff6600;

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Yatra One", system-ui;
    --h1-font-size: 1.5rem;
    --normal-font-size: 0.938rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-medium: 500;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
    :root {
        --normal-font-size: 1rem;
    }
}
i.ri-menu-line,
i.ri-close-large-line {
    color: #e64326;
    font-size: 25px;
}
/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}
.altfont {
    font-family: "Sura", serif;
}
.baloo {
    font-family: "Baloo 2", cursive;
}

i.ri-instagram-line,
i.ri-youtube-line {
    color: #ff6600;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--backgound-color);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

/*=============== HEADER & NAV ===============*/
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--backgound-color);
    border-bottom: 1.5px solid var(--brand-orange);
    z-index: var(--z-fixed);
}

.nav {
    position: relative;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    color: var(--text-color);
    font-weight: var(--font-medium);
}

.nav__close,
.nav__toggle {
    display: flex;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding-right: 25px;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
    .nav__menu {
        position: fixed;
        left: -100%;
        top: 0;
        background-color: var(--mobilenav-color);
        width: 100%;
        height: 100%;
        padding: 6rem 3.5rem 4.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: left 0.4s;
    }

    .nav__item {
        transform: translateX(-150px);
        visibility: hidden;
        transition: transform 0.4s ease-out, visibility 0.4s;
    }

    .nav__item:nth-child(1) {
        transition-delay: 0.1s;
    }
    .nav__item:nth-child(2) {
        transition-delay: 0.2s;
    }
    .nav__item:nth-child(3) {
        transition-delay: 0.3s;
    }
    .nav__item:nth-child(4) {
        transition-delay: 0.4s;
    }
    .nav__item:nth-child(5) {
        transition-delay: 0.5s;
    }
}

.nav__list,
.nav__social {
    display: flex;
}

.nav__list {
    flex-direction: column;
    row-gap: 3rem;
}

.nav__link {
    position: relative;
    color: var(--text-color);
    font-size: var(--h1-font-size);
    font-weight: var(--font-medium);
    display: inline-flex;
    align-items: center;
    transition: opacity 0.4s;
}

.nav__link i {
    font-size: 2rem;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.nav__link span {
    position: relative;
    transition: margin 0.4s;
}

.nav__link span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--text-color);
    transition: width 0.4s ease-out;
}

/* Animation link on hover */
.nav__link:hover span {
    margin-left: 2rem;
}

.nav-logo img {
    width: 90px;
}
.nav__link:hover i {
    opacity: 1;
    visibility: visible;
}

.nav__link:hover span::after {
    width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
    opacity: 0.4;
}

.nav__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.nav__social {
    column-gap: 1rem;
}

.nav__social-link {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: transform 0.4s;
}

.nav__social-link:hover {
    transform: translateY(-0.15rem);
}

/* Show menu */
.show-menu {
    left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
    visibility: visible;
    transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
    .container {
        margin-inline: auto;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }

    .nav__link {
        font-size: var(--normal-font-size);
    }

    .nav__link i {
        font-size: 1.5rem;
    }

    .nav__list {
        flex-direction: row;
        column-gap: 3.5rem;
    }

    .nav__menu {
        display: flex;
        align-items: center;
        column-gap: 3.5rem;
    }
}

/* create button with outline with brand color */
.btn-outline {
    color: var(--brand-orange);
    border: 2px solid var(--brand-orange);
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: var(--font-medium);
    transition: background-color 0.4s, color 0.4s;
}

.btn-outline:hover {
    background-color: var(--brand-orange);
    color: var(--white-color);
}

/* create button with fill with brand color */
.btn-fill {
    color: var(--white-color);
    background-color: var(--brand-orange);
    padding: 0.5rem 1.5rem;

    border-radius: 0.5rem;
    font-weight: var(--font-medium);
    transition: background-color 0.4s, color 0.4s;
}

.btn-fill:hover {
    color: var(--white-color);
    background-color: var(--brand-red);
}

.swiper {
    width: 100vw;
}
.img-fluid {
    width: 100%;
    height: 100%;
}

/* responsive below 720p */
@media screen and (max-width: 720px) {
    .main-content {
        margin-top: 70px;
    }
    .container {
        margin: 0 !important;
    }
    img.peacock {
        transform: rotate(300deg);
        height: 123px;
        position: absolute;
        top: -82px;
        right: 3px;
    }
}

.text-brand {
    color: var(--brand-red);
}

/* responsive above 720p */
@media screen and (min-width: 720px) {
    .main-content {
        margin-top: 100px;
    }
    img.peacock {
        transform: rotate(290deg);
        height: 229px;
        position: absolute;
        top: -180px;
        right: 25px;
    }
}
/* create a dashbed border with red color */
.dashed-border-red {
    border: 1px dashed var(--brand-red);
    border-radius: 0.5rem;
}
.cards-border-red {
    padding: 5px;
    background: #fff6f0;
    border: 2px dashed var(--brand-red);
    border-radius: 0.5rem;
}

.cards-border-v2 {
    padding: 5px;
    background: #710605;
    border: 2px solid #ffffff;
    border-radius: 0.5rem;
}
.bg-brand {
    background-color: var(--brand-red);
}
.niyam ul {
    list-style-type: decimal;
    margin-left: 20px;
}
.niyam li {
    margin-bottom: 10px;
}
.badge-new {
    border-radius: 20px;
    padding: 2px 11px;
    position: absolute;
    margin-top: -4px;
    margin-left: -16px;
    color: white;
    background: var(--brand-red);
    border: 2px solid #f7f7f7;
}
.brand-dark{
    background-color: #242424;
;
}
