/*
 Theme Name:   mychildtheme
 Template:     hotelz
*/

@import url('https://fonts.googleapis.com/css2?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&display=swap');



/* Add your custom styles below */
/* Example custom style */
/* Basic reset for consistent rendering across browsers */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding and border are included in element's total width/height */
    font-family: "Dancing Script", cursive;
}

/* Global font and text styling */
body {
    line-height: 1.2; /* Improves readability of text */
    color: #333; /* Dark gray for text */
    background-color: #f4f4f4; /* Light gray background for the entire page */
}
a {
text-decoration: none;
color: inherit;
}
img {
  max-width: 100%; /* Ensures images are responsive */
  height: auto; /* Maintains aspect ratio */
}

ul {
  list-style-type: none; /* Removes bullet points */
  margin: 0;            /* Removes default outer spacing */
  padding: 0;           /* Removes default inner spacing */
}
.container {
  width: 100%; /* Adjust the width as needed */
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}


/* owl carousel overrides */

.owl-carousel .item img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-carousel {
    max-height: 600px;
    overflow: hidden;
}

.gallery-carousel {
    margin-top: 50px;
}

.owl-nav button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
}


/* Header Section */
.header_section {
  background-color: #ffffff; /* Light gray background for the header */
}

.header-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px; /* Padding around the header content */
}
.header-navbar img {
  width: 200px;
  height: auto; /* Maintains aspect ratio */
  object-fit: cover;
}

.header-navbar-left {
  display: flex;
  align-items: center;
}
.header-navbar-left img {
  height: 50px; /* Adjust the height of the logo */
}
.header-navbar-right {
  display: flex;
  align-items: center;
}
.header-navbar-right a {
  margin-left: 20px; /* Space between links */
  color: #333; /* Dark gray for links */
  text-decoration: none; /* Removes underline from links */
}
.header-navbar-right a:hover {
  color: #007bff; /* Change color on hover */
}
.header-navbar-right a.active {
  color: #007bff; /* Active link color */
}
.header-navbar-right a.active:hover {
  color: #0056b3; /* Darker color on hover for active link */
}
.header-navbar ul {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to the next line if needed */
  margin: 0; /* Removes default margin */
  padding: 0; /* Removes default padding */
}

.header-navbar li {
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  margin-right: 20px;
  text-decoration: none;
}
.header-navbar li a {
  color: #333; /* Dark gray for links */
  text-decoration: none; /* Removes underline from links */
  padding: 10px; /* Adds padding around the link */
}
.header-navbar li a:hover {
  color: #007bff; /* Change color on hover */
}
.header-navbar li a.active {
  color: #007bff; /* Active link color */
}
.header-navbar li a.active:hover {
  color: #0056b3; /* Darker color on hover for active link */
}
/* Banner Section */
.banner {
  background-image: url('<?php echo get_template_directory_uri(); ?>/images/banner.jpg'); /* Replace with your banner image */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the image */
  height: 400px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* Text color for contrast against the banner */
}
.banner h1 {
  font-size: 2.5em; /* Adjust font size as needed */
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Adds a shadow for better readability */
}
.banner p {
  font-size: 1.2em; /* Adjust font size as needed */
  margin-top: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Adds a shadow for better readability */
}

/* ---------- Services Section ---------------*/
.services-section {
  background-color: #fff; /* White background for the services section */
  padding: 40px 20px; /* Padding around the services content */
  text-align: center; /* Center align text */
}
.services-section h2 {
  margin-bottom: 20px; /* Space below the heading */
  font-size: 2em; /* Adjust font size as needed */
  color: #333; /* Dark gray for the heading */
}
.services-section p {
  margin-bottom: 20px; /* Space below the paragraph */
  color: #666; /* Lighter gray for the paragraph text */
  font-size: 1.1em; /* Adjust font size as needed */
}


