/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Navbar */

.navbar {
  background-color: #C57734; 
  padding: 10px 20px; /* Add padding for spacing */
}
.navbar-nav {
  gap: 40px; 
  margin-right: 3%;
}

/* Brand Logo */
.navbar-brand img {
  width: 40%; 
  /* height: auto; */
}

.navbar button:not(:disabled) {
  cursor: pointer;
  width: 22%;
  border: none;
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: white; /* Text color */
  font-weight: bold;
  padding: 3px 5px !important; 
  transition: background-color 0.3s, color 0.3s;
  border-radius: 5px; /* Rounded corners */
  font-size: 1rem; /* Default font size */
}

.navbar-nav .nav-link:hover {
  /* background-color: #145060; Hover background color */
  text-decoration: underline;
  text-decoration-color: #145060;
  text-decoration-thickness: 0.3rem;
  /* transition: all 4s ease-in-out 1s; */
  /* transition-property: left; */
  /* transition-timing-function: linear; */
  /* transition: 0.3s; */
  color: white; /* Hover text color */
}

.navbar-nav .nav-link.active {
  /* background-color: #145060; Active link background color */
  color: white !important; /* Active link text color */
  border-radius: 5px; /* Rounded corners for active link */
}
/* 
@keyframes animatename{
  0%{
    transform: translateY(3px);
  }
  100%{
    transform: translateY(-3px);
  }
}
.navbar-nav .nav-link :hover{
  animation: animatename 1s linear infinite;
  animation: animation-name animation-duration animation-direction animation-iteration-count
} */

/* Navbar Toggler (Mobile Icon) */
.navbar-toggler {
  border: none; /* Remove default border */
}

.navbar-toggler-icon {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/b/b2/Hamburger_icon.svg'); /* Example hamburger icon */
  background-size: cover;
  width: 30px;
  height: 30px;
}

/* home banner */
.title {
  opacity: 0; /* Initially hidden */
  visibility: hidden; /* Prevent it from being briefly visible during load */
  transform: translateY(20px); /* Slight downward movement */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, visibility 0s 0.6s; /* Delay visibility toggle */
}

.title.in-view {
  opacity: 1; /* Fully visible */
  visibility: visible; /* Now it becomes visible */
  transform: translateY(0); /* Reset to original position */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth animation */
}


.land {
  position: relative;
  width: 100%;
  height: auto;
}

.full-width-image {
  width: 100%;
  height: auto;
}

.land h1 {
  position: absolute;
  top: 25%;
  left: 10%;
  color: white;
  font-size: 3rem;
  font-weight: bolder;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin: 0;
  line-height: 1.2;
}

.land span {
  color: #FFD700; /* Gold color for cafe name */
}

#menu-button {
  position: absolute;
  top: 39%;
  left: 10%;
  padding: 10px 20px;
  /* background-color: #FFD700; */
  background-color: #FFD700;
  color: #000;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.menu-button:hover {
  background-color: #FFA500;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px); /* Slight upward movement for smoothness */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1.5s ease-out forwards;
}

/* Add delays for a staggered effect */
h1.fade-in {
  animation-delay: 2s;
}

.menu-button.fade-in {
  animation-delay: 2s;
}
/* Media query for mobile screens (max width of 480px) */
@media (max-width: 320px) {
  .land h1 {
    top: 30%; /* Adjust text positioning */
    left: 1%; /* Reduce left spacing */
    font-size: 1rem; /* Adjust font size for mobile screens */
    line-height: 1.2;
  }

  #menu-button {
    top: 50%; /* Move button closer to the text */
    left: 5%; /* Align button with the text */
    padding: 8px 14px; /* Adjust padding for smaller buttons */
    font-size: 1rem; /* Smaller font size for the button */
  }
}
@media (max-width: 480px) {
  .land h1 {
    top: 30%; /* Adjust text positioning */
    left: 5%; /* Reduce left spacing */
    font-size: 2rem; /* Adjust font size for mobile screens */
    line-height: 1.2;
  }

  #menu-button {
    top: 50%; /* Move button closer to the text */
    left: 5%; /* Align button with the text */
    padding: 8px 14px; /* Adjust padding for smaller buttons */
    font-size: 1rem; /* Smaller font size for the button */
  }
}



