.devider {
	width: 60px;
    height: 3px;
    background-color: #ff3017;
        margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

td {
  vertical-align: top;
  padding: 10px;
}

.quote2 div img {
	max-width: 100%;
    background: none;
    border-radius: 0;
}

.slick-initialized .slick-slide {
	background: none;
}

.footer-title {
  color: #fff;
}

.footer2 table td{
  color: #fff;
}

a.btn-white.btn.btn-lg:hover {
  background-color: #fff;
}

.collapse.navbar-collapse {
  padding-bottom: 5px;
}

#contactForm textarea {
  color: #000;
}

.about-inline h3 {
  color: #05718b;
  font-family: 'Roboto';
}

.stats2-info p {
  line-height: 1.1em;
}

.intro3 h3 {
  -webkit-text-stroke: 1px white; /* width and color */
}


/* The Modal (background) */
.bw_modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/*** Menu ***/

.food-type {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #05718b;
  padding: 10px 10px 0 10px;
}

.menu-item {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.menu-item h3 {
  color: #555;
}

.price {
  font-weight: bold;
}

.food-type {
  float: left;
  width: 100%;
}

#menu_section {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap */
  gap: 20px; /* Adds space between columns */
}

.menu-item {
  flex: 1; /* Default: take up equal space */
  min-width: 300px; /* Ensures columns don't shrink too small */
  box-sizing: border-box; /* Include padding/border in width */
  padding: 10px;
  background-color: #f5f5f5; /* Optional: for visual separation */
  border: 1px solid #ddd; /* Optional: subtle border */
  border-radius: 5px; /* Optional: rounded corners */
}


/* Responsive behavior for narrow screens */
@media (max-width: 600px) {
  #menu_section {
    flex-direction: column; /* Stack columns vertically */
  }
}