/*Animations*/
.fadeinleft {
    opacity:0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
}

.fadeinright{
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
}

.fadeindown{
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
}

.fade-in{
    opacity:0;
    transition: all 1.3s ease-in;
}

.active-left,.active,.active-right,.active-down{
    opacity:1;
    transform: translateX(0);
    transform: translateY(0);
}



.fadein{
opacity: 0;
}   


/* End Animations*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Dancing+Script:wght@400..700&family=Federant&family=Gilda+Display&family=Grey+Qo&family=IBM+Plex+Sans+JP&family=Jost:ital,wght@0,100..900;1,100..900&family=La+Belle+Aurore&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=Libertinus+Math&family=Lora:ital,wght@0,400..700;1,400..700&family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mozilla+Text:wght@200..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+HU:wght@100..400&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&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


body{
    background-color: #ebf3f5c7;
}
/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3dbca3 !important;
    font-style: italic;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 0.7rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #3dbca3;
    transition: width 0.3s ease;
}

.nav-link.active{
  color: #3dbca3!important;
  border-bottom: 2px solid  #3dbca3 ;

}
.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #3dbca3 !important;
}

/* Phone number button */
.phone-number {
    border: 2px solid #3dbca3;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    color: white!important;
    background-color:#3dbca3;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number:hover {
    background-color: #3dbca3;
    color: #fff !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('../img/img10.jpeg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
}

