/*
Theme Name: Lodger Hotel
Theme URI: http://example.com
Author: Your name
Author URI: http://pinegrow.com/
Description: This theme was created with Theme Converter for WordPress
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lodge
*/
/* General Styles
 * Version: 1.0.1

 * Theme Name: Lodger Hotel
*/
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* 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-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* Ensure full height */
  height: 80vh;
  max-height: 80vh; /* Full viewport height */
  padding: 0;

  background-color: rgba(148, 110, 47, 0.2);

  margin: 10px 40px;
  border-radius: 40px;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  transition: transform 0.5s ease;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 40px; /* Only left padding */
  margin-top: 35px;
  color: black;
  animation: fadeInUp 1s forwards;
}
.image-slider {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.slider-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider-image.active {
  opacity: 1;
  position: relative;
}

/* Custom Icons */
.icon-location,
.icon-hotel {
  width: 25px;
  height: 25px;
}
.hero-title {
  font-size: 4.3rem;
  font-weight: 200;
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 15px;
}

.watch-video-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  padding: 12px 0px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  color: black;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.circular-play-btn {
  background-color: #fff;
  border: 3px solid #9d7c5d;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #8f7333;
}

.hero-right {
  flex: 1;
  height: 100%;
}

.hero-right img {
  width: 100%;
  height: 100%;
  border-radius: 0px; /* No border radius on the image side */
}
.slider-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Booking Widget */
.booking-widget {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 80%; /* Adjust overlap height */
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  width: 50%;
  max-width: 800px;
  gap: 20px;
  z-index: 10;
  transition: all 0.3s ease;
}

.widget-item {
  display: flex;
  align-items: center; /* Align icon and label on the same line */
  gap: 20px;
  flex: 1; /* Ensures items are evenly spaced */
}

.widget-text {
  display: flex;
  flex-direction: column;

  align-items: flex-start;
  gap: 5px;
}

.widget-text label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
}

.widget-text select {
  font-size: 1rem;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
  width: 180px; /* Consistent dropdown size */
}

/* Brown vertical line separator */
.vertical-line {
  width: 1px;
  height: 40px;
  background-color: #9d7c5d;
  align-self: center; /* Centered vertically */
  margin: 0 15px; /* Adjust for proper centering */
}

.book-now-btn {
  display: flex;
  flex-direction: column; /* Stacks "Book Now" and "From $400" */
  justify-content: center;
  align-items: center;
  background: #8f7333;
  color: #fff;
  border: none;
  padding: 15px 30px; /* Increased button size */
  font-size: 1rem; /* Increased text size */
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.book-now-btn:hover {
  background: #7f5c40;
}

.book-now-btn span {
  font-size: 0.8rem; /* Slightly smaller than "Book Now" */
  font-weight: normal;
  color: #d1c6a1;
  margin-top: 5px; /* Adds spacing between the two lines */
}

.offers-btn {
  position: absolute;
  bottom: -100px; /* Start off-screen */
  left: 0;
  margin: 0;
  padding: 20px 25px;
  background: #8f7333;
  color: #fff;
  border-radius: 0px 30px 30px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 1.5rem;
  cursor: pointer;
  transition: bottom 1s ease-in-out, background-color 0.3s ease;
  z-index: 20;
}

/* Animation when the button slides up */
.offers-btn.slide-up {
  bottom: 0;
}

/* Button hover effect */
.offers-btn:hover {
  background: #7f5c40;
}

/* Styling for the offers slider */
.offer-slider {
  position: absolute;
  left: 50%;
  bottom: 100%; /* Position above the button */
  transform: translateX(-50%) translateY(-20px); /* Move the box higher */
  width: 200px;
  background: #fff;
  color: #333;
  border: 2px solid #8f7333;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out,
    transform 0.4s ease-in-out;
  pointer-events: none;
  z-index: 10;
}

/* When offers are shown (on hover or click), the slider appears */
.offers-btn:hover .offer-slider,
.offers-btn.active .offer-slider {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-25%) translateY(-10px); /* Slightly shift to the right and move down */
}