/* For mobile devices (320x462px) */
@media (max-width: 462px) {
  .navbar-toggler-icon {
      width: 25px; /* Reduce width for smaller screens */
      height: 25px; /* Reduce height for smaller screens */
      background-size: contain; /* Ensure the icon fits properly */
      margin: 5px; /* Add slight margin for spacing */
  }
}

@media (max-width: 768px) {
  /* Adjust logo size for smaller screens */
  /* .navbar-brand img {
    width: 5rem;
  } */

  /* Adjust navbar links for mobile */
  .navbar-nav .nav-link {
    font-size: 0.9rem; /* Smaller text */
    padding: 6px 10px; /* Adjust spacing */
  }

  /* Center nav links on smaller screens */
  .navbar-nav {
    text-align: center;
  }
  #menu-button {
    top: 50%; /* Adjust button position */
    left: 7%; /* Align with the text */
    padding: 10px 18px; /* Adjust padding for better balance */
    font-size: 1.1rem; /* Slightly smaller font size for the button */
  }
  .land h1 {
    top: 30%; /* Adjust heading position for tablets */
    left: 7%; /* Slightly reduce left margin */
    font-size: 1.8rem; /* Moderate font size for tablet */
    line-height: 1.3; /* Maintain spacing */
  }
}

@media (min-width: 1200px) {
  /* Adjust logo size for large screens */
  /* .navbar-brand img {
    width: 7rem;
  } */

  /* Increase link font size for larger screens */
  .navbar-nav .nav-link {
    font-size: 1.1rem;
    padding: 10px 20px;
  }

  .footer-texts {
      font-size: 1.2rem; /* Smaller text size */
      flex-direction: column; /* Stack text vertically */
      align-items: center; /* Center-align content */
      text-align: center; /* Center the text */
      width: 100%; 
  }
}

/* Full-Width Image */
.full-width-image {
  width: 100%;
  margin: 0 auto; /* Centers the image */
  height: auto; /* Maintains aspect ratio */
  display: block; /* Removes any default spacing around the image */
}

/* Main Styles */
.specialties {
  background-color: #004a5e;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.specialties-container {
  padding: 50px 20px;
  text-align: center;
}

.specialties-container h1 {
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 2.5rem;
  animation: fadeInDown 1s ease-in-out;
}

/* Grid Items */
.grid-item {
  position: relative;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.grid-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
/* Apply initial styles for hidden state */
.grid-item img {
  opacity: 0;
  transform: translateY(30px); /* Start slightly below its position */
  transition: all 0.5s ease; /* Smooth transition */
}

/* When the image is in view, trigger animation */
.grid-item img.in-view {
  animation: fadeInUp 0.7s ease forwards;
}

/* Keyframes for the fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); /* Slight upward movement */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Position the button over the image */
.grid-item {
  position: relative; /* Create a containing context */
  overflow: hidden; /* Hide button overflow outside the image */
}

.overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7); /* Dark translucent background */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none; /* Remove underline */
  font-size: 16px;
  font-weight: bold;
  opacity: 0; /* Initially hidden */
  visibility: hidden; /* Hidden from screen readers */
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Show button on hover */
.grid-item:hover .overlay-btn {
  opacity: 1;
  visibility: visible;
}

/* Hover effect for button itself */
.overlay-btn:hover {
  background-color: #FFD700;
  color: black;
  font-weight: bold;
  transform: translate(-50%, -50%) scale(1.1); /* Slight zoom effect */
}

