@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

:root{
    --font-lato : "Lato", sans-serif;
    --font-lora : "Lora", serif;

    --primary : 3.125rem;
    --secondary : 2rem;
    --text : 1.125rem;
    --accent : 1.125rem;

    --primary-color : #ae8a5e;
    --second-color : #3fc1ce;
    --text-black : #000;
    --text-white : #fff;
    --accent-color : #fff;
    --accent-background : #000;
}


*{
    margin : 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Lora", serif;
}

h1,h2{
    font-family: var(--font-lato);
    font-size: var(--primary);
    padding-bottom: 30px;
}

p{
    font-family: var(--font-lora);
    font-size: var(--text);
}

button{
    font-family: var(--font-lora);
    font-size: var(--accent);
    font-weight: 500;
    line-height: 1em;
    padding: 0.6875rem 1.375rem;
    background: var(--accent-background);
    color: var(--accent-color);
    border: none;
    cursor: pointer;
}

section{
    padding: 6em 19em 0 8em;
    width: 100%;
}

.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.img-fluid{
    width: 100%;
    height: auto;
}

.grid{
    display: grid;
}

/* whatsaap float icon */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-float img {
    animation: icon 2s infinite;
}

@keyframes icon {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
    
}

/* header css */

nav{
    position: fixed;
    top: 0;
    background:#f7f7f7;
    box-shadow: 0.1rem 0.3rem 0.5rem rgba(0,0,0,.1);
    height: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3% 7%;
    z-index: 100;

}

nav > a{
    font-size: var(--secondary-font);
    line-height: var(--text-font-line-height);
    font-weight: bold;
    text-decoration: none;
}

nav a img{
    max-width: 250px;
}

nav ul{
    display: flex;
    list-style: none;
}

.nav-links{
    overflow: hidden;
}

nav ul li{
    line-height: var(--text-font-line-height);
    padding: 8px 25px;
}

nav ul li a{
    color: var(--text-black);
    text-decoration: none;
}

nav ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    display: block;
    margin: auto;
    transition: 1s;
}

nav ul li:hover::after{
    width: 100%;
}

.header-cta a{
    text-decoration: none;
    color: var(--text-white);
    padding: 8px 10px;
    border-radius: 5px;
    background: var(--accent-background);
}

.header-cta a span img{
    width: 15px;
    height: auto;
    margin-right: 10px;
}

.close,.menu{
    width: 15px;
    display: none;
}

/* hero banner */

.hero{
     background: url(../images/yashwant-banner.webp); 
    /* background:linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgb(0, 0, 0)); */
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 0;
}


.hero-content{
    /* background: rgba(0, 0, 0, 0.5); */
    max-width: 1000px;
    padding: 50px;
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    display: none;

}

.hero-content h1{
    color: var(--text-white);
    font-size: 4rem;
}

.hero-content p{
    color: var(--text-white);
    font-size: 2rem;

}
    /* About */

.about-wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.about-wrapper .about-img img{
    width: 100%;
    height: auto;
}

.about-wrapper .about-content{
    padding-left: 50px;
}

.about-content p {
    font-size: 17px;
    text-align: left;
}
/* <!-- Why VTP Codename Elevate --> */

.why-vtp-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    
}

.why-vtp-col{
    /* display: table-cell; */
    /* padding: 50px; */
    border: 1px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    border-radius: 8px;
}

.why-vtp-col .why-vtp-content{
    padding: 20px;
    text-align: center;

}

.why-vtp-col .why-vtp-content h2{
    font-size: 1.5rem;
    padding-bottom: 10px;
}

.why-vtp-col .why-vtp-content p{
    color: var(--text-black);
    font-size: 1rem;
}

/* .why-vtp-grid .vtp-img{
    width: auto;
    height: 130px;
} */

.why-vtp-grid .vtp-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Amenites */

.logos{
    overflow: hidden;
    padding: 20px 0;
    background: var(--text-white);
    white-space: nowrap;
    position: relative;
}