/* Styling for individual offer items */
.offer {
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Offer item animation for fading and sliding in */
.offers-btn:hover .offer,
.offers-btn.active .offer {
  opacity: 1;
  transform: translateX(0);
}

/* Arrow position to show on top of the offer box */
.offer-slider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) rotate(180deg); /* Arrow pointing up */
  border: 10px solid transparent;
  border-bottom-color: #fff;
}

/* Icon style */
.icon-offers {
  font-size: 1.5rem;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .offers-btn {
    right: 10px;
    bottom: 15px; /* Consistent padding */
    font-size: 0.9rem;
  }
  .offer-slider {
    width: 90%; /* Maximize use of mobile screen */
    left: 50%;
    transform: translateX(-50%); /* Center the slider */
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column-reverse; /* Stack the left content and slider */
    margin: 0 15px;
  }

  .hero-left {
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    color: wheat;
    z-index: 2;
    margin: 0;
    align-items: center;
  }

  .booking-widget {
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    gap: 15px; /* Adds spacing between items */
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 2px;
    padding-right: 2px;
    width: 75%; /* Centers and reduces width */
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2; /* Ensures it stays above the overlay */
  }

  .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;
  }

  .login-btn {
    width: 100%;
  }

  .hero-title {
    font-size: 2rem; /* Adjust font size */
  }
  .book-now-btn {
    font-size: 1.2rem; /* Larger text */
    padding: 15px; /* Larger button */
    background-color: #8f7333; /* Consistent style */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }

  .book-now-btn:hover {
    background-color: #7f5c40;
  }

  .vertical-line {
    display: none;
  }

  .offers-btn {
    display: block; /* Stack the button */
    margin: 30px auto 0; /* Add space below the booking widget and center the button */
    text-align: center;
    width: 95%;
   
    border-top-right-radius: 0px;
  }
  /* Move the button below the booking widget */
  .booking-widget + .offers-btn {
    order: 1;
  }
  .offers-btn:hover {
    background: #7f5c40;
  }
  .slider-image {
    object-fit: cover;
    max-height: 400px;
  }
  .navbar-links.active {
    display: flex; /* Show when activated */
  }
  .offer-slider{
    width: 60%;
    left: 30%;
  }
  .watch-video-btn{
    color: wheat;
  }
}

/* Animation for fade-in effect */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .navbar {
    padding: 20px 15px;
  }

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

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 0.8rem;
  }

  .watch-video-btn {
    font-size: 0.9rem;
  }

  .offers-btn {
    bottom: 10px;
    right: 10px;
    padding: 10px 15px;
    font-size: 1rem;
  }
  .book-now-btn {
    font-size: 1rem;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    margin: 0 10px; /* Slightly reduce margins */
  }

  .booking-widget {
    width: 80%; /* Slightly narrower */
    padding-top: 25px;
    padding-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .slider-image {
    max-height: 600px; /* Further reduction for very small screens */
  }

  .hero-title {
    font-size: 1.4rem; /* Scales text appropriately */
  }

  .hero-description {
    font-size: 1rem;
  }

  .book-now-btn {
    font-size: 0.9rem;
    padding: 10px;
  }
  .widget-item {
    flex: 1 1 100%; /* Make items full-width */
  }
  .book-now-btn {
    width: 80%; /* Stretch button to full width */
  }
}
/* 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 */
  }
}


/*second section*/

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
  position: relative;
  overflow: hidden;
  margin-top: 5%;
  margin-bottom: 5%;
}

.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0; /* Ensure it sits behind content */
}

.about-section::before {
  width: 500px;
  height: 500px;
  background: rgba(143, 115, 51, 0.1); /* Light gold circle */
  top: -100px;
  left: -150px;
}

