* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.navbar {
  background: rgba(17, 17, 17, 0.02);
  backdrop-filter: blur(2px);
  padding: 8px 0;
  transition: 0.4s ease;
}

.navbar-brand {
  font-size: 28px;
  letter-spacing: 1px;
}

.navbar-brand img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}


.nav-link {
  color: white !important;
  font-size: 18px;
  margin: 0 12px;
  font-weight: 600;
  position: relative;
}

/* underline effect */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #f4c36b;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar .btn {
  border-radius: 25px;
  padding: 8px 22px;
  font-size: 14px;
}



/* ===== HERO WRAPPER ===== */
.hero-wrapper {
  position: relative;
  height: 80vh;
  width: 100%;
}


/* ===== SLIDER ===== */
.hero-slider .slide {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Dark overlay on images */
.hero-slider .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}


/* ===== HERO CONTENT ===== */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  padding: 0 15px;
}

.hero-content h5 {
  color: #f7c873;
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  max-width: 560px;
  margin: 20px auto 32px;
  font-size: 17px;
  color: #e5e5e5;
}

/* Buttons */
.hero-content .btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Book Now */
.hero-content .btn-primary {
  background: #c89b3c;
  border: none;
  color: white;
}

.hero-content .btn-primary:hover {
  background: #b48a30;
}

/* Explore Rooms */
.hero-content .btn-outline-light {
  border: 2px solid white;
  color: white;
}

.hero-content .btn-outline-light:hover {
  background: white;
  color: #111;
}


/* about section */

.about-section {
  padding: 50px 0;
  background: #f8f9fa;
}

.about-container {
  width: 90%;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-left img {
  width: 100%;
  border-radius: 20px;
}

.about-right h5 {
  color: #c89b3c;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 12px;
}

.about-right h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-right p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  border-radius: 30px;
  background: #c89b3c;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}


/* room section */



.rooms-cards-section {
  background: rgba(0, 0, 0, 10);
  padding: 50px 0;
  margin: 20px 0px;
}

/* Section Heading */
.rooms-cards-section .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.rooms-cards-section h5 {
  color: #f8f9fa;
  letter-spacing: 3px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.rooms-cards-section h2 {
  font-size: 2.6rem;
  margin-bottom: 8px;
  color: #fff;
}

.rooms-cards-section p {
  color: #e5e5e5;
  font-size: 20px;
}

/* Cards Container */
.cards-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Individual Card */
.room-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .card-image img {
  transform: scale(1.1);
}


/* Card Content */
.card-content {
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.card-content span {
  color: #c89b3c;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 14px;
}

.card-content a {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  background: #c89b3c;
  color: white;
  width: 130px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.card-content a:hover {
  background: #b48a30;
}


.features-section {
  position: relative;
  background-image: url('../images/banner.webp');
  /* Replace with your image */
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  color: #333;
  margin: 10px 0px 50px;
}

.features-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  /* soft overlay for readability */
}

.features-section .section-heading {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.features-section h5 {
  color: #e5e5e5;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 10px;
}

.features-section h2 {
  font-size: 2.6rem;
  margin-bottom: 8px;
  color: #f8f9fa;
}

.features-section p {
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Feature Card */
.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 36px;
  color: #c89b3c;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}


/* gallery section */
.gallery-section {
  background: #fdfaf6;
  padding: 50px 0 ;
}

.gallery-section .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-section h5 {
  color: #c89b3c;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 10px;
}

.gallery-section h2 {
  font-size: 2.6rem;
  margin-bottom: 8px;
}

.gallery-section p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Gallery Grid */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 10px;
  width: 90%;
  margin: auto;
}

/* Individual Item */
.gallery-item {
  position: relative;
  overflow: hidden;

}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay */
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover .overlay {
  opacity: 1;
}





/* Testimoniols */

.testimonials-section {
  background: #f5efe6;
  padding: 40px 0;
  text-align: center;
}

.testimonials-section .section-heading {
  margin-bottom: 50px;
}

.testimonials-section h5 {
  color: #c89b3c;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 10px;
}

.testimonials-section h2 {
  font-size: 2.6rem;
  margin-bottom: 8px;
}

.testimonials-section p {
  color: #555;
  max-width: 400px;
  margin: 0 auto 40px;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;

}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.stars {
  color: #c89b3c;
  margin-bottom: 20px;
}

.stars i {
  margin: 0 2px;
}

.testimoniol-img {
  width: 60px;
  height: 60px;
  margin: 0px 42%;
}

.guest-info img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}

.guest-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.guest-info span {
  font-size: 14px;
  color: #777;
}



/* footer */
.footer-split {
  background: #111;
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
  padding: 60px 0px 0px 0px;
  justify-content: space-between;
  gap: 30px;
}

/* Brand / Logo */

.footer-logo{
  height: 70px;
  width: auto;
}
.footer-logo img{
height: 100%;
filter: brightness(0) invert(1);
width: auto;
}
.footer-brand h2 {
  color: #c89b3c;
  padding-top: 20px;
  font-size: 28px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #ccc;
  max-width: 280px;
  line-height: 1.7;
}

/* Quick Links */
.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  color: #c89b3c;
  margin-bottom: 18px;
  font-size: 16px;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #f5f5f5;
  text-decoration: none;
  transition: .3s;
}

.footer-links ul li a:hover {
  color: #c89b3c;
}

/* Contact Info */
.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

/* Newsletter */
.footer-newsletter p {
  color: #ccc;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  outline: none;
  border-radius: 4px;
  font-size: 14px;
}

.footer-newsletter button {
  padding: 12px 20px;
  background: #c89b3c;
  color: #111;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s;
}

.footer-newsletter button:hover {
  background: #b48a30;
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
  color: #999;
  margin-top: 20px;
}






/* about-pages */


/* hero-banner */

.main-banner {
  height: 400px;
  position: relative;
}

.bread-clumb {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url(../images/gallery3.webp);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bread-clumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);

}

.banner-content {
  position: relative;
  text-align: center;
  z-index: 10;
  color: white;
}

.banner-content h4 {
  font-size: 4.5vw;
}



.why-luxury {
  background: #f7f2ea;
  padding: 50px 0;
}

.why-container {
  width: 90%;
  margin: auto;
  display: flex;
  gap: 30px;
  align-items: center;
}

.why-content {
  width: 50%;
}

.why-content h5 {
  color: #c89b3c;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 10px;
}

.why-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.why-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.why-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background: #c89b3c;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.why-btn:hover {
  background: #b48a30;
}

