@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins: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');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* root */
:root {
    /* font */
    --main-font: "Playfair Display", serif;
    --secondary-font: "Poppins", serif;

    /* Primary-color */
    --primary-50: #EAEBE9;
    --primary-100: #BFC0B9;
    --primary-200: #A0A198;
    --primary-300: #757668;
    --primary-400: #5A5C4B;
    --primary-500: #31331E;
    --primary-600: #2D2E1B;
    --primary-700: #232415;
    --primary-800: #1B1C11;
    --primary-900: #15150D;
    /* Secondary-color */
    --secondary-50: #EFEFEB;
    --Secondary-100: #CFCDC2;
    --Secondary-200: #B7B4A5;
    --Secondary-300: #96927C;
    --Secondary-400: #827D62;
    --Secondary-500: #635D3B;
    --Secondary-600: #5A5536;
    --Secondary-700: #46422A;
    --Secondary-800: #363320;
    --Secondary-900: #2A2719;

    /* tertiary-color */
    --tertiary-50: #FBFAF8;
    --tertiary-100: #F2F0EA;
    --tertiary-200: #EBE8E0;
    --tertiary-300: #E2DED1;
    --tertiary-400: #DDD7C9;
    --tertiary-500: #D4CDBB;
    --tertiary-600: #C1BBAA;
    --tertiary-700: #979285;
    --tertiary-800: #757167;
    --tertiary-900: #59564F;

    /* dark-color */
    --dark-50: #F6F6F6;
    --dark-100: #E2E2E2;
    --dark-200: #D5D5D5;
    --dark-300: #C1C1C1;
    --dark-400: #B5B5B5;
    --dark-500: #A3A3A3;
    --dark-600: #949494;
    --dark-700: #747474;
    --dark-800: #5A5A5A;
    --dark-900: #444444;

    /* surface-color */
    --surface-50: #FDFDFD;
    --surface-100: #F8F8F8;
    --surface-200: #F4F4F4;
    --surface-300: #F0F0F0;
    --surface-400: #EDEDED;
    --surface-500: #E8E8E8;
    --surface-600: #D3D3D3;
    --surface-700: #A5A5A5;
    --surface-800: #808080;
    --surface-900: #616161;


    /* Shadow */
    --shadow: 0px 4px 16px #00000015;
}

.linear-gradient {
    color: rgb(118, 60, 34);
    color: linear-gradient(90deg, rgba(118, 60, 34, 1) 0%, rgba(195, 144, 117, 1) 50%, rgba(156, 102, 76, 1) 100%);
}

.wrapper {
    padding: 64px 0;
}

.bg-dark {
    background-color: var(--Secondary-500) !important;
}

.bg-light {
    background-color: var(--tertiary-50) !important;
}

/* Typography */
h1 {
    font-size: 64px;
    font-family: var(--main-font);
}

h2 {
    font-size: 42px;
    font-family: var(--main-font);
}

/* h3 {
    font-size: 39px;
    font-family: var(--main-font);
}

h4 {
    font-size: 31px;
    font-family: var(--main-font);
}

*/

h5 {
    font-size: 24px;
    font-family: var(--secondary-font);
}

h6 {
    font-size: 20px;
    font-family: var(--secondary-font);
}

p {
    font-size: 16px;
    font-weight: 300;
    font-family: var(--secondary-font);
}

.small {
    font-size: 14px;
    font-family: var(--secondary-font);
}

a {
    text-decoration: none;
    color: var(--dark-dark);
    font-family: var(--secondary-font);
    display: block;
}

.primary-btn {
    font-family: var(--secondary-font);
    padding: 10px 16px;
    font-size: 16px;
    height: 45px;
    width: fit-content;
    line-height: normal;
    color: var(--surface-50);
    background-color: transparent;
    border-radius: 0;
    border: 1px solid #FDFDFD50;
    transition: all ease-in-out 0.5s;
}

.primary-btn .angleArrow {
    margin-left: 3px;
    transition: all ease-in-out 0.5s;
}

.primary-btn:hover {
    border-color: var(--surface-50);
}

.primary-btn:hover .angleArrow {
    margin-left: 6px;
}