.about-section::after {
  width: 600px;
  height: 600px;
  background: rgba(143, 115, 51, 0.15); /* Slightly darker circle */
  bottom: -150px;
  right: -200px;
}

.about-container {
  position: relative;
  z-index: 1; /* Ensure content stays above the background */
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  height: 80vh;
}

.about-image {
  flex: 1;
  width: 100%; /* Ensure the image takes up the full container width */
  height: 100vh; /* Use the full height of the viewport */
  overflow: hidden; /* Prevent overflow of the image */
  position: relative; /* Positioning context for the image */
}

.about-image img {
  position: absolute; /* Position the image absolutely within its container */
  top: 0;
  left: 0;
  width: 100%; /* Stretch the image to fill the container width */
  height: 100%; /* Stretch the image to fill the container height */
  object-fit: cover; /* Ensure the image covers the area while maintaining its aspect ratio */
  object-position: center; /* Center the image in the container */
}
.about-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.about-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.about-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.about-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.explore-btn {
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #8f7333;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: start;
}

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

/* Animations */
.about-container {
  animation: fadeIn 1s ease;
}

.about-image img {
  animation: slideIn 1.5s ease;
}

.about-heading {
  animation: fadeUp 1s ease 0.2s;
}

.about-subtitle,
.about-description,
.explore-btn {
  animation: fadeUp 1s ease 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    
  }
  .about-section {
    background-color: #7f5c40;
  }
  .about-section::before,
  .about-section::after {
    display: none;
  }
  .about-image {
    display: none;
  }

  .about-content {
    padding: 20px;
    text-align: center;
  }

  .about-heading {
    font-size: 1.8rem;
  }

  .explore-btn {
    align-self: center;
  }
}
@media (max-width: 360px) {
  .about-heading {
    font-size: 1.2rem; /* Even smaller font size for very small screens */
  }

  .about-description {
    font-size: 0.9rem; /* Smaller font size for description */
  }

  .explore-btn {
    padding: 8px 18px;
    font-size: 0.8rem; /* Adjust button font size */
  }

  .about-content {
    padding: 10px; /* Further reduce padding */
  }
}
/*third section*/
.room-showcase {
  padding: 30px 20px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  text-align: center;
  font-size: larger;
  color: #7f5c40;
}
.room-showcase-header {
  margin-bottom: 3rem;
}
.room-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  position: relative;
  grid-template-rows: 1fr 1fr;
}

.room-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%; /* Allow items to scale responsively */
}

.room-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  width: 80%;
}

.room-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.room-info p {
  font-size: 1.2rem;
}

/* Hover Effects */
.room-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.room-item:hover .room-info {
  opacity: 1;
}

.room-item:hover img {
  opacity: 0.8;
}

/* Left Column */
.left-item {
  height: 400px;
}

/* Center Item (Spans full height) */
.center-item {
  height: 800px; /* Spans full height */
  grid-column: 2 / 3; /* Center item takes the middle column */
  grid-row: span 2; /* Spans two rows */
}

/* Right Column */
.right-item {
  height: 400px;
}

.left-item:nth-child(1) {
  grid-column: 1; /* Left column */
  grid-row: 1; /* Place the first left item on the first row */
}

.left-item:nth-child(2) {
  grid-column: 1; /* Left column */
  grid-row: 2; /* Place the second left item on the second row */
}

.right-item:nth-child(1) {
  grid-column: 3; /* Right column */
  grid-row: 1; /* First right item stays on the first row */
}

.right-item:nth-child(2) {
  grid-column: 3; /* Right column */
  grid-row: 2; /* Second right item stays on the second row */
}