.services-section .row {
  display: flex;
  flex-wrap: wrap; /* Allows cards to wrap to the next line */
  justify-content: center; /* Centers the cards in the section */
}
.services-section .row .col { 
  display: flex;
  flex-wrap: wrap;
  width: 50%; /* Each column takes up 50% of the row */
  padding: 10px; /* Padding around each column */
  box-sizing: border-box; /* Ensures padding is included in the width */
  text-align: center; /* Center align text */
  justify-content: center;
  align-items: center;
}
.services-section .row .col img {
  width: 100%; /* Ensures the image covers the column width */
  height: auto; /* Maintains aspect ratio */
  border-radius: 8px; /* Rounded corners for the image */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
.services-section .row .col h3 {
  margin-top: 10px; /* Space above the heading */
  font-size: 1.5em; /* Adjust font size as needed */
  color: #333; /* Dark gray for the heading */
}
.services-section .row .col p {
  color: #666; /* Lighter gray for the paragraph text */
  font-size: 1em; /* Adjust font size as needed */
  line-height: 1.5; /* Improves readability */
}

.dining-section {
  background-color: #f9f9f9; /* Light gray background for the dining section */
  padding: 40px 20px; /* Padding around the dining content */
  text-align: center; /* Center align text */
}
.dining-section h2 {
  margin-bottom: 20px; /* Space below the heading */
  font-size: 2em; /* Adjust font size as needed */
  color: #333; /* Dark gray for the heading */
}
.dining-section p {
  margin-bottom: 20px; /* Space below the paragraph */
  color: #666; /* Lighter gray for the paragraph text */
  font-size: 1.1em; /* Adjust font size as needed */
}








/* ----------   Banquet Services Section ---------------*/
/* Banquet Services Section */
.banquet-services {
  padding: 40px 20px; /* Padding around the content */
  text-align: center; /* Center align text */
}
.banquet-services h2 {
  margin-bottom: 20px; /* Space below the heading */
  font-size: 2em; /* Adjust font size as needed */
  color: #333; /* Dark gray for the heading */
}
.banquet-services p {
  margin-bottom: 20px; /* Space below the paragraph */
  color: #666; /* Lighter gray for the paragraph text */
  font-size: 1.1em; /* Adjust font size as needed */
}
.banquet-services-cards {
  display: flex;
  flex-wrap: wrap; /* Allows cards to wrap to the next line */
  justify-content: center; /* Centers the cards in the section */
  gap: 20px; /* Space between cards */
  padding: 20px; /* Padding around the card section */
}
.banquet-services-cards .card {
  flex: 1 1 300px; /* Flex-grow, flex-shrink, and base width for cards */
  max-width: 300px; /* Maximum width for each card */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  border-radius: 8px; /* Rounded corners */
  overflow: hidden; /* Ensures content doesn't overflow the card */
}
.banquet-services-cards .card img {
  width: 100%; /* Ensures the image covers the card width */
  height: auto; /* Maintains aspect ratio */
}
.banquet-services-cards .card .card-content {
  padding: 20px; /* Padding inside the card */
}
.banquet-services-cards .card h3 {
  margin-top: 0; /* Removes default margin at the top */
  font-size: 1.5em; /* Adjust font size as needed */
  color: #333; /* Dark gray for the heading */
}
.banquet-services-cards .card p {
  color: #666; /* Lighter gray for the paragraph text */
  font-size: 1em; /* Adjust font size as needed */
  line-height: 1.5; /* Improves readability */
}
.banquet-services-cards .card .button {
  display: inline-block;
  background-color: #831f06e7; /* Button background color */
  color: white; /* Button text color */
  padding: 10px 20px; /* Padding inside the button */
  text-decoration: none; /* Removes underline from link */
  border-radius: 4px; /* Rounded corners for the button */
  margin-top: 10px; /* Space above the button */
}
.banquet-services-cards .card .button:hover {
  background-color: #6b2002; /* Darker color on hover */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}
/* gallery section */
.gallery {
  background-color: #f9f9f9; /* Light gray background for the gallery section */
  padding: 40px 20px; /* Padding around the gallery content */
  text-align: center; /* Center align text */
}
.gallery h2 {
  margin-bottom: 20px; /* Space below the heading */
  font-size: 2em; /* Adjust font size as needed */
  color: #333; /* Dark gray for the heading */
}
.gallery p {
  margin-bottom: 20px; /* Space below the paragraph */
  color: #666; /* Lighter gray for the paragraph text */
  font-size: 1.1em; /* Adjust font size as needed */
}
.gallery-section .text-wrap {
  margin-bottom: 20px; /* Space below the text */
  text-align: center; /* Center align text */
}
.gallery-images {
  display: flex;
  flex-wrap: wrap; /* Allows images to wrap to the next line */
  justify-content: center; /* Centers the images in the section */
  gap: 20px; /* Space between images */

}
.gallery-images img {
  flex: 1 1 300px; /* Flex-grow, flex-shrink, and base width for images */
  max-width: 300px; /* Maximum width for each image */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  object-fit: cover;
}
/* Gallery image hover effect */
.gallery-images img:hover {
  transform: scale(1.05); /* Slightly enlarges the image on hover */
  transition: transform 0.3s ease; /* Smooth transition for hover effect */
}


/* ----------   Video Section ---------------*/




.video-section {
  background-color: #f9f9f9; /* Light gray background for the video section */
  padding: 40px 20px; /* Padding around the video content */
  text-align: center; /* Center align text */
}
.video-section h2 {
  margin-bottom: 20px; /* Space below the heading */
  font-size: 2em; /* Adjust font size as needed */
  color: #333; /* Dark gray for the heading */
}
.video-section p {
  margin-bottom: 20px; /* Space below the paragraph */
  color: #666; /* Lighter gray for the paragraph text */
  font-size: 1.1em; /* Adjust font size as needed */
}
.video-section .container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%; /* Ensures the video container is responsive */
}
.video-section iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none; /* Removes default border */
}
/* Video container styling */
.video-section  video {
  width: 100%; /* Ensures the video covers the container width */
  height: auto; /* Maintains aspect ratio */
  border-radius: 8px; /* Rounded corners for the video */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
/* Video hover effect */
.video-section  video:hover {
  transform: scale(1.05); /* Slightly enlarges the video on hover */
  transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

/* ----------   Restaurant Section ---------------*/



.restaurant-section {
  background-color: #fff; /* White background for the restaurant section */
  padding: 40px 20px; /* Padding around the content */
  text-align: center; /* Center align text */
}
.restaurant-section h2 {
  margin-bottom: 20px; /* Space below the heading */
  font-size: 2em; /* Adjust font size as needed */
  color: #333; /* Dark gray for the heading */
}
.restaurant-section p {
  margin-bottom: 20px; /* Space below the paragraph */
  color: #666; /* Lighter gray for the paragraph text */
  font-size: 1.1em; /* Adjust font size as needed */
}
.restaurant-section .restaurant-cards {
  display: flex;
  flex-wrap: wrap; /* Allows cards to wrap to the next line */
  justify-content: center; /* Centers the cards in the section */
  gap: 20px; /* Space between cards */
}
.restaurant-section .restaurant-cards .card {
  flex: 1 1 300px; /* Flex-grow, flex-shrink, and base width for cards */
  max-width: 300px; /* Maximum width for each card */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  border-radius: 8px; /* Rounded corners */
  overflow: hidden; /* Ensures content doesn't overflow the card */
}
.restaurant-section .restaurant-cards .card img {
  width: 100%; /* Ensures the image covers the card width */
  height: auto; /* Maintains aspect ratio */
}
.restaurant-section .restaurant-cards .card .card-content {
  padding: 20px; /* Padding inside the card */
}
.restaurant-section .restaurant-cards .card h3 {
  margin-top: 0; /* Removes default margin at the top */
  font-size: 1.5em; /* Adjust font size as needed */
  color: #333; /* Dark gray for the heading */
}
.restaurant-section .restaurant-cards .card p {
  color: #666; /* Lighter gray for the paragraph text */
  font-size: 1em; /* Adjust font size as needed */
  line-height: 1.5; /* Improves readability */
}
.restaurant-section .restaurant-cards .card .button {
  display: inline-block;
  background-color: #007bff; /* Button background color */
  color: white; /* Button text color */
  padding: 10px 20px; /* Padding inside the button */
  text-decoration: none; /* Removes underline from link */
  border-radius: 4px; /* Rounded corners for the button */
  margin-top: 10px; /* Space above the button */
}
.restaurant-section .restaurant-cards .row {
  display: flex;
  flex-wrap: wrap; /* Allows cards to wrap to the next line */
  justify-content:space-around; /* Adjusts spacing between cards */
  gap: 16px; /* Adds space between cards */
}










/*card sylying */ 

.banquet-services-cards .row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content:space-around; /* Adjusts spacing between cards */
  gap: 16px; /* Adds space between cards */
}

.banquet-services-cards .card {
  display: inline-block;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* This is important to ensure the image corners are rounded */
  margin: 16px;
  font-family: sans-serif;
  transition: transform 0.3s ease;
}
.banquet-services-cards .card:hover {
  transform: translateY(-5px); /* Adds a subtle lift effect on hover */
}
.banquet-services-cards .card img {
  width: 100%;
  height: auto;
  display: block;
}
.banquet-services-cards .card .card-content {
  padding: 16px;
}
.banquet-services-cards .card h3 {
  margin-top: 0;
  font-size: 1.25em;
  color: #333;
}
.banquet-services-cards .card p {
  color: #666;
  font-size: 0.9em;
  line-height: 1.5;
}
.banquet-services-cards .card .button {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 8px;
}
.banquet-services-cards .card .button:hover {
  background-color: #0056b3;
}
/* Card styling for banquet services */





.card {
  display: inline-block;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* This is important to ensure the image corners are rounded */
  margin: 16px;
  font-family: sans-serif;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px); /* Adds a subtle lift effect on hover */
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 16px;
}