.tertiary-btn {
    font-family: var(--secondary-font);
    padding: 10px 0;
    padding-right: 8px;
    font-size: 16px;
    height: 45px;
    line-height: normal;
    width: fit-content;
    color: var(--dark-900);
    background-color: transparent;
    border-radius: 0;
    border-bottom: 1px solid #2D2D2D50;
    transition: all ease-in-out 0.3s;
}

.tertiary-btn .angleArrow {
    padding-left: 16px;
    transition: all ease-in-out 0.3s;
}

.tertiary-btn:hover {
    border-color: var(--dark-900);
}

.tertiary-btn:hover .angleArrow {
    padding-left: 24px;
}

.secondary-btn {
    font-family: var(--secondary-font);
    padding: 10px 0;
    padding-right: 8px;
    font-size: 16px;
    height: 45px;
    line-height: normal;
    width: fit-content;
    color: var(--surface-50);
    background-color: transparent;
    border-radius: 0;
    border-bottom: 1px solid #FDFDFD50;
    transition: all ease-in-out 0.3s;
}

.secondary-btn .angleArrow {
    padding-left: 16px;
    transition: all ease-in-out 0.3s;
}

.secondary-btn:hover {
    border-color: var(--surface-50);
}

.secondary-btn:hover .angleArrow {
    padding-left: 24px;
}


.dark-btn {
    border: none;
    font-family: var(--secondary-font);
    padding: 12px 16px;
    font-size: 16px;
    height: auto;
    line-height: normal;
    width: fit-content;
    color: var(--surface-50);
    background-color: var(--primary-500);
    border-radius: 0;
    transition: all ease-in-out 0.3s;
    margin-top: 16px;
}

.dark-btn .angleArrow {
    padding-left: 16px;
    transition: all ease-in-out 0.3s;
}

.dark-btn:hover {
    border-color: var(--dark-900);
}

.dark-btn:hover .angleArrow {
    padding-left: 24px;
}