@media (max-width: 768px) {
  .room-container {
    grid-template-columns: 1fr 1fr; /* Two items per row on small screens */
    gap: 20px;
    grid-template-rows: auto auto auto; /* Three rows */
  }

  .room-item {
    height: 250px; /* Adjust height for mobile */
  }

  .center-item {
    height: 500px; /* Adjust center item height for mobile */
  }

  .room-info {
    font-size: 1rem;
    padding: 15px; /* Reduce padding for mobile */
  }

  .room-info h3 {
    font-size: 1.5rem; /* Adjust header font size */
  }

  .room-info p {
    font-size: 1rem; /* Adjust paragraph font size */
  }

  .left-item,
  .right-item {
    height: 300px; /* Adjust height of items for mobile screens */
  }

  .room-item img {
    object-fit: cover;
    width: 100%;
    height: 100%; /* Ensure images cover the entire space */
  }

  /* For the 5th item, place it in the center of the third row */
  .room-item:nth-child(5) {
    grid-column: 1 / 3; /* Spans two columns to center */
    grid-row: 3; /* Place it in the third row */
  }

  /* Ensure items are placed correctly in the first and second rows */
  .room-item:nth-child(1) {
    grid-column: 1; /* First item goes to the first column */
    grid-row: 1; /* Place it in the first row */
  }

  .room-item:nth-child(2) {
    grid-column: 2; /* Second item goes to the second column */
    grid-row: 1; /* Place it in the first row */
  }

  .room-item:nth-child(3) {
    grid-column: 1; /* Third item goes to the first column */
    grid-row: 2; /* Place it in the second row */
  }

  .room-item:nth-child(4) {
    grid-column: 2; /* Fourth item goes to the second column */
    grid-row: 2; /* Place it in the second row */
  }
}

/* For even smaller devices, such as max-width: 480px */
@media (max-width: 480px) {
  .room-info h3 {
    font-size: 1rem; /* Reduce header size further for smaller devices */
  }

  .room-info p {
    font-size: 0.7rem; /* Reduce text size for smaller devices */
  }

  .room-item {
    height: 200px; /* Make items shorter on very small screens */
  }

  .room-info {
    font-size: 0.9rem; /* Further reduce font size */
    padding: 10px; /* Adjust padding */
  }
  .room-showcase {
    font-size: medium;
  }
}
/* Make room-info always visible on mobile */
@media (max-width: 768px) {
  .room-info {
    opacity: 1; /* Make room-info visible on mobile */
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 10px;
    font-size: 1rem; /* Adjust font size for mobile */
  }

  .room-info h3 {
    font-size: 1rem; /* Adjust header font size for mobile */
  }

  .room-info p {
    display: none; /* Adjust paragraph font size for mobile */
  }
}
/* General styling */
.hotel-section {
  font-family: Arial, sans-serif;
  padding-top: 3rem;
  padding-bottom: 5 rem;
  padding-left: 5rem;
  padding-right: 5rem;
  background-color: white;
  margin-top: 5%;
  margin-bottom: 5%;
}

.hotel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  z-index: 1;
}

.hotel-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  color: #333;
  z-index: 1;
}
.hotel-header h2 {
  margin: 0; /* Reset margin for precise alignment */
  flex: 1; /* Allow heading to take available space */
}

.hotel-header p {
  margin-top: 8px; /* Space between heading and subheading */
  color: #666; /* Subheading color */
  font-size: 14px; /* Adjust font size if needed */
  width: 100%; /* Ensure it occupies full row below the heading */
}

.hotel-subtitle {
  font-size: 1rem;
  color: #777;
  flex: 1 1 100%;
  margin-top: 0.5rem;
}

.view-all-btn {
  background-color: #8f7333;
  margin: 0;
  align-self: flex-start;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1;
  color: white;
}

.view-all-btn:hover {
  background-color: #7f5c40;
}

/* Cards container */
.hotel-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  z-index: 1;
}
.hotel-card-link{
  z-index: 1;
}
/* Hotel Card */
.hotel-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  z-index: 1;
}

