/* General Reset */
* {
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Font */
body {
    font-family: 'Poppins', sans-serif;
    background-color:#f9f9f9;
    color: #333;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
	 font-size:19px !important
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
}

.navbar-logo img {
    height: 50px;
   
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar-links li a {
    text-decoration: none;
    color: #bbafaf;
    font-weight: 500;
}

.navbar-links li a:hover {
    color: #8f7333;
}

.login-btn {
    background-color: #9d7c5d;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.login-btn:hover {
    background-color: #7f5c40;
    transform: scale(1.05);
}

/* Hero Section */
.hero-about {
    background-image: url('/img/5.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    color: white;
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: 300;
}

.hero-about:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 204, 51, 0.7), rgba(255, 102, 102, 0.7)), url('background-image.jpg');
    background-size: cover;
    background-position: center;
    align-items: center;
    position: relative;
    color: #fff;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-content {
    width: 55%;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

/* Rooms Section */
.rooms {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.rooms h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.rooms-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.room-item {
    width: 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-item:hover {
    transform: scale(1.02);
}

.room-images {
    display: flex;
    gap: 10px;
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* For smooth scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
    width: 100%;
}

.room-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.room-details {
    padding: 20px;
    background-color: rgb(239, 229, 209);
    font-size: 1.1rem;
}

.room-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.info-para{
    color: #8f7333;
    font-weight: bold;
    margin-bottom: 10px;
}
/* Banquet Section */
.banquet {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
    margin: 30px;
}

.banquet h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.banquet ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    color: #8f7333;
}

.para {
    color: #8f7333;
    padding-left: 20px;
    padding-right: 20px;
}

.banquet ul li {
    font-size: 18px;
    margin: 10px 30px;
}

.banquet-images {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.banquet-images img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* Media Queries for Responsiveness */

/* For tablets (portrait and smaller screens) */
@media screen and (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .navbar-logo img {
        height: 35px;
    }
    
    .login-btn {
        width: 100%;
        margin-top: 10px;
    }

    .navbar-links {
        display: none; /* Hide links on small screens */
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-top: 20px;
      }
    
      .navbar-links li a {
        color: #8f7333;
      }
    
    .hero-about {
        height: 40vh;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .about-content {
        width: 80%;
    }

    .rooms h2 {
        font-size: 2.5rem;
    }

    .rooms-gallery {
        flex-direction: column;
    }

    .room-item {
        width: 90%;
        margin-bottom: 20px;
    }

    .banquet h2 {
        font-size: 30px;
    }

    .banquet ul {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .banquet ul li {
        margin: 10px 0;
    }

    .banquet-images {
        flex-direction: column;
    }

    .banquet-images img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
}
/* Navbar for Mobile Devices */
@media (max-width: 768px) {
    .navbar {
      position: relative;
    }
  
    .navbar-links {
      display: none; /* Hide links by default */
      position: absolute;
      top: 60px; /* Position below the logo and button */
      right: 0;
      left: 0;
      background-color: #fff;
      padding: 10px 0;
      text-align: center;
      flex-direction: column;
      gap: 15px;
      z-index: 10;
    }
  
    .navbar-links.active {
      display: flex; /* Show links when active */
    }
  
    .navbar-links li a {
      color: #8f7333;
      font-size: 1.2rem;
    }
  
    .hamburger-menu {
      display: flex;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }
  
    .hamburger-bar {
      width: 30px;
      height: 3px;
      background-color: #8f7333;
      border-radius: 2px;
    }
  
    .login-btn {
      display: none; /* Hide the "Book Now" button on mobile */
    }
  }
  /* Navbar for Larger Screens */
  @media (min-width: 769px) {
    .navbar-links {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  
    .hamburger-menu {
      display: none; /* Hide the hamburger on large screens */
    }
  }
/* For mobile screens (portrait and smaller screens) */
@media screen and (max-width: 480px) {

    .navbar {
        padding: 20px 15px;
      }
    
      .navbar-logo img {
        height: 25px;
      }
    .login-btn {
        font-size: 1rem;
    }

    .hero-about {
        height: 35vh;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 0.9rem;
    }

   
    .about-content h2 {
       font-size: 1.7rem;
        
    }

    .rooms h2 {
        font-size: 2rem;
    }

    .room-item {
        width: 100%;
    }

    .banquet h2 {
        font-size: 28px;
    }

    .banquet ul li {
        font-size: 16px;
    }

    .banquet-images img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
}
.footer {
    background-color: #222; /* Dark Background for Luxury Feel */
    color: white;
    padding: 50px 20px;
    font-family: "Roboto", sans-serif;
    position: relative;
    z-index: 1;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
  }
  
 
  .footer {
    background-color: rgba(148, 110, 47, 0.2); /* Dark Background for Luxury Feel */
    color: #8f7333;
    padding: 50px 20px;
    font-family: "Roboto", sans-serif;
    position: relative;
    z-index: 1;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  /* Logo Section */
  .footer-logo img {
    width: 200px;
    margin-bottom: 10px;
  }
  
  .footer-logo-desc {
    font-size: 0.9rem;
    color: #706d6d;
    margin-top: 10px;
    line-height: 1.5;
    max-width: 300px;
  }
  
  /* Links Section */
  .footer-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .footer-links-column {
    flex: 1;
    min-width: 200px;
    padding: 10px;
  }
  
  .footer-links-column h3 {
    font-size: 1.2rem;
    color: #7f5c40; /* Gold Accent for Titles */
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .footer-links-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links-column li {
    margin-bottom: 10px;
  }
  
  .footer-links-column a {
    color: #b08950;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .footer-links-column a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #333;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
  }
  
  .footer-links-column a:hover {
    color: #333;
  }
  
  .footer-links-column a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  /* Social Icons Section Below the Paragraph */
  .footer-follow-us {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }
  
  .follow-us-content {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .footer-follow-us h3 {
    font-size: 1.2rem;
    color: #8f7333; /* Gold Accent */
    margin-right: 20px;
  }
  
  .social-icons {
    display: flex;
    gap: 20px;
  }
  
  .social-icon {
    font-size: 1.5rem;
    color: #8f7333;
    transition: color 0.3s ease;
  }
  
  .social-icon:hover {
    color: #333; /* Gold Hover Effect */
  }
  
  /* Footer Bottom Section */
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8rem;
    padding-top: 10px;
    position: relative;
  }
  
  .footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: #706d6d;
  }
  
  @media (max-width: 768px) {
    /* Make the footer content layout more compact */
    .footer-content {
      flex-direction: column; /* Stack the content vertically */
      align-items: center;
      gap: 20px; /* Space between sections */
    }
  
    /* Logo Section */
    .footer-logo img {
      width: 120px; /* Adjust logo size for mobile */
      margin-bottom: 10px; /* Reduced space between logo and text */
    }
  
    .footer-logo-desc {
      font-size: 0.8rem;
      text-align: center;
      margin-top: 10px;
      max-width: 250px; /* Reduce description width */
    }
  
    /* Links Section */
    .footer-links {
      flex-direction: column; /* Stack links vertically */
      align-items: center;
      gap: 15px;
      margin-top: 20px;
    }
  
    .footer-links-column {
      width: 90%; /* Ensure links don't take too much space */
      text-align: center; /* Center align text in mobile view */
    }
  
    /* Reduce Link Font Size */
    .footer-links-column h3 {
      font-size: 1rem; /* Smaller heading */
      margin-bottom: 10px; /* Space between heading and links */
    }
  
    .footer-links-column a {
      font-size: 0.9rem; /* Slightly smaller font for links */
    }
  
    /* Social Icons Section */
    .footer-follow-us {
      display: flex;
      flex-direction: column; /* Stack social icons vertically */
      align-items: center;
      gap: 20px;
      margin-top: 30px;
    }
  
    .footer-follow-us h3 {
      font-size: 1rem; /* Smaller title font size */
      margin-bottom: 15px;
    }
  
    .social-icons {
      display: flex;
      gap: 15px;
      justify-content: center;
    }
  
    /* Footer Bottom Section */
    .footer-bottom {
      font-size: 0.75rem;
      margin-top: 20px;
      text-align: center;
    }
  }
  