.dining-banner {
  min-height: 400px;
  width: 100%;
  background-image: url("/Media/Background/diningMainP00.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dining-banner-overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 50px;
}

.dining-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.dining-banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dining-banner-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.dining-banner-divider {
  width: 100px;
  height: 3px;
  background: #f9a01b;
  margin: 0 auto 20px;
}

.dining-banner-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .dining-banner {
    min-height: 300px;
    padding: 20px 15px;
  }

  .dining-banner-overlay {
    max-width: 100%;
    padding: 30px 20px;
  }

  .dining-banner-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .dining-banner-subtitle {
    font-size: 1.2rem;
  }

  .dining-banner-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .dining-banner-divider {
    width: 80px;
    margin-bottom: 15px;
  }
}

.restaurant-section {
  background-color: rgba(255, 247, 241, 0);
  padding-top: 30px;
  margin-top: 0;
}

.restaurant-box {
  border-radius: 20px;
  background-color: #eaeaea;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.restaurant-title {
  text-align: center;
  font-weight: bold;
  color: #f9a01b;
  border-bottom: 2px solid #f9a01b;
  padding-bottom: 4px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.restaurant-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 10px auto 0;
}

.restaurant-info,
.restaurant-location,
.restaurant-contact {
  font-size: 15px;
  color: #555;
  text-align: center;
}

.btn-group-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-group-wrapper .btn {
  margin: 5px;
}

.btn-orange {
  background-color: #f9a01b;
  color: #fff;
  border: none;
}

.btn-orange:hover,
.btn-orange:focus {
  background-color: #e98f0a;
  color: #fff;
}

.btn-outline-orange {
  color: #f9a01b;
  border: 1px solid #f9a01b;
  background-color: transparent;
}

.btn-outline-orange:hover,
.btn-outline-orange:focus {
  background-color: #f9a01b;
  color: #fff;
}

.modal .thumb {
  cursor: pointer;
  transition: 0.3s ease;
}

.modal .thumb:hover {
  border: 2px solid #f9a01b;
}

.modal-content {
  margin-bottom: 80px;
}

.modal-body {
  padding-bottom: 30px;
}

.modal-dialog-centered {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}

.restaurant-image {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  border-radius: 0;
  width: auto;
  height: 10px;
}

.restaurant-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 15px;
  text-align: center;
}

.restaurant-intro h5 {
  color: #f9a01b;
  font-weight: bold;
  margin-bottom: 15px;
}

.restaurant-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.no-bg {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.btn-primary {
  background-color: #f9a01b;
  border-color: #f9a01b;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 4px;
  padding: 8px 30px;
  display: inline-block;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #e09015;
  border-color: #e09015;
  transform: translateY(-2px);
  color: #fff;
}

.text-center .btn {
  margin: 5px;
}

.load-more-container {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 50px;
}

.btn-load-more {
  background: white;
  color: #f9a01b;
  border: 2px solid #f9a01b;
  padding: 2px 80px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-load-more:hover {
  background: #f9a01b;
  color: white;
}

.flipbook {
  position: relative;
  width: 648px;
  height: 864px;
  margin: 0 auto;
  perspective: 2000px;
  background: #f8f8f8;
  max-width: 90vw;
  max-height: 80vh;
  aspect-ratio: 3 / 4;
}

.page {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform-origin: left center;
  transition: transform 1s ease, z-index 0.8s ease;
  backface-visibility: hidden;
  box-shadow: 0 8px 15px #f9a01b;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.page img {
  width: 100%;
  height: 100%;
}

.page.flipped {
  transform: rotateY(-180deg);
  z-index: 0;
}

.page:not(.flipped) {
  z-index: 1;
}

.modal-body .btn {
  min-width: 120px;
  margin: 5px;
}

@media (max-width: 768px) {
  .flipbook {
    max-width: 95vw;
    max-height: 70vh;
    aspect-ratio: 3 / 4;
  }

  .page {
    box-shadow: 0 4px 10px #f9a01b;
  }

  .modal-body .btn {
    min-width: 100px;
    font-size: 14px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .flipbook {
    max-width: 80vw;
    max-height: 68vh;
  }

  .modal-title {
    font-size: 18px;
  }
}