.hotel-card:hover {
  transform: translateY(-5px);
}
.hotel-card-link {
  text-decoration: none;
  color: inherit;
}
.hotel-card-link:hover .hotel-card {
  transform: scale(1.05); /* Optional hover effect */
  transition: transform 0.3s ease;
}

.hotel-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hotel-info {
  padding: 1rem;
}

.hotel-location {
  font-size: 0.8rem;
  color: #6cb16c;
  margin-bottom: 0.5rem;
}

.hotel-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.hotel-price {
  font-size: 1rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.hotel-rating {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.hotel-stars {
  color: #ff6347;
  margin-right: 0.5rem;
}

.hotel-rating-value {
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hotel-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hotel-title {
    font-size: 1.5rem;
  }

  .hotel-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .view-all-btn {
    margin: 1rem auto; /* Center the button horizontally with some spacing */
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-color: #8f7333;
    color: white;
    display: block; /* Ensure the button behaves as a block element */
  }

  .view-all-btn:hover {
    background-color: #7f5c40;
  }
  .hotel-title {
    font-size: 1.5rem;
  }

  .hotel-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}
.hotel-section {
  position: relative; /* To position background shapes */
  overflow: hidden; /* Prevent shapes from overflowing */
}

.hotel-section::before,
.hotel-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0; /* Ensure it sits behind content */
}

.hotel-section::before {
  width: 500px;
  height: 500px;
  background: rgba(143, 115, 51, 0.1); /* Light gold circle */
  top: -100px;
  left: -150px;
}

.hotel-section::after {
  width: 600px;
  height: 600px;
  background: rgba(143, 115, 51, 0.15); /* Slightly darker circle */
  bottom: -150px;
  right: -200px;
}

@media (max-width: 768px) {
  .hotel-section::before,
  .hotel-section::after {
    display: none; /* Hide shapes on mobile */
  }

  .hotel-section {
    background-color: rgba(143, 115, 51, 0.1); /* Solid light gold background */
    padding: 2rem;
  }
}

/* Custom Classes */
/* Custom Color */
/* Custom Colors */

.hotel-facilities-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 80px;
  flex-wrap: wrap;
}

.hotel-facilities-header {
  flex: 1;
  max-width: 40%;
}

.hotel-facilities-header h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.hotel-facilities-header p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.hotel-contact-btn {
  padding: 10px 20px;
  background-color: #b08950;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.hotel-contact-btn:hover {
  background-color: #9c7a46;
}

.hotel-facilities-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hotel-facility-box {
  padding: 30px;
  border: 1px solid #9d7c5d;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hotel-facility-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.hotel-icon-placeholder {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #b08950;
}

.hotel-facility-box p {
  font-size: 1rem;
  color: #333;
}

@media (max-width: 1024px) {
  .hotel-facilities-container {
    flex-direction: column;
    align-items: center;
  }

  .hotel-facilities-header {
    max-width: 100%;
    text-align: center;
  }

  .hotel-facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hotel-facilities-grid {
    grid-template-columns: 1fr;
  }

  .hotel-contact-btn {
    font-size: 0.9rem;
  }

  .hotel-facility-box {
    padding: 15px;
  }
  .hotel-facilities-container {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  /* For tablets and mobile screens */
  .hotel-facilities-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 boxes in a row */
  }
  .hotel-facility-box p {
    font-size: 0.8rem;
  }

  .hotel-facilities-header h1 {
    font-size: 1.8rem;
  }

  .hotel-facilities-header p {
    font-size: 0.9rem;
  }
  .hotel-contact-btn {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  /* For very small screens */
  .hotel-facilities-grid {
    grid-template-columns: repeat(2, 1fr); /* Keep 2 boxes in a row */
    gap: 15px; /* Adjust gap if necessary */
  }
}

.unique-blog-section {
  padding: 50px 20px;
  background-color: white;
  text-align: center;
  margin-left: 10%;
  margin-right: 10%;
}

.unique-blog-heading {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #7f5c40;
  font-weight: 500;
  letter-spacing: 2px;
}

.unique-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.unique-blog-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #e0e0e0;
  position: relative;
}