.card h2 {
  margin-top: 0;
  font-size: 1.25em;
  color: #333;
}

.card p {
  color: #666;
  font-size: 0.9em;
  line-height: 1.5;
}

.button {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 8px;
}

.button:hover {
  background-color: #0056b3;
}

/* -----------Testimonials Section -----------*/

testimonials-section {
  background-color: #f9f9f9; /* Light gray background for the testimonials section */
  padding: 40px 20px; /* Padding around the content */
  text-align: center; /* Center align text */
}
.testimonials-section h2 {
  margin-bottom: 20px; /* Space below the heading */
  font-size: 2em; /* Adjust font size as needed */
  color: #333; /* Dark gray for the heading */
}
.testimonials-section p {
  margin-bottom: 20px; /* Space below the paragraph */
  color: #666; /* Lighter gray for the paragraph text */
  font-size: 1.1em; /* Adjust font size as needed */
}
.testimonials-section .testimonial-cards {
  display: flex;
  flex-wrap: wrap; /* Allows cards to wrap to the next line */
  justify-content: center; /* Centers the cards in the section */
  gap: 20px; /* Space between cards */
}
.testimonials-section .testimonial-cards .card {
  flex: 1 1 300px; /* Flex-grow, flex-shrink, and base width for cards */
  max-width: 300px; /* Maximum width for each card */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  border-radius: 8px; /* Rounded corners */
  overflow: hidden; /* Ensures content doesn't overflow the card */
}
.testimonials-section .testimonial-cards .card img {
  width: 100%; /* Ensures the image covers the card width */
  height: auto; /* Maintains aspect ratio */
  border-radius: 8px 8px 0 0; /* Rounded corners for the top of the card */
}
.testimonials-section .testimonial-cards .card .card-content {
  padding: 20px; /* Padding inside the card */
}
.testimonials-section .testimonial-cards .card h3 {
  margin-top: 0; /* Removes default margin at the top */
  font-size: 1.5em; /* Adjust font size as needed */
  color: #333; /* Dark gray for the heading */
}
.testimonials-section .testimonial-cards .card p {
  color: #666; /* Lighter gray for the paragraph text */
  font-size: 1em; /* Adjust font size as needed */
  line-height: 1.5; /* Improves readability */
}
.testimonials-section .testimonial-cards .card .button {
  display: inline-block;
  background-color: #007bff; /* Button background color */
  color: white; /* Button text color */
  padding: 10px 20px; /* Padding inside the button */
  text-decoration: none; /* Removes underline from link */
  border-radius: 4px; /* Rounded corners for the button */
  margin-top: 10px; /* Space above the button */
}
.testimonials-section .testimonial-cards .card .button:hover {
  background-color: #0056b3; /* Darker color on hover */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.testimonials-section .testimonial-slider {
  display: flex;
  overflow-x: auto; /* Allows horizontal scrolling for the slider */
  scroll-snap-type: x mandatory; /* Enables snap scrolling */
}
.testimonials-section .testimonial-slider .testimonial-item {
  flex: 0 0 auto; /* Prevents items from shrinking */
  width: 300px; /* Fixed width for each testimonial item */
  margin-right: 20px; /* Space between items */
  scroll-snap-align: start; /* Aligns items to the start of the container */
  background-color: #fff; /* White background for each testimonial item */
  padding: 20px; /* Padding inside the item */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
.testimonials-section .testimonial-slider .testimonial-item p {
  font-size: 1em; /* Adjust font size as needed */
  color: #666; /* Lighter gray for the paragraph text */
  line-height: 1.5; /* Improves readability */
}
.testimonials-section .testimonial-slider .testimonial-item h5 {
  margin-top: 10px; /* Space above the name */
  font-size: 1.2em; /* Adjust font size as needed */
  color: #333; /* Dark gray for the name */
}




/*-------------- Contact Section --------------*/


.contact-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 20px;
  font-size: 1.5em;
  color: #333;
}