/* Mobile-friendly tap effect */
@media (hover: none) {
  .overlay-btn {
    visibility: visible;
    opacity: 1;
  }
}
/* Dimming effect for the image */
.grid-item img {
  width: 100%;
  height: auto;
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Dim the image and add a slight zoom on hover */
.grid-item:hover img,
.grid-item:focus img {
  filter: brightness(0.5); /* Dim the image */
  transform: scale(1.05); /* Slight zoom */
}


/* Animations */
/* @keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
} */

/* Mobile Styles */
@media (max-width: 768px) {
  .specialties-container {
    padding: 20px;
  }

  .grid-item {
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
  }

  .grid-item:nth-child(odd) {
    animation-delay: 0.2s;
  }

  .grid-item:nth-child(even) {
    animation-delay: 0.4s;
  }
}

/* Add delays for staggered animation */
.grid-item:nth-child(1) img.in-view {
  animation-delay: 0.1s;
}
.grid-item:nth-child(2) img.in-view {
  animation-delay: 0.2s;
}
.grid-item:nth-child(3) img.in-view {
  animation-delay: 0.3s;
}



/* rest of landing page */
.working-hours {
  padding: 50px 15px;
  background-color: #004a5e; /* New background color */
  text-align: center;
  color: #ffffff; /* Ensure text is readable on the dark background */
}

.working-hours h2, 
.working-hours p, 
.working-hours li {
  color: #ffffff; /* Update text color to white for better contrast */
}


.working-hours h2 {
  font-weight: bolder;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}

.working-hours ul {
  list-style: none;
  padding: 0;
}

.working-hours li {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.working-hours .row{
  justify-content: center;
}
/* 320px: Extra Small Devices (Small Smartphones) */
@media (max-width: 546px) {
  .working-hours {
    padding: 20px 10px;
  }

  .working-hours h2 {
    font-size: 1.2rem; /* Reduce heading size */
  }

  .working-hours ul {
    padding: 0;
    margin: 0;
    text-align: center; /* Center the list */
  }

  .working-hours li {
    font-size: 0.8rem; /* Smaller font for list items */
  }
}

@media (max-width: 575.98px) {
  .working-hours {
    padding: 30px 10px;
  }

  .working-hours h2 {
    font-size: 1.5rem;
  }

  .working-hours li {
    font-size: 0.9rem;
  }
}

/* Small Devices (Tablets, 576px to 768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .working-hours {
    padding: 40px 15px;
  }

  .working-hours h2 {
    font-size: 1.8rem;
  }

  .working-hours li {
    font-size: 1rem;
  }
}

/* Medium Devices (Tablets, 768px to 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .working-hours {
    padding: 50px 20px;
  }

  .working-hours h2 {
    font-size: 2rem;
  }

  .working-hours li {
    font-size: 1.1rem;
  }
}

/* Large Devices (Desktops, 992px to 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .working-hours {
    padding: 50px 30px;
  }

  .working-hours h2 {
    font-size: 2.2rem;
  }

  .working-hours li {
    font-size: 1.2rem;
  }
}

/* Extra Large Devices (Large Desktops, >1200px) */
@media (min-width: 1200px) {
  .working-hours {
    padding: 60px 40px;
  }

  .working-hours h2 {
    font-size: 2.5rem;
  }

  .working-hours li {
    font-size: 1.3rem;
  }
}



/* about page */
.container-bg {
  background-image: url('https://i.ibb.co/SfRj50q/Untitled-design-1.png'); /* Background image */
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Text Container */
.text {
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  text-align: center;
  max-width: 800px;
  padding: 30px;
  border-radius: 12px;
}

/* Title Styling */
.welcome-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Subtitle Styling */
.welcome-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-style: italic;
}

/* Description Paragraphs */
.welcome-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.welcome-description span {
  font-weight: bold;
  color: #FFD700; /* Highlight text with a golden color */
}

/* Closing and Highlight Styling */
.welcome-closing {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.welcome-highlight {
  font-size: 1.4rem;
  font-weight: bold;
  color: #FFD700;
  margin-top: 20px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .welcome-title {
    font-size: 2rem;
  }

  .welcome-description,
  .welcome-subtitle {
    font-size: 1rem;
  }

  .welcome-highlight {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .text {
    padding: 15px;
  }

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

  .welcome-description,
  .welcome-subtitle {
    font-size: 0.9rem;
  }

  .welcome-highlight {
    font-size: 1rem;
  }
}






/* contact form */
.container-contact {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #555;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #145060;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* button:hover {
  background-color: #1a667b;
} */

.response-message {
  margin-top: 15px;
  text-align: center;
  color: #333;
}


/* Footer */
/* footer {
    background-color: #C57734; Matches the orange background
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer-logo img {
  width: 120px; 
  height: auto;
  margin-bottom: 15px;

}

.footer-text {
  font-size: 0.9rem; 
  margin-bottom: 15px;
  text-align: center;
  display: inline-flex;
}

#footer-text {
  width: auto !important;
}

#footer-row {
  display: flex;
  justify-content: space-between;
} */

.footer-logo {
  width: 30%;
}

.footer-contnet {
  background-color: #C57734;
  padding: 3%;
}

.footer-cont {
  /* width: 100%; */
  display: flex;
  justify-content: center;
}

.logo-foot {
  /* width: 20%; */
  display: flex;
  justify-content: start;
}

.logo-cont {
  width: 37%;
}

.footer-texts {
  color: white;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  float: right;
}

.social-icons img {
  width: 30px; 
  height: 30px;
  margin: 0 10px;
}

.footer-bottom {
  background-color: white;
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: bold;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  text-decoration: none;
  color: inherit;
}


/* For tablets and larger mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .footer-logo img {
      width: 100px; /* Smaller logo */
  }

  .footer-text {
      font-size: 0.8rem; /* Smaller text size */
  }

  .social-icons img {
      width: 25px; /* Smaller icons */
      height: 25px;
      margin: 0 8px;
  }
}

/* For mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .footer-logo img {
      width: 80px; /* Further reduce logo size */
  }

  .footer-text {
      font-size: 0.7rem; /* Adjust text size for smaller screens */
  }

  .social-icons img {
      width: 20px; /* Smaller icons */
      height: 20px;
      margin: 0 5px;
  }

  footer {
      padding: 20px 10px; /* Adjust padding for smaller screens */
  }

  .footer-bottom {
      font-size: 0.7rem; /* Smaller text in footer bottom */
  }
}