.unique-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.unique-blog-image-container {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.unique-blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.unique-blog-card:hover .unique-blog-image {
  transform: scale(1.1);
}

.unique-blog-info {
  padding: 25px;
  position: relative;
  z-index: 1;
}

.unique-blog-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
  text-transform: capitalize;
}

.unique-blog-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #777;
}

.unique-blog-btn {
  display: inline-block;
  background-color: #9c7a46;
  color: #fff;
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.3s;
}

.unique-blog-btn:hover {
  background-color: #7f5c40;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .unique-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .unique-blog-card {
    /* Smaller card size for tablets */
    height: 350px;
  }
}

@media (max-width: 768px) {
  .unique-blog-grid {
    grid-template-columns: 1fr;
  }

  .unique-blog-card {
    /* Smaller card size for mobile */
    height: 300px; /* Reduce height of the card */
  }

  .unique-blog-title {
    font-size: 1rem;
  }

  .unique-blog-description {
    font-size: 1rem;
  }

  .unique-blog-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .unique-blog-card {
    /* Even smaller size on very small screens */
    height: 280px; /* Further reduce height */
  }
  .unique-blog-description {
    display: none;
  }
  .unique-blog-btn {
    display: none;
  }
  .unique-blog-heading {
    font-size: 1.5rem;
  }
}

/* Modern Footer Styling */
/* Footer Section Styling */
.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;
}

/* Logo Section */
/* Footer Section Styling */

.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;
  }
}


      /* Dropdown Styles for Desktop */
      .navbar-links .dropdown {
        position: relative;
      }
      
      .navbar-links .dropdown a {
        text-decoration: none;
        color: #bbafaf;
        font-weight: 500;
        display: block;
        padding: 10px 15px;
      }
      
      .navbar-links .dropdown:hover .dropdown-menu .sub-menu {
        display: block;
      }
      
      .navbar-links .dropdown-menu .sub-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        padding: 10px 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        width: 200px;
        border-radius: 5px;
        z-index: 10;
      }
      
      .navbar-links .dropdown-menu .sub-menu li {
        padding: 10px 15px;
      }
      
      .navbar-links .dropdown-menu .sub-menu li a {
        color: #333;
        text-decoration: none;
        display: block;
      }
      
      .navbar-links .dropdown-menu  .sub-menu li a:hover {
        background-color: #f1f1f1;
      }
      
      /* Mobile responsiveness - Adjusting for dropdown */
      @media screen and (max-width: 768px) {
        .navbar-links {
          display: none; /* Hide links on small screens */
          flex-direction: column;
          gap: 10px;
          align-items: center;
          margin-top: 20px;
        }
      
        .navbar-links .dropdown-menu .sub-menu {
          position: static;
          display: none;
          padding-left: 20px;
          width: 100%;
          box-shadow: none;
        }
      
        .navbar-links .dropdown:hover .dropdown-menu  .sub-menu{
          display: none; /* Disable hover functionality on mobile */
        }
      
        .navbar-links .dropdown.active .dropdown-menu .sub-menu{
          display: block; /* Show dropdown when clicked on mobile */
        }
      
        .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 */
        }
      
        /* Modify the dropdown toggle behavior */
        .navbar-links .dropdown a {
          padding: 15px 20px;
          font-size: 1.2rem;
        }
      
        .navbar-links .dropdown-menu .sub-menu li a {
          padding: 10px 20px;
          font-size: 1.1rem;
        }
      
        .navbar-links .dropdown-menu .sub-menu li a:hover {
          background-color: #ecf0f1;
        }
      }
      
      /* 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 */
        }
      
        .navbar-links .dropdown a {
          padding: 10px 15px;
          font-size: 1rem;
        }
      }