@import url('https://fonts.googleapis.com/css2?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');
body, html {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

/* Header Styling */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

header.scrolled {
    position: fixed;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Top Header Content */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4rem;
}

.logo {
    position: relative;
    top: -1rem;
    left: 5rem;
    transition: all 0.5s ease;
}

.logo img {
    height: 150px;
    transition: height 0.5s ease; 
}

.contact a.phone-link {
    text-decoration: none;
    color: #fff; 
    transition: color 0.5s ease;
}

header.scrolled .contact a.phone-link {
    color: #582D04;
}

.contact .reach-us {
    background-color: #582D04;
    border: none;
    margin-left: 10px;
    padding: 8px 20px;
    border-radius: 25px;
    transition: background-color 0.5s;
}
.contact .reach-us:hover,header.scrolled .contact .reach-us:hover {
    background-color: #a05e26;
}
.contact .reach-us a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

header.scrolled .contact .reach-us {
    background-color: #582D04;
}

header.scrolled .logo {
    top: 0; 
    left: 2rem;
}
header.scrolled .logo img {
    height: 80px;
}
header.scrolled .top-header {
    padding:0 4rem;
}
/* Header Styling End */

/* Home Section Start */
.desktop-banner{
    display: block;
}
.mobile-banner{
    display: none;
}
.gradient-div {
    padding: 3rem;
    color: #fff;
    position: absolute;
    bottom: 30%;
    width: 55%;
    background: linear-gradient(to right, #582D04 30%, #582D0408 100%);
}
.gradient-div h1{
    font-weight: 700;
}
.gradient-div p{
    line-height: 27px;
    font-size: 18px;
}
/* Home Section End */

/* About Section Start */
.about-bg-text{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background-image: url('assets/img/about-bg-text.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.about-bg-text h2,.amenities h2,.gallery h2, footer h2{
    font-weight: 700;
    color: #D2A466;
}
.about-bg-text p,.amenities p,footer p{
    color: #515151;
}
.about-bg-text .about-knw-more{
    text-decoration: none;
    color: #D2A466;
    position: absolute;
    right: 5rem;
    bottom: 2rem;
}
.about-bg-text .about-knw-more::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0.1rem;
    background-color: #D2A466;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
.about-bg-text .about-knw-more:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}  
/* About Section End */

/* Amenities Section Start */
.amenities {
    padding: 3rem 5rem;
    background-color: #fae7cf;
}
.amenities .amenities-box {
    padding: 3rem;
}
.amenities .amenities-box .amenities-inner-box img {
    position: absolute;
    width: 100px;
    top: 0.8rem;
    left: -2.5rem;
    transition: transform 1s;
    transform-style: preserve-3d;
}
.amenities .amenities-box .amenities-inner-box {
    height: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem 0 4rem;
    position: relative;
    background-color: #FFF5E8;
    border-radius: 20px;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-30px); 
    }
    40% {
        transform: translateY(0); 
    }
    60% {
        transform: translateY(-20px);
    }
    70% {
        transform: translateY(0); 
    }
    85% {
        transform: translateY(-10px); 
    }
    100% {
        transform: translateY(0);
    }
}
.amenities .amenities-box .amenities-inner-box:hover img {
    animation: bounce 0.9s ease; 
}
/* Amenities Section End */

/* Galllery Start */
.gallery{
    padding: 3rem 5rem;
}
.slider-item{
    padding:1rem;
}
.slick-dots {
    left:0;
    text-align: end;
}
.slick-dots li {
    margin: 0;
}
.slick-dots:active{
    color:white;
}
/*The dots before they are active  */
.slick-dots li button:before {
    font-size: 0.57rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    content: '•';
    text-align: center;
    opacity: .50;
    color: gray;
}
  /* The dot when active */
.slick-dots li.slick-active button:before {
    opacity: .75;
    content: "";
    background-image: url('assets/img/active-dot.png');
    background-size: contain; 
    background-repeat: no-repeat;
    background-position:center;
}  
/*Changes the height of the image  */
.landscape img{
    width: 100%;
    margin: 1rem;
}
/* Gallery End */