/* For large desktops and laptops (min-width: 1200px) */
@media (min-width: 1200px) {
  .footer-logo img {
      width: 150px; /* Larger logo for bigger screens */
  }

  .footer-text {
      font-size: 1rem; /* Slightly larger text */
  }

  .social-icons img {
      width: 40px; /* Larger icons */
      height: 40px;
      margin: 0 15px;
  }

  .navbar-brand img{
    width: 150px; /* Larger logo for bigger screens */
    
  }
  .navbar-nav .nav-link{
    font-size: 1.2rem; /* Larger text for bigger screens */
  }
}
/*menu page*/

.section-title {
    text-align: center;
    color: #C57734;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .menu-category {
    font-size: 1.5rem;
    color: #C57734;
    font-weight: bold;
    margin-top: 30px;
  }
  
  .menu-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }
  
  .menu-item p {
    margin: 0;
  }
  
  .menu-item span {
    font-weight: bold;
  }
  
  .menu-description {
    font-size: 0.9rem;
    color: #555;
  }
  
  .icon {
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin: 10px auto;
  }
  /* Media Queries for Mobile Screens (320px - 425px) */
@media (max-width: 425px) {
  .section-title {
      font-size: 1.2rem;
      margin-bottom: 15px;
  }

  .menu-category {
      font-size: 1.2rem;
      margin-top: 20px;
  }

  .menu-item {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px;
  }

  .menu-item div {
      margin-bottom: 10px;
  }

  .menu-item span {
      align-self: flex-end;
  }

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

  .icon {
      width: 30px;
      height: 30px;
      font-size: 0.8rem;
  }
}

/* Parent container for horizontal scrolling */
.category-buttons {
  display: flex;
  gap: 20px; /* Space between buttons */
  overflow-x: auto; /* Enable horizontal scrolling */
  white-space: nowrap; /* Prevent wrapping */
  scrollbar-width: auto; /* Default scrollbar width for modern browsers */
  padding: 10px 20px; /* Space between scroller and screen edges */
}

.category-buttons-container {
  position: -webkit-sticky; /* For Safari */
  position: sticky; /* Standard syntax */
  top: 0; /* Stick to the top of the page */
  z-index: 1000; /* Ensure it stays on top of other elements */
  background-color: white; /* Optional, gives a background color */
  border-bottom: 2px solid #ccc; /* Optional border for styling */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional, adds a shadow for effect */
}

.category-buttons::-webkit-scrollbar {
  height: 8px; /* Height of the scrollbar */
}

.category-buttons::-webkit-scrollbar-thumb {
  background-color: #ccc; /* Scrollbar thumb color */
  border-radius: 10px; /* Rounded corners for the thumb */
}

.category-buttons::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Scrollbar track background color */
}

/* Button styles */
.category-buttons button {
  padding: 8px 16px; /* Adjust padding for a clean look */
  font-size: 14px; /* Set font size */
  background-color: transparent; /* Transparent background */
  color: #333; /* Text color */
  border: none; /* Remove borders */
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease; /* Smooth hover effect */
}

