.slideshow {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
  background-color: black;
}

.slideshow .wrapper {
  width: 100%;
  height: 0;
  padding-top: 36.8%; /* Maintain 16:9 aspect ratio (9 divided by 16) */
  position: relative;
  overflow: hidden;
}

.slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-top: 90px;
}

.slideshow .slide .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slideshow .image img {
  margin-top: 253px!important;
}


.slideshow .slide p {
  color: #FFCA8A !important;
  font-size: 23px;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 10px;
  background-color: #000000 !important;
}

.slideshow .active {
  opacity: 1;
}

/* Mobile styles */
@media (max-width: 768px) {
  .slideshow .slide p {
    font-size: 18px!important;
    padding: 10px 0!important;
  }
}


.slide p {
  margin-bottom: 86px!important;
  margin-top: 76px!important;
  height: 80px!important;
}


/* Order Online Button */
.slideshow {
  position: relative;
}

.order-button {
  position: absolute;
  bottom: 33%; /* Default for desktop */
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #0c5382;
  text-decoration: none;
  padding: 25px 35px;
  border: none;
  font-size: 23px;
  transition: opacity 0.3s ease;
}

.order-button:hover {
  opacity: 0.7;
}

/* Mobile specific styles */
@media (max-width: 768px) {
  .order-button {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    border: none;
    font-size: 17px;
  }
}