.float-btn {
    position: fixed;
    z-index: 9999;
    bottom: 0px;
    font-family: var(--secondary-font);
    padding: 10px 16px;
    font-size: 16px;
    height: 45px;
    width: fit-content;
    line-height: normal;
    color: var(--surface-50);
    background-color: #00000040;
    border-radius: 0;
    border: 1px solid #FDFDFD50;
    transition: all ease-in-out 0.5s;
    right: 32px;
    bottom: 12px;
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.float-btn .angleArrow {
    margin-left: 3px;
    transition: all ease-in-out 0.5s;
}

.float-btn:hover {
    border-color: var(--surface-50);
    background-color: var(--primary-500);
}

.float-btn:hover .angleArrow {
    margin-left: 6px;
}

.float-btn-int {
    position: fixed;
    z-index: 9999;
    bottom: 0px;
    font-family: var(--secondary-font);
    padding: 10px 16px;
    font-size: 16px;
    height: 45px;
    width: fit-content;
    line-height: normal;
    color: var(--surface-50);
    background-color: #00000040;
    border-radius: 0;
    border: 1px solid #FDFDFD50;
    transition: all ease-in-out 0.5s;
    left: 32px;
    bottom: 12px;
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.float-btn-int .angleArrow {
    margin-left: 3px;
    transition: all ease-in-out 0.5s;
}

.float-btn-int:hover {
    border-color: var(--surface-50);
    background-color: var(--primary-500);
}

.float-btn-int:hover .angleArrow {
    margin-left: 6px;
}

.section-title-light,
.section-title-dark {
    margin-bottom: 24px;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Fullscreen Background Video */
.hero-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Gradient Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #31331ecb;
    z-index: 1;
}


.hero-section-content {
    height: 100%;
    position: relative;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.navbar {
    background-color: transparent !important;
    color: var(--surface-50);
}

.navbar-nav .nav-item {
    padding: 3px 12px;
}

.nav-link {
    color: var(--surface-50);
    font-size: 16px;
    font-family: var(--secondary-font);
    padding: 3px 0px !important;
    border-bottom: 1px solid transparent;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--surface-50);
    border-color: var(--surface-50);
}

.nav-link:focus,
.nav-link:hover {
    color: var(--surface-50);
    border-color: var(--surface-50);
}

.hero-content {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    color: var(--surface-50);
}

.hero-content h6 {
    font-weight: 200;
}

.scroll-down {
    margin-top: 64px;
    width: 100%;
    padding: 8px 0;
    text-align: center;
    border-top: 1px solid #ffffff50;
    color: #ffffff70;
    font-family: var(--secondary-font);
    font-weight: 200;
}

/* .about{
    background-color: var(--tertiary-50);
}

.feature{
    background-color: var(--Secondary-500);
} */


.feature .feature-content {
    padding: 64px;
}

.feature-card {
    width: 100%;
    padding: 0px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid transparent;
    border-radius: 0px;
    transition: all ease-in-out 0.3s;
}

.feature-card:hover {
    border-color: var(--Secondary-200);
}

.feature-card img {
    max-width: 32px;
    margin-bottom: 24px;
}

.feature-card p {
    color: var(--surface-50);
    margin: 0px;
    margin-bottom: 8px;
    font-weight: 400;
}

.feature-card .small {
    color: var(--Secondary-200);
    font-weight: 300;
}

.map .map-left,
.amenities .amenities-right {
    padding: 64px 64px 64px 100px;
}

.map .map-left .map-point {
    margin: 32px 0px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.map .map-left .map-point .point {
    cursor: pointer;
    width: fit-content;
    padding-bottom: 6px;
    border-bottom: 1px solid transparent;
    transition: all ease-in-out 0.3s;
}

.map .map-left .map-point .point:hover {
    border-color: var(--Secondary-200);
}

.map .map-left .map-point .point .small {
    color: var(--Secondary-200);
}

.investment .investment-usp {
    display: flex;
    flex-direction: column;
    margin: 32px 0px;
}

.investment .investment-usp .usp {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 30px;
    border-top: 1px solid var(--tertiary-300);
    transition: all ease-in-out 0.3s;
    padding: 24px 24px 24px 0px;
    cursor: pointer;
}

.investment .investment-usp .usp h6 {
    font-weight: 300;
}

.investment .investment-usp .usp:hover {
    color: var(--surface-50);
    padding: 24px;
    background-color: var(--Secondary-500);
}

.resort {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('asset/section-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.resort .content {
    background-color: var(--tertiary-100);
    padding: 64px 42px;
    max-width: 468px;
    display: flex;
    flex-direction: column;
    row-gap: 42px;
}

.amenities .amenities-right .amenities-usp {
    margin: 42px 0px;
}

.amenities-usp .usp {
    color: var(--surface-50);
    padding: 24px 0px;
    border-top: 1px solid var(--Secondary-300);
    border-bottom: 1px solid var(--Secondary-300);

}

.project-card {
    border: none;
    border-radius: 0px;
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 24px;
    display: flex;
    justify-content: end;
    align-items: start;
    transition: all ease-in-out 0.3s;
}

.project-card-1{
    background-image: url('asset/project-1.jpg');   
}
.project-card-2:last-child{
    background-image: url('asset/project-2.jpg');   
}


.project-card .card-content .sub-heading {
    display: none;
    transition: all ease-in-out 0.3s;
}

.project-card:hover .card-content .sub-heading {
    display: block;
}

.moreProjects {
    padding-bottom: 64px;
}

.ex-project {
    cursor: pointer;
    overflow: hidden;
    background-color: transparent;
    border: none;
    border-radius: 0px;
    transition: all ease-in-out 0.3s;
}

.ex-project .img-container {
    max-width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
}

.ex-project .img-container img {
    transition: all ease-in-out 0.3s;
}

.ex-project:hover .img-container img {
    transform: scale(1.2);
}

.lead-form-section {
    background-color: var(--tertiary-500);
}

.lead-form-section .lead-form-section-left {
    padding: 64px 64px 64px 100px;
}

.form-control,
.form-select {
    height: 52px;
    background-color: var(--tertiary-300);
    border: none;
    border-bottom: 1px solid var(--tertiary-700);
    font-family: var(--secondary-font);
    border-radius: 0px;
}

.form-check-label {
    font-family: var(--secondary-font);
    font-size: 14px;
}

.cta .cta-section {
    padding: 64px 90px;
    background-image: url('asset/cta-banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta .cta-section h1 {
    font-size: 32px;
}

.footer {
    background-color: var(--primary-800);
    padding-top: 32px;
}

.footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.footer .msg,
.footer .copyright {
    color: var(--primary-300);
    font-size: 14px;
    margin: 0px;
    padding-bottom: 12px;
    font-family: var(--secondary-font);
}

.footer .copyright {
    padding-top: 8px;
    border-top: 1px solid var(--primary-400)
}

.modal-content {
    border: none;
    border-radius: 0px;
    background-color: var(--tertiary-100);
}

/* navbar scroll */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 16px 0px;
    /* Initial transparent background */
}

.navbar-scrolled {
    background-color: var(--primary-500) !important;
    /* Change to your desired background color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Optional: adds a subtle shadow */
}

/* Responsive styles */
.navbar-toggler-icon {
    background: none !important;
    color: var(--surface-50);
    font-size: 32px;
    padding: 0px;
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.owl-theme .owl-nav {
    position: absolute;
    margin: 0px;
    bottom: -62px;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    background: var(--surface-50);
    font-size: 24px;
    line-height: 24px;
    padding: 7px 15px !important;
    border-radius: 32px;
}
.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span{
    position:relative;
    bottom:2px;
}
.amenities .col-md-5 {
    position: relative;
}
.amenities .col-md-5 img {
    transition: opacity 0.5s ease;
}
.amenities .col-md-5 img.fade {
    opacity: 0;
}
@media only screen and (max-width: 992px) {
    .navbar-toggler-icon{
        display: flex;
        justify-content: center;
        align-items: center;
        height:32px;
        width:32px;
    }
    .navbar-toggler{
        width:32px;
        padding:0px;
    }
    .p-m-b{
        padding:0px;
    }
}
@media only screen and (max-width: 764px) {
    .hero-content h1 {
        font-size: 52px;
        margin-top: 32px;
    }

    .hero-content h6 {
        font-size: 18px;
    }

    h2 {
        font-size: 32px;
    }

    .mb-2-mob {
        margin-bottom: 24px !important;
    }

    .mt-2-mob {
        margin-top: 24px !important;
    }

    .width-100-mob {
        width: 100% !important;
    }

    .map .map-left .map-point .point {
        width: 100% !important;
    }

    .cta .cta-section {
        padding: 32px;
    }
    .float-btn {
        padding: 10px 10px;
        font-size: 12px;
        height: 40px;
    }

    .float-btn-int {
        padding: 10px 10px;
        font-size: 12px;
        height: 40px;
    }
}

@media only screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content h6 {
        font-size: 16px;
    }

    .feature .feature-content {
        padding: 32px;
    }

    .map .map-left,
    .amenities .amenities-right {
        padding: 32px;
    }

    .resort {
        padding: 32px;
    }

    .lead-form-section .lead-form-section-left {
        padding: 32px;
    }

    .usp h5{
        font-size: 16px;
    }

    .footer .footer-top {
        flex-direction: column;
        align-items: start;
        row-gap: 24px;
    }
}

@media only screen and (max-width: 416px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h6 {
        font-size: 16px !important;
    }

    .feature .feature-content {
        padding: 24px !important;
    }

    .map .map-left,
    .amenities .amenities-right {
        padding: 24px !important;
    }

    .resort {
        padding: 24px !important;
    }

    .lead-form-section .lead-form-section-left {
        padding: 24px !important;
    }
}



.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade-in.show {
    opacity: 1;
}

.rotate-icon {
    display: inline-block;
    animation: rotateIn 0.3s ease-in-out;
}

@keyframes rotateIn {
    0% {
        transform: rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: rotate(0deg);
        opacity: 1;
    }
}

input[readonly] {
    cursor: pointer;
}

label.error {
    color: red;
    font-size: 12px;
    font-weight: 300;
}

#pageloader {
    background: rgba(255, 255, 255, 0.9);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 9999999;
    top: 0;
}

#pageloader img {
    left: 50%;
    width: 100px;
    margin-left: -32px;
    margin-top: -32px;
    position: absolute;
    top: 50%;
}
