@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --bg-body: #c2133c;
    /* --bg-card: #74172c; */
    --bg-card: #74172c96;
    --text-heading: #f2ce92;
    --text-light: #ffffff;
    --paragraph-font: "Barlow", sans-serif;
    --heading-font: "Barlow Semi Condensed", sans-serif;
    --heading-font-deep: "Barlow Condensed", sans-serif;
    ;
}

p{
    font-family: var(--paragraph-font);
    font-size: 1rem;
}

h1,h2,h3{
    font-family: var(--heading-font-deep);
}

nav.navbar{
    margin: 0;
    padding: 0;
}

.bg-navbar, .bg-footer {
    /* background-color: #ad2c4a; */
    background-color: #010101;
}

.bg-body {
    /* background-color: #74172c; */
    background-color: #c2133c;
}

.bg-card {
    /* background-color: #510217; */
    background-color: #74172c;
}

.text-heading {
    color: #f2ce92;
}

body {
    background-color: var(--bg-body);
    /* background-color:#ad2c4a; */
    color: var(--text-light);
    font-family: var(--heading-font);
    position: relative;
}

/* todo: Navbar Design Start */

nav.navbar.navbar-expand-lg.bg-body.text-light.shadow-sm {
    margin: 0;
    padding: 0;
}

.navbar .nav-item .nav-link {
    color: var(--text-light);
    font-size: 18px;
}

.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
    border: none;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler .navbar-toggler-icon,
.navbar-toggler .navbar-toggler-icon:active,
.navbar-toggler .navbar-toggler-icon:focus {
    border: none;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler i {
    color: #ffffff;
    font-size: 22px;
}

/* todo: Navbar Design End */

/* todo: Slider Start */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.swiper-button-prev,.swiper-button-next{
    /* color: var(--text-heading); */
    color: rgba(188, 68, 96, 0.7);
}

span.swiper-pagination-bullet {
    padding: 5px;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active
{
    /* background: yellow; */
    background: #BC4460;
    padding: 5px 12px;
    border-radius: 5px;
}

.hero-slider .image-box{
    width: 100%;
    height: 500px;
}

@media(min-width: 605px) and (max-width: 991px){
    .hero-slider .image-box{
        width: 100%;
        height: 350px;
    }
}

@media(min-width: 300px) and (max-width: 600px){
    .hero-slider .image-box{
        width: 100%;
        height: 250px;
    }
}

/* todo: Slider End */

/* todo: About Start */
.about-section{
    /* padding: 30px 0; */
    background-color: var(--bg-body);
}

.about-section .home-about{
    /* padding: 40px 0; */
    padding-top: 65px;
}

.about-section .home-about img{
    border-radius: 5px;
}

/* todo: About End */

/* todo: Package Start */

.package-section{
    padding-top: 20px;
}

/* todo: Package End */

/* todo: Gallery Start */

#gallerySection{
    padding-top: 100px;
    padding-bottom: 65px;
}

.home-gallery .image-box{
    width: 100%;
    overflow: hidden;
}

.home-gallery .image-box img{
    border-radius: 10px;
    transition: 0.4s all ease-in-out;
}

.home-gallery .image-box img:hover{
    border-radius: 0;
    transform: scale(1.1);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.home-gallery .heading .title{
    font-size: 48px;
    display: block;
    font-family: var(--heading-font-deep);
}

.home-gallery .heading .text{
    font-size: 22px;
    line-height: 32px;
    font-family: var(--paragraph-font);
    font-weight: 300;
}

@media (min-width:605px) and (max-width: 991px){
    .home-gallery .heading .title{
        font-size: 30px;
        display: block;
        font-family: var(--heading-font-deep);
    }

    .home-gallery .heading .text{
        font-size: 14px;
        line-height: 16px;
        font-family: var(--paragraph-font);
        font-weight: 300;
    }
}

/* todo: Gallery End */

/* todo: Old */

.card {
    transition: all .3s ease;
    background-color: var(--bg-card);
    color: var(--text-light);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
}
