.food-list-box p {
    margin: 0px;
}
.post-navigation {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}
.previous-post, .next-post {
    flex: 1;
}

span.wpcf7-not-valid-tip {
display: none;
}
.wpcf7-not-valid,input.is-invalid {
border: 2px solid #c62523 !important;
}
.subscribe-form .wpcf7-not-valid,input.is-invalid {
border: 2px solid #c62523 !important;
border-radius:50px;
}
.wpcf7-response-output {
font-size: 12px;
margin: 0px !important;
}
.wpcf7-form p {margin:0px;}
.wpcf7-response-output {
    border: 0px !important;
}
.subscribe-form p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Button styling - assumes it's positioned within a relatively positioned container */
input.wpcf7-form-control.wpcf7-submit.has-spinner.vs-btn.style1 {
    position: absolute;
    right: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height:65px;}

/* Form response styling */
.wpcf7-response-output {
    background-color: #c62523;
    color: #fff;
    position: absolute;
    z-index: 9999;
    padding: 10px 15px;
    border-radius: 50px;
}

/* In case response contains a <p> element */
.wpcf7-response-output p {
    color: #fff;
    margin: 0;
}
.form-group {
  position: relative;
}

.form-icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  color: #bd1b1c;
  pointer-events: none;
  font-size: 16px;
}

.form-control {
  padding-right: 36px; /* leave room for the icon */
}
div#wpcf7-f307-o1 br {
    display: none;
}
.contact-form.contact-form-style2 .wpcf7-form p {margin: 10px 0px;}
.acf-gallery-container {
    margin: 0 auto;
    padding: 20px;
}

.acf-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px;
    margin: 30px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 400px; /* Fixed height */
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.gallery-image-container {
    height: 400px; /* Fixed image height */
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-title {
    padding: 12px 10px;
    background: #fff;
    text-align: center;
    font-weight: 600;
    color: #333;
    font-size: 15px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lightbox Styles */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    padding: 40px 20px;
    box-sizing: border-box;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 25px;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Slider Styles */
.acf-gallery-slider {
    width: 85%;
    margin: 0 auto;
}

.acf-gallery-slider .slick-slide {
    text-align: center;
}

.acf-gallery-slider .slick-slide img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    margin: 0 auto;
}

.slide-title {
    color: white;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 500;
}

.slick-prev, .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-prev:hover, .slick-next:hover {
    background: rgba(255,255,255,0.4);
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

.slick-prev:before, .slick-next:before {
    color: white;
    font-size: 30px;
    opacity: 1;
}

.slick-dots {
   bottom: -25px;
display:none !important;
}

.slick-dots li button:before {
    color: white;
    font-size: 12px;
}
.food-box-area button.slick-prev.slick-arrow:before {
    display: none;
}

.food-box-area button.slick-next.slick-arrow:before {
    display: none;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .acf-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .acf-gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
    
    .gallery-item {
        height: 280px;
    }
    
    .gallery-image-container {
        height: 210px;
    }
}

@media (max-width: 480px) {
    .acf-gallery-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .gallery-image-container {
        height: 230px;
    }
    
    .slick-prev {
        left: -20px;
    }
    
    .slick-next {
        right: -20px;
    }
}
@media only screen and (min-width:768px) and (max-width:1920px){
	.subscribe-form input.wpcf7-form-control.wpcf7-email {
    width: 1920px;
}
}
.dark {
    background-color: #f6f6f6;
}
textarea.wpcf7-form-control.wpcf7-textarea.form-control.border-shadow {
    margin-bottom: 20px;
    height: 150px;
}
@media only screen and (max-width: 767px) {
  .contact-info.media.align-items-center.d-none.d-xl-flex {
      position: fixed;
      bottom: 20px;
      left: 0;
      width: fit-content;
  }

  .contact-info.media.align-items-center.d-none.d-xl-flex a {
      color: #c62523;
  }
}
.current-menu-item a {
    color: #c62523 !important;
}
/* FAQ Section Wrapper */
#faq {
  background: #f4f7fe;
  padding: 70px 20px;
  border-radius: 16px;
}

/* Accordion Container */
.faq-wrap .accordion {
  border-left: 4px solid #c62523;
  margin-top: 20px;
  padding-left: 10px;
}

/* Each FAQ Item */
.faq-wrap .about-content {
  margin-bottom: 18px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}

.faq-wrap .about-content:hover {
  box-shadow: 0 8px 20px rgba(198,37,35,0.2);
  transform: translateY(-4px);
}

/* Question Button */
.faq-wrap .about-title button {
  width: 100%;
  text-align: left;
  background: linear-gradient(90deg, #c62523 0%, #e84c49 100%);
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.35s ease;
  border-radius: 12px 12px 0 0;
}

.faq-wrap .about-title button:hover {
  background: linear-gradient(90deg, #e84c49 0%, #c62523 100%);
}

/* Add Plus/Minus Icon */
.faq-wrap .about-title button::after {
  content: '+';
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  transition: transform 0.3s ease, content 0.3s ease;
}

.faq-wrap .about-title button[aria-expanded="true"]::after {
  content: '–';
  transform: rotate(180deg);
}

/* Answer Panel */
.faq-wrap .collapse {
  transition: all 0.4s ease;
}

.faq-wrap .about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  padding: 20px;
  border-top: 1px solid #f0f0f0;
  background: #fff;
  border-radius: 0 0 12px 12px;
}

/* Fancy Accent Glow on Active */
.faq-wrap .about-content .collapse.show {
  border: 1px solid #c62523;
  box-shadow: 0 0 12px rgba(198,37,35,0.3);
}