/* Right side boxes */
.why-boxes {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.luxury-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.luxury-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.luxury-box span {
  font-size: 28px;
  font-weight: 700;
  color: #c89b3c;
  display: block;
  margin-bottom: 10px;
}

.luxury-box h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.luxury-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}



.cta-section {
  position: relative;
  height: 420px;
  background: url('../images/banner3.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cta-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #eee;
}

.cta-btn {
  padding: 14px 40px;
  background: #c89b3c;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #b48a30;
}



.service-intro {
  padding: 50px 0 20px;
  background: #fff;
  text-align: center;
}

.service-intro-content {
  width: 60%;
  margin: auto;
}

.service-intro-content span {
  color: #c89b3c;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
}

.service-intro-content h2 {
  font-size: 42px;
  margin: 18px 0;
}

.service-intro-content p {
  color: #666;
  font-size: 17px;
  line-height: 1.9;
}



.contact-section {
  display: flex;
  width: 100%;

}

.hello {
  padding: 50px 0px;
}

.contact-map,
.contact-form {
  width: 50%;

}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  background: #f7f2e9;
  padding: 70px 60px;
}

.contact-form h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-form p {
  color: #666;
  margin-bottom: 25px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
}

.contact-form form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  background: #c89b3c;
  color: white;
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  font-size: 15px;
}

.contact-form button:hover {
  background: #b48a30;
}




.resort-about-section {
  padding: 50px 8%;
  background: #f7f8fa;
}

.resort-about-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
}

.resort-about-content {
  flex: 1;
}

.resort-about-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #c59d5f;
  letter-spacing: 2px;
  font-weight: 600;
}

.resort-about-heading {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #1c1c1c;
}

.resort-about-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.resort-about-extra-text {
  display: none;
}

.resort-about-readmore-text {
  color: #c59d5f;
  font-weight: 600;
  cursor: pointer;
  margin-left: 6px;
}

.resort-about-readmore-text:hover {
  text-decoration: underline;
}

.resort-about-media {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
}

.resort-about-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resort-about-image:hover {
  transform: scale(1.05);
}