.category-buttons button.active {
  background-color: #D17B2F; /* Active background color */
  color: white; /* Active text color */
  border-radius: 20px; /* Rounded corners */
}

/* Parent container for horizontal scrolling */
.category-buttons {
  display: flex;
  gap: 20px; /* Space between buttons */
  overflow-x: auto; /* Enable horizontal scrolling */
  white-space: nowrap; /* Prevent wrapping */
  scrollbar-width: auto; /* Default scrollbar width for modern browsers */
  padding: 10px 20px; /* Space between scroller and screen edges */
  border-bottom: 2px solid #ccc; /* Optional bottom border for styling */
  position: relative; /* For positioning the arrows */
}

/* Style the scrollbar for webkit browsers (Chrome, Edge, Safari) */
.category-buttons::-webkit-scrollbar {
  height: 8px; /* Height of the scrollbar */
}

.category-buttons::-webkit-scrollbar-thumb {
  background-color: #ccc; /* Scrollbar thumb color */
  border-radius: 10px; /* Rounded corners for the thumb */
  position: relative;
}

.category-buttons::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Scrollbar track background color */
}

/* Button styles */
.category-buttons button {
  padding: 8px 16px; /* Adjust padding for a clean look */
  font-size: 14px; /* Set font size */
  background-color: transparent; /* Transparent background */
  color: #333; /* Text color */
  border: none; /* Remove borders */
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease; /* Smooth hover effect */
}

/* Active button style */
.category-buttons button.active {
  background-color: #D17B2F; /* Active background color */
  color: white; /* Active text color */
  border-radius: 20px; /* Rounded corners */
}



/* Left arrow for scrolling */
.scroll-arrow-left {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #8bc34a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

/* Right arrow for scrolling */
.scroll-arrow-right {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #8bc34a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

  
  .section-title {
    margin-top: 50px;
    font-size: 24px;
    font-weight: bold;
  }
  
  .menu-item {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
  }
  
  .menu-description {
    font-size: 14px;
    color: #555;
  }

  /* Hide the category buttons when the loader is active */
.category-buttons-container.hidden {
  display: none;
}
  


  /* Media Queries for Devices with Minimum Dimension of 320x462 */
@media (max-width: 462px) and (min-width: 320px) {
  /* General Styles */
  body {
    font-size: 0.85rem; /* Adjust font size for readability */
  }

  /* Navbar */
  .navbar {
    padding: 5px 10px; /* Reduce padding for smaller screens */
  }

  .navbar-brand img {
    width: 50%; /* Adjust logo size */
  }

  .navbar-nav .nav-link {
    font-size: 0.8rem; /* Reduce text size */
    padding: 3px 5px; /* Adjust padding */
  }

  .navbar-toggler {
    width: 40px; /* Adjust size for smaller screens */
    height: 40px;
  }

  .navbar-toggler-icon {
    width: 25px; /* Adjust hamburger icon size */
    height: 25px;
  }

  .full-width-image {
    height: 520px;
    width: 100%; /* Make the image take up the full width of its container */
    max-width: 510px; /* Ensure it doesn't exceed 510px */
    object-fit: cover; /* Ensures the image is scaled correctly without distortion */
    margin: 0 auto; /* Center the image */
}

  /* Specialties Section */
  .specialties-container {
    padding: 20px; /* Reduce padding */
  }

  .specialties-container h1 {
    font-size: 1.7rem; /* Adjust font size */
  }

  .grid-item img {
    border-radius: 3px; /* Reduce rounding */
  }

  /* Contact Form */
  .container-contact {
    margin: 20px auto; /* Adjust margins */
    padding: 10px; /* Adjust padding */
  }

  h1 {
    font-size: 1.5rem; /* Reduce heading size */
  }

  label {
    font-size: 0.8rem; /* Adjust label size */
  }

  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 0.85rem; /* Adjust input font size */
  }

  button {
    font-size: 0.9rem; /* Adjust button text size */
  }

  .response-message {
    font-size: 0.8rem; /* Adjust font size */
  }

  /* Footer */
  .footer-logo img {
    width: 70px; /* Adjust logo size */
  }

  .footer-texts {
    font-size: 0.75rem; /* Reduce text size */
    flex-direction: column; /* Stack footer elements vertically */
    align-items: flex-start;
  }

  .social-icons img {
    width: 20px; /* Reduce icon size */
    height: 20px;
    margin: 5px; /* Adjust spacing */
  }

  .footer-bottom {
    font-size: 0.7rem; /* Reduce font size */
  }

  /* Menu Page */
  .menu-category {
    font-size: 1.2rem; /* Adjust category font size */
  }

  .menu-item {
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start;
  }

  .menu-item p {
    font-size: 0.8rem; /* Reduce font size */
  }

  .menu-item span {
    font-size: 0.9rem; /* Adjust price font size */
  }

  .menu-description {
    font-size: 0.8rem; /* Adjust description size */
  }

  .icon {
    width: 30px;
    height: 30px;
    font-size: 0.75rem; /* Reduce font size */
  }
}


/* Media Queries for Responsiveness */

/* For mobile devices (320x462px) */
@media (max-width: 462px) {
  /* Footer Logo */
  .footer-logo  {
      width: 100px; /* Reduce logo size further for small screens */
      height: auto; /* Maintain aspect ratio */
  }

  /* Footer Text */
  .footer-texts {
      font-size: 0.65rem; /* Smaller text size */
      flex-direction: column; /* Stack text vertically */
      align-items: center; /* Center-align content */
      text-align: center; /* Center the text */
      width: 100%; /* Full width */
  }

  /* Social Icons */
  .social-icons img {
      width: 18px; /* Smaller icons */
      height: 18px;
      margin: 0 4px; /* Adjust spacing for smaller icons */
  }

  /* Footer Container */
  footer {
      padding: 0px 0px; /* Reduce padding for smaller screens */
  }

  /* Footer Bottom */
  .footer-bottom {
      font-size: 0.6rem; /* Smaller text size for footer bottom */
      padding: 5px; /* Adjust padding */
      flex-direction: column; /* Stack text vertically */
  }

  #footer-bottom p {
      margin: 5px 0; /* Add spacing between stacked items */
  }
}

