@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@font-face {
    font-family: "splash";
    src: url("../fonts/Coffee-Spark.ttf") format("truetype");
    font-style: normal;
}
:root {
    --primary-color-1: #34a9d3;
    --primary-color-2: #433092;
    --primary-color-3: #c9158d;
    --secondary-color-1: #b3ebf2;
    --secondary-color-2: #d7cded;
    --secondary-color-3: #fffcc9;
    --para: #787878;
}
* {
    font-family: "Nunito", sans-serif;
}
.f-splash {
    font-family: "splash";
}
.text-para {
    color: var(--para) !important;
}
.bg-primary-1 {
    background-color: var(--primary-color-1) !important;
}
.text-primary-1 {
    color: var(--primary-color-1) !important;
}
.bg-primary-2 {
    background-color: var(--primary-color-2) !important;
}
.text-primary-2 {
    color: var(--primary-color-2) !important;
}
.bg-primary-3 {
    background-color: var(--primary-color-3) !important;
}
.text-primary-3 {
    color: var(--primary-color-3) !important;
}
.bg-secondary-1 {
    background-color: var(--secondary-color-1) !important;
}
.bg-secondary-2 {
    background-color: var(--secondary-color-2) !important;
}
.bg-secondary-3 {
    background-color: var(--secondary-color-3) !important;
}
.bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.btn {
    width: fit-content;
    border-radius: 5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 800;
    line-height: normal;
    height: 40px;
    padding: 0px 5px 0px 15px;
}
.btn.icon-btn {
    padding-inline: 5px;
}
.btn > span {
    background-color: white;
    padding: 4px;
    border-radius: 1rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}
.section-heading > h2,
.section-heading > h2 > span {
    font-family: "splash";
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 4.5rem;
}
.section-heading > h2.outline,
.section-heading > h2.outline > span {
    -webkit-text-stroke-color: white !important;
    -webkit-text-stroke: 1px;
}
.section-heading > p {
    width: 90%;
    margin: auto;
}

/* SWIPER SLIDER */
.custom-swiper-nav {
    display: flex;
    column-gap: 5px;
}
.custom-swiper-nav > .custom-swiper-button-next,
.custom-swiper-nav > .custom-swiper-button-prev {
    width: 25px;
    height: 25px;
    display: grid;
    place-content: center;
    border-radius: 50px;
}
.custom-swiper-nav > .custom-swiper-button-next > i,
.custom-swiper-nav > .custom-swiper-button-prev > i {
    font-size: 1.5rem;
}
.swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background-color: var(--secondary-color-2);
    opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-color-2);
}

/* BOOTSTRAP CUSTOM */
.row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

/* HEADER SECTION */
header {
    width: 100%;
    height: 10vh;
    background-color: white;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}
header.scrolled {
    background-color: #f1f1f1;
}
header .logo {
    position: relative;
    bottom: -2rem;
    background-color: white;
    border-radius: 0rem 0rem 1.5rem 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
header.scrolled .logo {
    background-color: #f1f1f1;
}
header .logo:after,
header .logo:before {
    content: "";
    width: 1rem;
    height: 1rem;
    border: 5px solid white;
    position: absolute;
    top: 1.7rem;
    border-bottom: 0;
    z-index: -1;
}
header.scrolled .logo:after,
header.scrolled .logo:before {
    border-color: #f1f1f1;
}
header .logo:before {
    border-left: 0;
    border-radius: 0 100%;
    left: -0.7rem;
}
header .logo:after {
    border-right: 0;
    border-radius: 100% 0;
    right: -0.7rem;
}
header .logo > img {
    position: relative;
    bottom: 1rem;
    width: 85%;
}
header nav > a {
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
    color: #212529;
    padding: 0.4rem 0.8rem;
    text-decoration: none;
    letter-spacing: 1px;
}
header nav > a:hover {
    color: var(--primary-color-2);
}
header nav > a.active {
    color: white;
    background-color: var(--primary-color-2);
    font-weight: 800;
    border-radius: 1rem;
    border: 2px dashed var(--secondary-color-2);
    box-shadow: 0px 0px 5px 1px var(--secondary-color-2);
}

/* MOBILE MENU */
#mobileMenu .nav .nav-item .nav-link {
    width: unset;
    font-size: 2.5rem;
    color: var(--primary-color-1);
    text-transform: capitalize;
    font-family: "splash";
    letter-spacing: 2px;
}
#mobileMenu .nav .nav-item.active .nav-link {
    color: var(--primary-color-2);
}