/* Section Room */

  .lux-rooms-section{
      background: #f5f5f5;
      padding: 50px 5%;
    }

    .lux-rooms-heading{
      text-align: center;
      margin-bottom: 60px;
    }

    .lux-rooms-heading h5{
      color: #333;
      font-weight: 700;
      letter-spacing: 2px;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .lux-rooms-heading h2{
      font-size: 2.8rem;
      margin-bottom: 10px;
      color: #111;
    }

    .lux-rooms-heading p{
      font-size: 18px;
      color: #555;
    }

    /* Rooms Grid */
    .lux-rooms-grid{
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
      gap: 30px;
    }

    /* Room Card */
    .lux-room-card{
      background: #222;
      display: flex;
      flex-direction: column;
      transition: 0.3s;
      overflow: hidden;
      border-radius: 10px;
    }

    .lux-room-card:hover{
      transform: translateY(-5px);
    }

    /* Room Image */
    .lux-room-img img{
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s ease;
      border-radius: 0;
    }

    .lux-room-card:hover .lux-room-img img{
      transform: scale(1.05);
    }

    /* Room Content */
    .lux-room-content{
      padding: 20px 25px;
      display: flex;
      flex-direction: column;
    }

    .lux-room-content h3{
      font-size: 22px;
      margin-bottom: 10px;
      color: #f8f9fa;
    }

    .lux-room-content p{
      font-size: 15px;
      line-height: 1.6;
      color: #d1d1d1;
      margin-bottom: 12px;
    }

    /* Room Facts with Icons */
    .lux-room-facts{
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      font-size: 14px;
      color: #b8924b;
      font-weight: 600;
    }

    .lux-room-facts i{
      color: #b8924b;
      font-size: 16px;
      margin-right:6px;
    }

    /* Responsive */
    @media(max-width:768px){
      .lux-rooms-grid{
        grid-template-columns: 1fr;
      }
    }



    .booking-section{
  background: #f7f2e9;
  color: #111;
  padding: 20px 5%;
}

.booking-container{
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Left Side Content */
.booking-content{
  flex: 1;
  min-width: 300px;
  margin-top: 40px;
}

.booking-content h5{
  color: #b8924b;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.booking-content h2{
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.booking-content p{
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.booking-content ul{
  list-style: none;
}

.booking-content ul li{
  font-size: 14px;
  margin-bottom: 10px;
}

.booking-content ul li i{
  color: #b8924b;
  margin-right: 8px;
}

/* Right Side Form */
.booking-form{
  flex: 1;
  min-width: 300px;
  background: #f8f8f8;  /* Light background */
  padding: 30px 25px;
  border-radius: 10px;
}

.booking-form form .form-group{
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.booking-form label{
  margin-bottom: 5px;
  font-size: 14px;
  color: #111;
}

.booking-form input,
.booking-form select{
  padding: 10px 12px;
  border: none;
  border-radius: 5px;
  background: #fff;
  color: #111;
  font-size: 14px;
  border: 1px solid #ccc;
}

.booking-form input:focus,
.booking-form select:focus{
  outline: 2px solid #b8924b;
}

.book-btn{
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: none;
  border-radius: 25px;
  background: #b8924b;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.book-btn:hover{
  background: #a47c2f;
}

/* Responsive */
@media(max-width: 900px){
  .booking-container{
    flex-direction: column;
  }
}








.detailed-services-section{
  background: #fff;
  padding: 0px 5%;
  color: #111;
}

/* Service Navigation Buttons */
.services-nav{
  text-align: center;
  margin-bottom: 50px;
}

.services-nav .service-btn{
  background: #222;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.services-nav .service-btn:hover,
.services-nav .service-btn.active{
  background: #b8924b;
  color: #fff;
}

/* Service Block */
.service-block{
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

/* Active service block */
.service-block.active{
  opacity: 1;
  max-height: 1000px; /* Enough height for content */
}

/* Service Image */
.service-img{
  flex: 1;
  min-width: 300px;
  height: 450px;
}

.service-img img{
  width: 100%;
  
  object-fit: cover;
}

/* Service Info */
.service-info{
  flex: 1;
  min-width: 300px;
}

.service-info h3{
  font-size: 30px;
  color: #222;
  margin-bottom: 15px;
}

.service-info p{
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-info ul{
  list-style: none;
  padding-left: 0;
}

.service-info ul li{
  font-size: 14px;
  margin-bottom: 8px;
}

.service-info ul li i{
  color: #b8924b;
  margin-right: 8px;
}

/* Responsive */
@media(max-width:900px){
  .service-block{
    flex-direction: column;
  }
}