/* Footer Start */
footer{
    background-color: #fae7cf;
}
footer .btn-brown {
    font-weight: 600;
    background-color: #582D04;
    color: #fff;
    border: none;
    padding: .4rem 2.5rem;
    border-radius: 25px;
    transition: background-color 0.3s;
}
footer .btn-brown:hover {
    color: #fff;
    background-color: #a05e26; /* Lighter brown on hover */
}
.prefix {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #9f9b9b;
}
.form-control::placeholder{
    color: #9f9b9b;
}
input[type="tel"] {
    padding-left: 50px; /* Adjust space for +91 */
}
.form-control:focus {
    box-shadow:2px 2px 2px .1rem #a05e26;;
}
.btn:focus-visible,.btn:first-child:active {
    color: #fff;
    background-color: #a05e26;
    border:none ;
    outline: 0;
    box-shadow: none;
}

footer .form-control {
    border: none;
    border-radius: 5px;
}
footer label{
    color: #515151;
    margin-bottom: 10px;
}
.copyright,.btop a{
    text-decoration: none;
    color: #D2A466;
}

/* Footer End */

/* responsive */
@media (max-width: 1200px){
      /* Home */
    .gradient-div {
        padding: 1.5rem;
        bottom: 20%;
    }
    .gradient-div p{
        line-height: 22px;
        font-size: 15px;
    }

    /* Amenities */
    .amenities .amenities-box .amenities-inner-box span{
        font-size: 0.9rem;
    }
}
@media (max-width: 768px){
     /* Header Styling */
    .top-header {
        padding: 10px 2rem;
    }
    .logo {
        left: 0;
    }
    .logo img {
        height: 90px;
    }
    .contact a.phone-link, .contact .reach-us {
        font-size: 0.9rem;
    }
    header.scrolled .logo {
        top: 0; 
        left: 0;
    }
    header.scrolled .logo img {
        height: 70px;
    }
    header.scrolled .top-header {
        padding:0 2rem;
    }
    /* Home */
    .gradient-div {
        padding: 1rem;
        bottom: 15%;
    }
    .gradient-div h1{
        font-size: 1.5rem;
    }
    .gradient-div p {
        line-height: 20px;
        font-size: 13px;
    }
    /* Amenities */
    .amenities,.gallery,.about-bg-text{
        padding: 2rem;
    }

    /* About */
    .about-bg-text .about-knw-more{
        right: 3rem;
        bottom: 1rem;
    }
}
@media (max-width: 525px){
    /* Header Styling */
    .logo img {
        height: 80px;
    }
    .contact a.phone-link,.contact .reach-us  {
        font-size: 0.7rem;
    }
    header.scrolled .logo img {
        height: 60px;
    }

    /* Home Section Start */
    .desktop-banner{
        display: none;
    }
    .mobile-banner{
        display: block;
    }
    .gradient-div {
        padding: 5rem 1rem 1rem 1rem;
        bottom: 0;
        width: 100%;
        background: linear-gradient(to top, #582D04 50%, #582D0408 100%);
    }
    .gradient-div p{
        line-height: 22px;
        font-size: 15px;
    }

    /* Amenities */
    .amenities .amenities-box{
        display: flex;
        padding: 1rem 2rem 1rem 3rem;
    }
    .amenities,.gallery,.about-bg-text{
        padding: 1rem;
    }
    .amenities .amenities-box .amenities-inner-box{
        height: 70px;
        width: 60%;
        padding: 0 1rem 0 2.7rem;
    }
    .amenities .amenities-box .amenities-inner-box span{
        font-size: 0.8rem;
    }
    .amenities .amenities-box .amenities-inner-box img {
        width: 60px;
        top: 0.45rem;
        left: -1.6rem;
        transition: transform 1s;
        transform-style: preserve-3d;
    }
    .amenities .amenities-box:nth-child(odd) {
        justify-content: start;
    }

    .amenities .amenities-box:nth-child(even) {
        justify-content: end;
    }

    /* Gallery */
    .slick-dots {
        left:0;
        text-align: center;
    }
    .copyright{
        font-size: 0.7rem;
    }
    .btop a{
        font-size: 0.9rem;
    }
}
@media (max-width: 375px){
    .amenities .amenities-box .amenities-inner-box span{
        font-size: 0.7rem;
    }
    header .top-header .contact{
        padding: 5px;
        display: flex;
        flex-direction: column-reverse;
    }
    .contact a.phone-link, .contact .reach-us {
        margin-bottom: 5px;
    }
}