.logos::before,.logos::after{
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
}

.logos::before{
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), #fff);
}

.logos::after{
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), #fff);
}

.logos:hover .logos-slide{
    animation-play-state: paused;
}

.logos-slide{
    display: inline-block;
    animation: 20s slide infinite linear;
}

.logos-slide .logo-box{
    display: inline-block;
    text-align: center;
}

.logos-slide .logo-box p{
    font-size: 14px;
}

.logos-slide img{
    width: 60px;
    height: auto;
    margin: 0 80px;
}

/* price table */

.price-table table{
    border-collapse: collapse;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.price-table table th,td{
    padding: 10px 8px;
    border: 1px solid #000;
}

.price-table table th{
    background: var(--primary-color);
    color: var(--text-white);
}

button.table-btn {
    max-width: 150px;
    width: 100%;
}

/* Floor Plan */

.floor-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 300px));
    gap: 50px;
}

.floor-col{
    display: grid;
    gap: 10px;
    text-align: center;
    box-shadow: 5px 5px 20px 1px #2796c58c;
    padding: 10px;
}

.floor-grid .floor-col img{
    width: 100%;
    height: auto;
    object-fit: cover;
     filter: blur(3px); 
}

/* Location */

.location-wrapper{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
}

.location-wrapper .location-box{
    max-width: 600px;
    min-height: 400px;
}

.location-wrapper .location-box iframe{
    width: 100%;
    height: 100%;
}

.location-cta{
    padding-top: 20px;
    text-align: left;
}

/* accordion */
.location-wrapper .accordion{
    /* margin-left: 5rem; */
}

.accordion-title{
    color: var(--text-white);
    background: var(--primary-color);
    padding: 10px;
    transition: 1s;
    cursor: pointer;
}

.accordion-title:hover{
    background: var(--second-color);
}

.accordion-content{
    background: var(--primary-color);
    padding: 10px;
    /* display: none; */
}

.accordion-item.active .accordion-content{
    display: block;
}

.accordion-content ul li{
    color: var(--text-white);
    list-style: none;
    padding: 15px 0;
}

.accordion-content ul li span {
    max-width: 19px;
    display: inline-block;
    width: 100%;
    margin-right: 10px;
    vertical-align: middle;
}

.accordion-content ul li span img{
    width: 100%;
}



/* Footer */

.footer{

    background: var(--primary-color);
}

.footer .container p{
    font-size: 0.75rem;
    text-align: center;
    color: var(--text-white);
    padding: 20px 0;
}

.qr-wrapper {
    max-width: 700px;
    margin: auto;
}

.qr-wrapper .qr-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-items: center;
    gap: 20px;
}

.qr-wrapper .qr-col{
    width: 115px;
}

.qr-wrapper .qr-col img{
    width: 100%;
    height: auto;
}

.footer-link-col{
    text-align: center;
    padding: 30px 0;
}

.footer-link-col .footer-list .footer-links a{
    color: var(--text-white);
    text-decoration: none;
}

.footer-list .divider{
    color: var(--text-white);
}

.footer-list h2{
    padding: 0;
    font-size: 1.5rem;
    color: var(--text-white);
}

.footer-link-col .footer-list p{
    padding-top: 10px;
}


.footer-list .footer-link a{
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
}

.footer-divider{
    width: 100%;
    height: 1px;
    background: var(--text-white);
}



/* video css */

.video-wrapper{
    margin-top: 80px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* onload popup */

.onload-popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 100%;
    background:var(--text-white);
    border-radius: 8px;
    display: none;
    z-index: 100;
}

.onload-popup .close-btn{
    display: block;
    position: absolute;
    right: 0px;
    border-radius: 0 8px 0 0;  
    border: none;
    cursor: pointer;
    font-size: 30px;
}

.popup-wrapper{
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    grid-template-columns: 180px 396px;
    gap: 20px;
}

.popup-box{
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: var(--text-white);
}

.popup-box .icon-box{
    text-align: center;
}