/* HOME HERO SECTION */
.hero {
    position: relative;
    margin-top: 10vh;
}
.hero > video {
    display: block;
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

/* HOME WELCOME SECTION */
.welcome .destination-card {
    position: relative;
    cursor: pointer;
}
.welcome .destination-card img {
    border-radius: 1rem;
}
.welcome .destination-card p {
    position: absolute;
    bottom: 0px;
    width: -webkit-fill-available;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    background: linear-gradient(
        to top,
        rgba(67, 48, 146, 0.9),
        rgba(67, 48, 146, 0.7),
        rgba(67, 48, 146, 0.5),
        rgba(67, 48, 146, 0.3),
        rgba(67, 48, 146, 0)
    );
    padding: 20px 20px 10px;
    margin-bottom: unset;
    color: white;
    font-weight: 800;
    line-height: normal;
}

/* DESTINATION BG */
.destination-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 40rem;
}
.destination-bg .overlay {
    position: absolute;
    top: 0px;
    background-color: #00000050;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
}
.destination-bg .section-heading {
    position: relative;
    text-align: left;
    margin-bottom: 0rem;
    width: 50%;
}

/* RIDE CARD */
.ride-card {
    background-color: white;
    /*border: 2px solid var(--secondary-color-2);*/
    border-radius: 1rem;
    box-shadow: 0px 0px 5px 1px var(--secondary-color-2);
    /*padding: 0.5rem;*/
}
.ride-card > .ride-header > img {
    /*border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;*/
    border-radius: 1rem;
}
.ride-card > .ride-header > .ride-trill {
    background-color: var(--primary-color-2);
    color: white;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem;
    margin-bottom: 0.5rem;
}
.ride-card > .ride-header > .ride-trill > p {
    line-height: 1rem;
    font-size: 0.9rem;
    font-weight: 800;
    text-align: end;
    margin-bottom: unset;
}
.ride-card > .ride-header > .ride-trill > .bar {
    width: -webkit-fill-available;
    border: 2px solid;
    border-radius: 0.3rem;
    padding: 0.25rem;
}
.ride-card > .ride-header > .ride-trill > .bar > .progress {
    border-radius: 0.1rem;
    height: 1.5rem;
}
.ride-card > .ride-details {
    padding: .8rem 1rem;
}
.ride-card > .ride-details > h2 {
    /*font-family: "splash";*/
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color-2);
    margin-bottom: unset;
    text-align: center;
}
.ride-card > .ride-details > p {
    font-size: 0.9rem;
    color: var(--para);
    margin-bottom: unset;
}
.ride-card > .action {
    --bs-gutter-x: 0.5rem;
    display: none;
}
.ride-card .btn {
    width: auto;
    border-radius: 0.5rem;
    padding: 0px 5px 0px 10px;
    align-items: center;
    justify-content: end;
}
.ride-card .btn > span {
    border-radius: 0.3rem;
}

/* RIDE SWIPER SLIDER */
.rideSwiper .swiper-wrapper {
    align-items: center;
}
.rideSwiper .swiper-slide {
    padding: 0.5rem;
}
.rideSwiper .swiper-slide.swiper-slide-active .ride-card {
    padding: unset;
}
.rideSwiper .swiper-slide.swiper-slide-active .ride-card > .ride-details > p {
    margin-bottom: 0.5rem;
}
.rideSwiper .swiper-slide.swiper-slide-active .ride-card > .action {
    display: flex;
}
.swiper-pagination {
    position: unset;
}

.rides {
    position: absolute;
    bottom: -20rem;
    width: 100%;
}

.destination {
    height: 64rem;
}