.hero-content {
    color: #fff;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* Hero button */
.nav-button {
    border: none;
    background-color: #3dbca3;
    color: #fff;
    font-size: 1.1rem;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.nav-button:hover {
    background-color: #2e9d88;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
   
  
   

    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .nav-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
    .img1{
      width: 350px;
      margin-bottom: 20px;
    }
    .img2{
       width: 350px;
       margin-bottom: 20px;
    }
    .img3{
       width: 350px;
    }
  .tv{
    display: none;
  }

  .room-h1{
    font-size: 15px;
    margin-top: 70px;
  }

  .room-btn{
    margin-left: 30px!important;
    margin-top: 70px!important;
  }

  .book-button{
     margin-left: 40px!important;
    margin-top: 70px!important;
  }

  .contact-section{
    margin-left: 20px;
  }
}
      .villa-h6{
            font-size: 15px;
            color: #3dbca3;
            text-align: center;
            font-family: "Roboto", sans-serif;
            font-optical-sizing: auto;
            font-weight: 550;
            font-style: normal;
            text-transform: uppercase;

        }

        .villa-h3{
            text-align: center;
            color: #49565d;
            font-family: "Lora", serif;
            font-optical-sizing: auto;
            font-weight: 700;
            font-size: 40px;
        }

        .villa-p{
           text-align: center;
           font-family: "Poppins", sans-serif;
           font-weight: 500;
           font-style: normal;
        }

.facilities i {
  display: block;
  margin-bottom: 8px;
}

.facilities h2 {
  font-size: 2rem;
}

.facilities p {
  margin: 0;
}


.facilities-name{
  margin-top: 15px!important;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
}


.view-more-btn{
  border: none;
    background-color: #3dbca3;
    color: #fff;
    font-size: 1.1rem;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);

}

.view-more-btn:hover{
  color: black;
}

.about-h1{
    font-size: 30px;
    margin-bottom: 20px;
}

.about-p{
    font-size: 17px;
    margin-bottom: 30px!important;
}


/* Footer */
section {
  padding: 120px 0;
  position: relative;
}

footer {
  background-color: #1c3035;
  padding-top: 60px;
  padding-bottom: 0px;
  padding-left: 20px;
  padding-right: 20px;
}
a.footer-link {
  color: white;
  font-weight: 300;
}
footer h6 {
  font-size: 15px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: rgb(218, 218, 218);
}
.footer-link:hover {
  color: #bea97a;
}
.payment {
  display: flex;
}
.socials {
  display: flex;
  color: white;
}
.footer-links {
  display: flex;
   font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
}
.footer-title {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: white;
}
.socials a {
  text-decoration: none !important;
  color: white;
}
.socials a:hover h4 {
  color: #bea97a;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
.copyright {
  display: flex;
  justify-content: right;
  text-align: right;
  align-items: end;
}

@media (max-width: 1000px) {
  .footer-links {
    display: flex;
    font-family: Jost, sans-serif;
    font-size: 18px;
    padding: 0px 30px 0px 30px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: baseline;
  }

  .socials a {
    text-decoration: none !important;
    color: white;
  }
  .socials a:hover h4 {
    color: #bea97a;
  }
  hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
  }
  .copyright {
    display: flex;
    justify-content: right;
    text-align: right;
    align-items: end;
  }
}

.gallery img {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.btn2{
    color: #3dbca3;
    border: 1px solid #3dbca3 ;
    padding: 15px;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight:500;
    font-style: normal;
    font-size: 18px;
}


.services-p{
   font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.services-h4{
     font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: black;
}

.room-card{
    border: 1px solid grey;
}


        .villa-h3 {
            text-align: center;
            color: #49565d;
            font-family: "Lora", serif;
            font-optical-sizing: auto;
            font-weight: 700;
            font-size: 40px;
            margin-bottom: 3rem;
        }

        .villa-p {
            text-align: center;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            color: #666;
            line-height: 1.6;
        }

        .reviews-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .review-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(61, 188, 163, 0.1);
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .stars {
            color: #ffc107;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .review-text {
            font-family: "Poppins", sans-serif;
            font-style: italic;
            color: #666;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .client-info {
            text-align: center;
            border-top: 1px solid #eee;
            padding-top: 1.5rem;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            background: linear-gradient(45deg, var(--villa-turquoise), #66d4c4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .client-name {
            font-family: "Lora", serif;
            font-weight: 700;
            color: var(--villa-dark);
            margin-bottom: 0.25rem;
            font-size: 25px;
        }

        .client-location {
            font-family: "Poppins", sans-serif;
            color: var(--villa-turquoise);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .quote-icon {
            font-size: 3rem;
            color: rgba(61, 188, 163, 0.2);
            position: absolute;
            top: 1rem;
            left: 1.5rem;
        }

        .review-card {
            position: relative;
            overflow: hidden;
        }

        .fade-in {
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .villa-h3 {
                font-size: 30px;
            }
            
            .review-card {
                padding: 1.5rem;
            }
            
            .reviews-section {
                padding: 60px 0;
            }
        }

            .section-bg4{
    background: url('../img/img10.jpeg'), rgba(0, 0, 0, 0.386);
  background-position:center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-attachment: scroll;
  padding-top: 300px;
  padding-bottom: 250px;
  color: white;
  }


  

            .section-bg7{
    background: url('../img/img9.jpeg'), rgba(0, 0, 0, 0.386);
  background-position:center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-attachment: scroll;
  padding-top: 300px;
  padding-bottom: 250px;
  color: white;
  }

  
            .section-bg6{
    background: url('../img/img6.jpeg'), rgba(0, 0, 0, 0.386);
  background-position:center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-attachment: scroll;
  padding-top: 300px;
  padding-bottom: 250px;
  color: white;
  }


           .section-bg5{
    background: url('../img/img2.jpeg'), rgba(0, 0, 0, 0.386);
  background-position:center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-attachment: scroll;
  padding-top: 300px;
  padding-bottom: 250px;
  color: white;
  }
  .details{
    margin-top: 11px;
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.733);
    margin-top: 15px!important;
    font-size: 30px;
  }

  .icons{
    margin-top: 20px;
  }

  
.language-selector li {
  display: inline-block;
  margin: 0 5px;
  position: relative;
}

.language-selector {
  list-style: none;

  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand img {
        width: 80px !important;
        margin-right: 20px !important;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        margin-top: 10px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 10px !important;
        margin: 5px 0;
        border-radius: 6px;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .nav-link.active {
        background: #3dbca3;
        color: white !important;
        border: none;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(61, 188, 163, 0.1);
    }
    
    .language-selector {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(61, 188, 163, 0.2);
        list-style: none;
        padding-left: 0;
    }
    
    .language-selector img {
        width: 25px !important;
    }
}