.contact-section p {
  margin-bottom: 20px;
  color: #666;
}
.contact-section .icon {
  width: 50px;
  height: 50px;
  fill: #007bff; /* Icon color */
}
.contact-section .icon:hover {
  fill: #0056b3; /* Icon color on hover */
}
.contact-section .contact-info {
  display: flex;
  justify-content: center;
  gap: 20px;
}


.contact-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Space between contact items */
  margin-top: 20px;
}
.contact-section .row .col {
  flex: 1;
  min-width: 200px; /* Ensures a minimum width for each column */
  text-align: center;
}
/* Footer Section */
.footer {
  background-color: #ececec; /* Light gray background for the footer */
  padding: 20px; /* Padding around the footer content */
  color: #0a0a0a; /* Dark gray for footer text */
}
.footer h4 {
  margin-bottom: 10px; /* Space below the heading */
  font-size: 1.5em; /* Adjust font size as needed */
  color: #333; /* Dark gray for the heading */
}
.footer ul {
  list-style-type: none; /* Removes bullet points */
  padding: 0; /* Removes default padding */
  margin: 0; /* Removes default margin */
}
.footer ul li {
  margin-bottom: 8px; /* Space between list items */
  color: #444c55; /* Dark gray for list items */
  font-size: 0.9em; /* Adjust font size as needed */
}
.footer ul li a {
  color: #444c55; /* Dark gray for links */
  text-decoration: none; /* Removes underline from links */
}
.footer ul li a:hover {
  color: #007bff; /* Change color on hover */
}
/* Footer links section */
.footer_links_section {
  background-color: #ececec; /* Light gray background for the footer links section */
  padding: 20px; /* Padding around the footer links content */
}
.footer_links_section h4 {
  margin-bottom: 10px; /* Space below the heading */
  font-size: 1.5em; /* Adjust font size as needed */
  color: #333; /* Dark gray for the heading */
}
.footer_links_section .row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  
}
.footer_links_section ul {
  list-style-type: none; /* Removes bullet points */
  padding: 0; /* Removes default padding */
  margin: 0; /* Removes default margin */
}
.footer_links_section ul li {
  margin-bottom: 8px; /* Space between list items */
  color: #444c55; /* Dark gray for list items */
  font-size: 0.9em; /* Adjust font size as needed */
}
.footer_links_section ul li a {
  color: #444c55; /* Dark gray for links */
  text-decoration: none; /* Removes underline from links */
}
.footer_links_section ul li a:hover {
  color: #007bff; /* Change color on hover */
}
/* Responsive Design */
@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
  .header-navbar {
    flex-direction: column; /* Stacks header items vertically on smaller screens */
    align-items: flex-start; /* Aligns items to the start */
  }
  .header-navbar-right {
    margin-top: 10px; /* Adds space between left and right sections */
  }
  .banner h1 {
    font-size: 2em; /* Smaller font size for smaller screens */
  }
  .banner p {
    font-size: 1em; /* Smaller font size for smaller screens */
  }
  .banquet-services-cards {
    flex-direction: column; /* Stacks cards vertically on smaller screens */
    align-items: center; /* Centers cards in the section */
  }

  .video-section .video-container {
    padding-bottom: 56.25%; /* Maintains 16:9 aspect ratio for video */
  }
  .video-section .video-container iframe {
    width: 100%; /* Ensures the video covers the container width */
    height: 100%; /* Maintains aspect ratio */
  }
}
/* Adjusts layout for smaller screens */
@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }
  .header-navbar {
    flex-direction: column; /* Stacks header items vertically on smaller screens */
    align-items: flex-start; /* Aligns items to the start */
  }
  .header-navbar-right {
    margin-top: 10px; /* Adds space between left and right sections */
  }
  .banner h1 {
    font-size: 2em; /* Smaller font size for smaller screens */
  }
  .banner p {
    font-size: 1em; /* Smaller font size for smaller screens */
  }
  .banquet-services-cards {
    flex-direction: column; /* Stacks cards vertically on smaller screens */
    align-items: center; /* Centers cards in the section */
  }
  .gallery-images {
    flex-direction: column; /* Stacks images vertically on smaller screens */
    align-items: center; /* Centers images in the section */
  }
  .gallery-images img {
    max-width: 100%; /* Ensures images fit within the screen width */
    height: auto; /* Maintains aspect ratio */
  }
  .contact-section .row {
    flex-direction: column; /* Stacks contact items vertically on smaller screens */
    align-items: center; /* Centers contact items in the section */
  }
  .contact-section .row .col {
    width: 100%; /* Ensures each contact item takes full width */
    margin-bottom: 20px; /* Adds space between contact items */
  }
  .footer_links_section {
    padding: 20px; /* Adjusts padding for smaller screens */
  }
  
}
/*Adjusts layout for mobile devices */
@media (max-width: 576px) {
  .container {
    max-width: 540px;
  }
  .header-navbar {
    flex-direction: column; /* Stacks header items vertically on smaller screens */
    align-items: flex-start; /* Aligns items to the start */
  }
  .header-navbar-right {
    margin-top: 10px; /* Adds space between left and right sections */
  }
  .banner h1 {
    font-size: 1.5em; /* Smaller font size for mobile devices */
  }
  .banner p {
    font-size: 0.9em; /* Smaller font size for mobile devices */
  }
  .banquet-services-cards {
    flex-direction: column; /* Stacks cards vertically on smaller screens */
    align-items: center; /* Centers cards in the section */
  }
  .footer_links_section {
    padding: 10px; /* Reduces padding for smaller screens */
  }
  .footer_links_section h4 {
    font-size: 1.2em; /* Smaller font size for headings */
  }
  
}