/* Media Queries for Laptop Screens (1440x1026px) */
@media (min-width: 1026px) and (max-width: 1440px) {
  .footer-texts {
      font-size: 1.2rem; /* Slightly larger font for improved readability */
      flex-direction: row; /* Align elements horizontally */
      justify-content: space-between; /* Spread elements evenly across the container */
      align-items: center; /* Ensure proper vertical alignment */
      text-align: left; /* Align text to the left */
      width: 70%; /* Constrain width for balanced layout */
      margin: 0 auto; /* Center the container within the footer */
  }
}

/* Media Queries for Laptop Screens (1440x1026px) */
@media (min-width: 1026px) and (max-width: 1440px) {
  .navbar {
      padding: 15px 30px; /* Slightly larger padding for better spacing */
      background-color: #b5672c; /* Adjusted background color for a richer tone */
      display: flex; /* Ensure proper layout structure */
      justify-content: space-between; /* Distribute items across the navbar */
      align-items: center; /* Vertically align items */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  }
}

/* Media Queries for Laptop Screens (1440x1026px) */
@media (min-width: 1026px) and (max-width: 1440px) {
  .navbar-nav .nav-link {
      font-size: 1.3rem; /* Slightly larger font size for better readability */
      padding: 8px 15px; /* Increased spacing for improved clickability */
      color: #ffffff; /* Maintains white text for consistency */
      font-weight: bold; /* Enhanced text emphasis */
      transition: all 0.3s ease; /* Smooth transition for hover effects */
  }

  .navbar-nav .nav-link:hover {
      color: #f0a35e; /* Subtle hover color for better user interaction */
      text-decoration: underline; /* Adds underline effect for clarity */
      text-decoration-color: #145060; /* Keeps hover underline color consistent */
  }
}

/* Media Queries for Laptop Screens (1440x1026px) */
@media (min-width: 1026px) and (max-width: 1440px) {
  .navbar-brand img {
      width: 70%; /* Scales logo size appropriately for larger laptop screens */
      height: auto; /* Maintains aspect ratio */
      margin: 0 auto; /* Centers the logo for visual balance */
      display: block; /* Ensures consistent placement */
      transition: transform 0.3s ease; /* Smooth scaling effect for hover interactions */
  }

  .navbar-brand img:hover {
      transform: scale(1.1); /* Slight zoom-in effect for hover interactivity */
  }
}