/* HOME OFFER SECTION */
#offers .offer {
    display: flex;
    align-items: center;
}
#offers .offer > div:first-child {
    width: 30%;
}
#offers .offer > .offerSwiper {
    width: 70%;
}
#offers .offer > .offerSwiper img {
    border: 2px solid var(--secondary-color-2);
    border-radius: 1rem;
}
#offers .offer .section-heading h2 {
    font-size: 3rem;
    line-height: 3.5rem;
    margin-bottom: 0px;
}
#offers .offer .section-heading p {
    width: 100%;
    font-weight: 700;
}


#parkside .service-card {
    background-color: white;
    border: 2px solid var(--secondary-color-2);
    border-radius: 1rem;
    padding: .5rem;
    text-align: center;
}
#parkside .service-card > img {
    width: 75%;
}
#parkside .service-card > p {
    font-weight: 600;
    margin-top: .5rem;
    margin-bottom: 0px;
    line-height: normal;
}

#costume {
    height: 32vw;
}
#costume .destination-bg {
    height: 24vw;
}
#costume .costume {
    position: absolute;
    bottom: -100px;
    width: -webkit-fill-available;
}

/* HOME FOOD COURT */
#food-court .food-content {
    width: 50%;
}
#food-court .food-content .section-heading > p {
    width: 80%;
}
#food-court .top-to-bottom {
    position: relative;
    width: 25%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}
#food-court .top-to-bottom img {
    position: relative;
    width: 50%;
}
#food-court .top-to-bottom img:nth-child(1) {
    animation: topBottom 30s linear infinite;
}
#food-court .top-to-bottom img:nth-child(2) {
    animation: bottomTop 30s linear infinite;
}

/* Keyframes */
@keyframes topBottom {
    0% {
        top: -150px;
    }
    100% {
        top: 100vh;
    }
}
@keyframes bottomTop {
    0% {
        bottom: -150px;
    }
    100% {
        bottom: 100vh;
    }
}

    
@keyframes leftRight {
  0% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -100%;
  }
}
@keyframes rightLeft {
  0% {
    background-position-x: -100%;
  }
  100% {
    background-position-x: 0%;
  }
}

#how-to-reach .reach-card {
    background-color: white;
    border: 2px solid var(--secondary-color-2);
    border-radius: 1rem;
    padding: 2rem;
}
#how-to-reach .reach-card h5 {
    font-weight: 700;
}
#how-to-reach .reach-card p {
    margin-bottom: 0px;
}

#park-time .time-card {
    background-color: var(--secondary-color-2);
    border-radius: 1rem;
}
#park-time .time-card > .time-header {
    background-color: var(--primary-color-2);
    border-radius: 1rem 1rem 0rem 0rem;
    padding: 1rem;
}
#park-time .time-card > .time-header > h4 {
    font-weight: 700;
    color: white;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0px;
}
#park-time .time-card > .time-body {
    padding: 1rem;
    text-align: center;
}
#park-time .time-card > .time-body > h5 {
    padding: 1rem;
    margin-bottom: unset;
}
#park-time .time-card > .time-body > h5:first-child {
    border-bottom: 2px solid white;
}

/* HOME CERTIFICATES SECTION */
#certificates .certificate-card {
    background-color: white;
    padding: .5rem;
    border: 2px solid var(--secondary-color-2);
    border-radius: 1.5rem;
    position: relative;
    height: 100%;
    width: 20rem;
}
#certificates .certificate-img {
    width: 100%;
}
#certificates .certificate-img img {
    width: 100%;
    border-radius: 1rem;
}
#certificates .certificate-details {
    display: none;
}
#certificates .certificate-details > h5 {
    font-weight: 800;
}
#certificates .certificate-details > p {
    font-size: .9rem;
    line-height: normal;
    margin-bottom: 0px;
}
#certificates .swiper-slide {
    width: auto;
    height: -webkit-fill-available;
}
/*#certificates .swiper-slide.swiper-slide-active {
    width: 700px !important;
}*/
#certificates .swiper-slide.swiper-slide-active .certificate-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 500px;
}
#certificates .swiper-slide.swiper-slide-active .certificate-img {
    width: 40%;
}
#certificates .swiper-slide.swiper-slide-active .certificate-details {
    display: block;
    width: 60%;
}

/* HOME REELS SECTION */
#reels .reel {
    position: relative;
    line-height: 0;
}
#reels .reel > img,
#reels .reel > video {
    border: 5px solid var(--secondary-color-2);
    border-radius: 1rem;
}

