﻿@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --main-color: #f1592a;
    --black: #000000;
    --white: #ffffff;
    --lightcolor: #2e3192;
    --border:.2rem solid var(--black);
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}



* {
    font-family: "Nunito", system-ui;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
}


*::selection{
    background-color: var(--main-color);
    color: var(--white);
}


::-webkit-scrollbar{
    height:.5rem;
    width: 1rem;

}

::-webkit-scrollbar-track{
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}

html{
    font-size:62.5%;
    overflow-x: hidden;
    scroll-behavior:smooth;
    scroll-padding-top: 6rem;
}

section{
    padding: 3rem 2rem;
    max-width: 1200px;
    margin:0 auto;
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    background-color: var(--main-color);
    cursor:pointer;
    color:var(--white);
    font-size: 1.8rem;
    padding: 1rem 3rem;

}

.btn:hover{
    background-color:var(--black);
}

.header{
    position:sticky;
    top:0; left:0; right:0;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 1000;
}

.header .flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    padding: 1.5rem 2rem;
}

.header .flex .logo img{
    height: 4.5rem;
}


.header .flex .navbar a {
        margin:0 1rem;
        font-size: 2rem;
        color:var(--lightcolor);
  }

.header .flex .navbar a:hover{
    text-decoration:underline;
    color:var(--main-color);
}

#menu-btn{
    display:none;
    font-size: 2.5rem;
    color:var(--black);
    cursor:pointer;
}

.home-bg{
    background:linear-gradient(90deg, var(--white), transparent 70%), url(../images/home-two.jpeg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home-bg .home{
    min-height: 70rem;
    display:flex;
    align-items:center;
}

.home-bg .home .content{
    width: 50rem;
    text-align:center;
}

.home-bg .home .content h3{
    font-size: 6rem;
    color:var(--black);
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.home-bg .home .content p{
    padding:1rem 0;
    font-size: 1.5rem;
    color:var(--black);
    line-height: 2;
}


.about{
    display:flex;
    align-items: center;
    flex-wrap: wrap;
    gap:2rem;
}

.about .image{
    flex: 1 1 40rem;
}

.about .image img{
   width: 100%;
}

.about .content{
    flex:1 1 40rem;
}

.about .content h3{
    font-size: 4rem;
    color: var(--black);
    padding-bottom: 1rem;
}

.about .content p{
    padding:1rem 0;
    line-height: 2;
    color:var(--lightcolor);
    font-size: 1.5rem;
}

/*services*/
.heading-title {
    font-size: 6rem;
    text-align: center;
}


.home-packages .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}

    .home-packages .box-container .box {
        border: var(--border);
        box-shadow: var(--box-shadow);
        background: var(--white);
    }

        .home-packages .box-container .box .image {
            height: 25rem;
            overflow: hidden;
        }

            .home-packages .box-container .box .image img {
                height: 100%;
                width: 100%;
                object-fit: cover;
                transition: .2s linear;
            }

        .home-packages .box-container .box .content {
            padding: 2rem;
            text-align: center;
        }

            .home-packages .box-container .box .content h3 {
                font-size: 2.5rem;
                color: var(--black);
            }

            .home-packages .box-container .box .content p {
                font-size: 1.5rem;
                color: var(--light-black);
                line-height: 2;
                padding: 1rem 0;
            }

.booking .book-form {
    padding: 2rem;
    background: var(--light-bg);
}

    .booking .book-form .flex {
        display: block;
        flex-wrap: wrap;
        gap: 2rem;
    }

        .booking .book-form .flex .inputBox {
            flex: 1 1 42rem;
        }

            .booking .book-form .flex .inputBox input {
                width: 100%;
                padding: 1.2rem 1.4rem;
                font-size: 1.6rem;
                color: var(--light-black);
                text-transform: none;
                margin-top: 1.5rem;
                border: var(--border);
            }

                .booking .book-form .flex .inputBox input:focus {
                    background: var(--black);
                    color: var(--white);
                }

                    .booking .book-form .flex .inputBox input:focus::placeholder {
                        background: var(--black);
                        color: var(--light-white);
                    }

        .booking .book-form .flex .inputBox {
            font-size: 2rem;
            color: var(--light-black);
        }

    .booking .book-form .btn {
        margin-top: 2rem;
    }

/*services ends*/
/*awards starts*/
.awards {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

 .awards .image {
        flex: 1 1 40rem;
        text-align:center;
    }

/*awards ends*/

/*gallery starts*/
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1200px;
    padding: 20px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 20px);
    margin: 10px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover {
        transform: scale(1.05);
    }

    .gallery-item:hover img {
            transform: scale(1.1);
        }
/*gallery ends*/

/*footer*/
.footer {
    background: url(..//images/footer-bg.jpeg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


    .footer .box-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
        gap: 3rem;
    }

        .footer .box-container .box h3 {
            color: var(--white);
            font-size: 2.5rem;
            padding-bottom: 2rem;
        }

        .footer .box-container .box a {
            color: var(--light-white);
            font-size: 1.5rem;
            padding-bottom: 1rem;
            display: block;
        }

            .footer .box-container .box a i {
                color: var(--main-color);
                padding-right: .5rem;
                transition: .2s linear;
            }

            .footer .box-container .box a:hover i {
                padding-right: .2rem;
            }


    .footer .credit {
        text-align: center;
        padding-top: 3rem;
        margin-top: 3rem;
        border-top: .1rem solid var(--light-white);
        font-size: 2rem;
        color: var(--white);
    }
        /*footer ends*/
        /*media queries*/

        @media (max-width:991px) {

            html {
                font-size: 55%;
            }
        }


        @media (max-width:768px) {

            #menu-btn {
                display: inline-block;
                transition: .2s linear;
            }

                #menu-btn.fa-times {
                    transform: rotate(180deg);
                }

            .header .flex .navbar {
                position: absolute;
                top: 99%;
                left: 0;
                right: 0;
                background-color: var(--white);
                border-top: var(--border);
                border-bottom: var(--border);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: .2s linear;
            }

                .header .flex .navbar.active {
                    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
                }

                .header .flex .navbar a {
                    display: block;
                    margin: 2rem;
                }

            .home-bg {
                background-position: left;
            }

                .home-bg .home {
                    justify-content: center;
                }

                    .home-bg .home .content h3 {
                        font-size: 4rem;
                    }

            .about .content h3 {
                font-size: 3rem;
            }
        }

 .contact .row{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:2rem;
}

.contact .row .image{
    flex:1 1 50rem;
}

.contact .row .image img{
    width:100%;
}


.contact .row form{
    flex:1 1 30rem;
    border:var(--border);
    padding:2rem;
    text-align: center;
}

.contact .row form h3{
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color:var(--black);
}

.contact .row form .box{
    width:100%;
    padding: 1.4rem;
    font-size: 1.8rem;
    color:var(--black);
    border:var(--border);
    margin: 1rem 0;
}


@media (max-width:450px) {

    html {
        font-size: 50%;
    }
}