
    body {
      font-family: 'Poppins', sans-serif;
    }
.text-header{
      color: #7b4d1d;
    }
    .hero-section {
  position: relative;
  height: 100vh; /* full screen */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes video cover like a background */
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7); /* dark overlay */
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

    .booking-box {
      background: rgba(0,0,0,0.6);
      border-radius: 15px;
      padding: 20px;
    }
    .btn-custom {
      background: #b9935a;
      color: #fff;
      border-radius: 30px;
      padding: 10px 25px;
      font-weight: 600;
    }
    .btn-custom:hover {
      background: #a88249;
    }
  
    /* Header Styling */
    .header {
      background-color:#ffffffcf;
      padding: 5px 0;
      transition: all 0.4s ease;
      z-index: 999;
    }
    .header .logo h1.sitename {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      margin: 0;
      margin-left: 10px;
    }
    .header .logo svg {
      width: 32px;
      height: 32px;
    }
    /* Nav */
    .navmenu ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
    }
    .navmenu ul li {
      position: relative;
    }
    .navmenu ul li a {
      padding: 10px 18px;
      font-weight: 500;
      color: #000;
      text-decoration: none;
      transition: 0.3s;
    }
    .navmenu ul li a:hover,
    .navmenu ul li a.active {
      color: #c8a96a; /* gold accent */
    }
    .navmenu .dropdown ul {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #222;
      padding: 10px 0;
      border-radius: 6px;
      min-width: 200px;
      z-index: 1000;
    }
    .navmenu .dropdown:hover ul {
      display: block;
    }
    .navmenu .dropdown ul li a {
      padding: 10px 20px;
      display: block;
      color: #ddd;
    }
    .navmenu .dropdown ul li a:hover {
      color: #c8a96a;
    }
    /* Book Now Button */
    .btn-getstarted {
      background: #c8a96a;
      color: #fff;
      padding: 8px 20px;
      border-radius: 30px;
      font-weight: 600;
      transition: 0.3s;
      text-decoration: none;
    }
    .btn-getstarted:hover {
      background: #a88249;
      color: #fff;
    }
    /* Mobile */
    .mobile-nav-toggle {
      font-size: 28px;
      color: #fff;
      cursor: pointer;
      display: none;
    }
    @media (max-width: 991px) {
      .navmenu {
        display: none;
      }
      .mobile-nav-toggle {
        display: block;
      }
    }
      .room-card {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .room-card:hover {
      transform: translateY(-10px);
      box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
    }
    .room-img {
      height: 220px;
      object-fit: cover;
      width: 100%;
    }
    .room-title {
      font-weight: 600;
    }
    .price {
      font-size: 1.2rem;
      font-weight: bold;
      color: #7b5e3b;
    }
    .discover-btn {
      background: #7b5e3b;
      color: white;
      border-radius: 25px;
      padding: 10px 25px;
      font-weight: 600;
      transition: background 0.3s ease;
    }
    .discover-btn:hover {
      background: #5c442c;
      color: #fff;
    }

      .section-title {
      font-weight: 700;
      font-size: 2rem;
      color: #3b2a1a;
    }
    .divider {
      width: 80px;
      height: 2px;
      background: #7b5e3b;
      margin: 10px auto;
    }
    .amenity-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      padding: 25px;
      transition: all 0.3s ease;
    }
    .amenity-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    .amenity-icon {
      font-size: 2rem;
      color: #7b5e3b;
      background: #f3eee7;
      padding: 15px;
      border-radius: 12px;
      display: inline-block;
      margin-bottom: 15px;
    }
    .amenity-title {
      font-weight: 600;
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: #3b2a1a;
    }
    .tags span {
      display: inline-block;
      background: #f1f1f1;
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 0.8rem;
      margin-right: 8px;
      margin-top: 8px;
      color: #333;
    }
    .tags span.highlight {
      background: #7b5e3b;
      color: #fff;
    }
 .testimonial-card {
      background: #1c1c1c;
      border: 1px solid #f9b94d;
      border-radius: 12px;
      padding: 25px;
      margin: 10px;
      transition: transform 0.4s ease;
    }
    .testimonial-card:hover 
    {
      transform: translateY(-8px);
    }
    .testimonial-img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #f9b94d;
      margin-bottom: 10px;
    }
    .quote {
      font-style: italic;
      color: #ddd;
    }
    .rating i {
      color: #f9b94d;
    }
    .carousel-control-prev,
    .carousel-control-next {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #f9b94d;
      border: none;
      top: 100%;
      transform: translateY(-100%);
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(1);
    }
     footer {
      background: #1c1c1c;
      padding: 60px 0 20px;
    }
    .footer-title {
      font-weight: 600;
      margin-bottom: 20px;
      position: relative;
    }
    .footer-title::after {
      content: "";
      display: block;
      width: 40px;
      height: 2px;
      background: #f9b94d;
      margin-top: 8px;
    }
    .footer-links a {
      display: block;
      color: #ccc;
      margin-bottom: 10px;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .footer-links a:hover {
      color: #f9b94d;
      transform: translateX(5px);
    }
    .footer-contact p {
      margin: 0 0 8px;
    }
    .social-icons a {
      display: inline-block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      border-radius: 8px;
      text-align: center;
      background: #2a2a2a;
      color: #f9b94d;
      margin-right: 8px;
      transition: all 0.3s ease;
    }
    .social-icons a:hover {
      background: #f9b94d;
      color: #111;
      transform: scale(1.1);
    }
    .footer-bottom {
      border-top: 1px solid #333;
      margin-top: 30px;
      padding-top: 15px;
      text-align: center;
      font-size: 14px;
      color: #aaa;
    }
    .footer-title{
      color:white;
    }
    .footer-contact{
      color:white;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 600;
      color: #2c2c2c;
    }
    .highlight-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
      padding: 25px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .highlight-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 6px 16px rgba(0,0,0,0.15);
    }
    .highlight-number {
      font-size: 2rem;
      font-weight: bold;
      color: #7b4d1d;
    }
    .btn-custom {
      background-color: #7b4d1d;
      color: #fff;
      border-radius: 50px;
      padding: 10px 25px;
      border: none;
    }
    .btn-custom:hover {
      background-color: #5a3715;
      color: #fff;
    }
     .page-header {
      background: url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=1600&q=80") center center/cover no-repeat;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      position: relative;
    }
    .page-header::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.6);
    }
    .page-header .content {
      position: relative;
      text-align: center;
      z-index: 2;
    }
    .page-header h1 {
      font-size: 2.5rem;
      font-weight: bold;
    }
    .page-header p {
      font-size: 1rem;
      margin: 10px 0;
    }
    .breadcrumb {
      justify-content: center;
    }
    .breadcrumb a {
      color: #d1b57c;
      text-decoration: none;
    }
    .breadcrumb a:hover {
      text-decoration: underline;
    }
     .section-title {
      font-size: 2rem;
      font-weight: 600;
      color: #2c2c2c;
    }
    .info-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      padding: 30px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 6px 16px rgba(0,0,0,0.15);
    }
    .info-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #7b4d1d;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      color: #fff;
      font-size: 28px;
    }
    .info-card h5 {
      font-weight: 600;
      margin-bottom: 10px;
    }
    .info-card p {
      font-size: 0.95rem;
      color: #555;
    }
  .text-brown { color: #8B5E3C; }
  .highlight-card {
    border: 1px solid #e0d8cf;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
.why-choose-us h2 {
    color: #5A3E2B;
    letter-spacing: 1px;
  }