/* FOOTER */
footer .top .logo {
    width: 250px;
}
footer .top a {
    color: #212529;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

/* BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    z-index: 9;
    width: -webkit-fill-available;
    height: 3.5rem;
    background-color: var(--secondary-color-2);
    display: none;
    align-items: center;
    justify-content: space-around;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}
.bottom-nav > a {
    text-decoration: none;
    width: 3.5rem;
    display: grid;
    place-items: center;
    color: var(--primary-color-2);
    font-size: 0.6rem;
    font-weight: 900;
    padding: 0.2rem;
}
.bottom-nav > a.active {
    background-color: var(--primary-color-2);
    border-radius: 0.5rem;
    color: white;
    box-shadow: 0px 0px 5px 1px #43309250;
}
.bottom-nav > a#booknow-btn {
    width: 5rem;
    height: 5rem;
    font-family: "splash";
    font-size: 1rem;
    font-size: 1.2rem;
    font-weight: unset;
    letter-spacing: 1px;
    font-weight: unset;
    color: white;
    position: relative;
    bottom: 1.5rem;
    border: 5px solid var(--secondary-color-2);
    padding: unset;
}

@media (max-width: 1399.98px) {
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
    /* HEADER SECTION */
    header {
        height: 8vh;
    }
    header .logo {
        bottom: -1.5rem;
    }
    header .logo > img {
        bottom: 0.7rem;
    }

    /* HOME HERO SECTION */
    .hero {
        margin-top: 8vh;
    }
    .hero > video {
        height: 40vh;
    }

    .section-heading > h2,
    .section-heading > h2 > span {
        font-size: 2.5rem;
        line-height: 2.6rem;
        margin-bottom: 1rem;
    }
    .section-heading > p {
        width: 100%;
    }

    /* DESTINATION BG */
    .destination-bg .section-heading {
        text-align: center;
        width: 100%;
    }

    /* RIDE SWIPER SLIDER */
    .rideSwiper .swiper-slide {
        padding: .5rem;
    }

    /* HOME OFFER SECTION */
    #offers .offer {
        flex-direction: column-reverse;
    }
    #offers .offer > div:first-child, #offers .offer > .offerSwiper {
        width: 100%;
    }
    #offers .offer .section-heading h2 {
        margin-bottom: 1rem;
    }

    /* HOME FOOD COURT */
    #food-court .food-content {
        width: 100%;
    }
    #food-court .food-content .section-heading > h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    #food-court .food-content .section-heading > p {
        width: 100%;
    }
    #food-court .top-to-bottom {
      overflow: hidden;
      width: 100%;
      height: 200px;
      background-image: url('/img/food-m.webp');
      background-repeat: repeat-x;
      background-position: 0 0;
      background-size: cover;
      animation: leftRight 40s linear infinite;
    }
    #food-court .top-to-bottom.second {
      animation: rightLeft 40s linear infinite;
    }

    /* BOTTOM NAV */
    .bottom-nav {
        display: flex;
    }
}

@media (max-width: 575.98px) {
    /* HOME WELCOME SECTION */
    .welcome .destination-card > p {
        font-size: .8rem;
        padding: 15px 15px 8px;
    }
    
    .ride-card > .ride-details > h2 {
        /*font-family: "splash";*/
        font-size: 1rem;
    }
    
    #parkside .row {
        --bs-gutter-x: .8rem;
        --bs-gutter-y: .8rem;
    }
    #parkside .service-card > p {
        font-size: .7rem;
    }
    
    #costume {
        height: 110vw;
    }
    #costume .destination-bg {
        height: 60vw;
    }
    #costume .costume {
        bottom: -170px;
    }
    
    #certificates .swiper-slide.swiper-slide-active .certificate-card {
        display: block;
        width: 100%;
    }
    #certificates .certificate-details {
        padding: .5rem .5rem 0rem .5rem;
    }
    #certificates .swiper-slide.swiper-slide-active .certificate-img, #certificates .swiper-slide.swiper-slide-active .certificate-details {
        width: 100%;
    }
    
    footer .top a {
        justify-content: center;
    }
    footer .row {
        --bs-gutter-y: 2rem;
    }
    
}