.popup-box .icon-box img{
    width: 30px;
    height: auto;
}

.popup-wrapper .popup-right-col{
    padding: 30px;
    text-align: center;
}

.popup-wrapper .popup-right-col img{
    max-width: 120px;
    width: 100%;
}

.popup-right-col .form-divider{
    margin-bottom: 10px;
}

.popup-right-col b > p{
    padding: 8px 0;
    font-size: 1.2rem;
}

.popup-right-col p{
    font-size: 14px;
}

/* onload form */

.popup-form form .input-field{
    /* max-width: 266px; */
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #000;
    border-radius: 2px;
}

.popup-form form .select-box{
    display: flex;
    gap: 5px;
    align-items: flex-end;
}

.popup-form form .select-box .input-select{
    width: 70%;
}

.popup-form form .input-field:focus{
    outline: none;
}

.popup-form form .download-btn{
    margin-top: 20px;
}

/* Gallery */

.gallery{
    padding-top: 10rem;
}

.gallery .container .gallery-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


.gallery-wrapper{
    width: 900px;
    display: flex;
    overflow-x: scroll;
}

.gallery-wrapper::-webkit-scrollbar{
    display: none;
}

.gallery-wrapper .img-box{
    width: 100%;
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    grid-template-columns: auto auto auto;
    gap: 20px;
    padding: 10px;
    flex: none;
}


.gallery-wrapper .img-box img{
    width: 100%;
}

#nextBtn,#backBtn{
    width: 50px;
}

#nextBtn{
    position: absolute;
    top: 50%;
    right: 0;
}

#backBtn{
    position: absolute;
    top: 50%;
    left: 0;
}

/* onclickpopup */




@keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translate(-100%);
    }
}


@media(max-width: 768px){

    h1{
        font-family: var(--font-lato);
        font-size: var(--primary);
    }

    section{
        padding: 4em 2em 0 2em;
        width: 100%;
    }

    .nav-links ul li{
        display: block;
    }

    .nav-links{
        position: fixed;
        background: var(--primary-color);
        height: 100vh;
        width: 100%;
        top: 0;
        right: -100%;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    
    nav ul{
        display: block;
    }

    nav ul li a{
        color: var(--text-white);
        text-decoration: none;
    }

    .header-cta a{
        display: none;
    }

    .close,.menu{
        width: 20px;
        display: block;
        cursor: pointer;
        margin: 10px;
    }

    .nav-links ul{
        padding: 30px;
    }
}


@media(max-width: 600px){
    h1,h2{
        font-size: 1.75rem;
    }

    section {
        padding: 4em 1em 0 1em;
        width: 100%;
    }

    nav{
        position: relative;
        height: 120px;
    }

    nav a img {
        width: 200px;
    }

    /* hero */

    .hero{
        background: url(../images/mobile-banner.webp);
        /* background:linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.789)), url(../images/yashwant-banner.webp); */
        min-height: 50vh;
        background-position: center;
        background-size: cover;
        position: relative;
    }
    
    .hero-content {
        background: rgba(0, 0, 0, 0.5);
        max-width: 1000px;
        padding: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 310px;
        width: 100%;
    }

    /* about */
    

    .about-wrapper{
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-wrapper .about-content{
        padding: 4em 1em 0 1em;
    }



    /* Amenities */

    .logos::before,.logos::after{
        content: "";
        position: absolute;
        top: 0;
        width: 80px;
        height: 100%;
        z-index: 2;
    }

    /* Accordion */

    .location-wrapper .accordion {
        margin-top: 50px;
    }

    /* About Vtp */

    .about-vtp{
        padding: 4em 1em 0 1em;
    }

    /* price table */

    .price-table {
        overflow-x: scroll;
    } 

    /* gallery */
    .gallery {
        padding-top: 5rem;
    }

    #nextBtn,#backBtn{
        width: 30px;
    }
    
    /* video */

    .video-wrapper iframe {
        height: 200px
    }


}
