	body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #eee;
  color: #333;
}

/* HEADER STYLING */
header {
  padding: 10px 20px;
  background: white;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ccc;
}

/* LOGO STYLING */
.nav-logo {
  width: 100px !important;       /* fixed width */
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* NAVIGATION BAR */
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: white;
  border-bottom: 1px solid #ccc;
}

/* OPTIONAL: NAV BUTTONS */
.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-buttons a,
.nav-btn {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  background-color: #f5e5c0;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: bold;
  display: inline-block;
}
/* HERO SECTION */
#hero {
  position: relative;
  text-align: center;
  color: white;
}
#restaurant-photo {
  width: 100%;
  height: 250px; /* 👈 this triggers actual cropping */
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.6);
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 250px;   /* 👈 not max-height */
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.8);
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide-image.active {
  opacity: 1;
  position: relative;
}

#restaurant-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  margin: 0;
}

/* WELCOME MESSAGE */
#welcome-message {
  max-width: 800px;
  margin: 20px auto 0 auto;
  padding: 0 20px;
  font-size: 1.2rem;
  text-align: center;
  position: relative;
}

#welcome-text {
  margin: 0;                  /* ✅ Remove any default margin */
  line-height: 1.4;           /* Optional: tighter vertical spacing */
}

#welcome-text.truncate {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;         /* ✅ Space between text and button */
  line-height: 1.4;
}

#see-more {
  display: inline-block;
  float: right;
  margin-top: 0;
  background: transparent;
  border: none;
  padding: 3px 10px;          /* ✅ Slightly smaller */
  cursor: pointer;
  font-size: 0.85rem;
  border-radius: 6px;
  clear: both;
}

#action-buttons {
  text-align: center;
  margin: 30px 0 10px;
  clear: both; /* ✅ Important to push below floated elements */
}

#action-buttons button {
  display: block;
  margin: 10px auto;
  background-color: #be662b;
  color: white;
  padding: 12px 24px;
  font-size: 2rem;
  border-radius: 16px;
  cursor: pointer;
  width: 90%;
  max-width: 280px;
  transition: background 0.3s ease;
}
#action-buttons button:hover {
  background-color: #333;
}

/* SOCIAL MEDIA SECTION — NOW LAST */
#social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 60px;
  padding: 0 20px;
}
#social-links a {
  width: 150px;        /* ← Change this to control WIDTH */
  height: 38px;       /* ← Change this to control HEIGHT */
  background-color: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  padding: 0;
}

#social-links img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* Ensures the image fills the frame */
  border-radius: 0;   /* Optional: remove rounding */
}




/* CHAPTER LAYOUT */
.chapter-frame {
  position: relative;
  width: 98%;
  aspect-ratio: 16 / 9;
  margin: 20px auto;
  max-width: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
  background-color: #fff;
}
.chapter-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.chapter-frame h2 {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  margin: 0;
}
.chapter-description {
  text-align: center;
  font-size: 1rem;
  margin-top: 10px;
  padding: 0 15px;
}
.subcategory-title {
  text-align: center;
  font-size: 24px;
  margin: 20px 0;
  color: #5c3a21;
}

.dish-box {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

/* Top row: price left, name right */
.dish-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 18px;
}

.dish-price {
  color: #5c3a21;
}


.dish-name {
  color: #333;
  text-align: left;
  flex-grow: 1;
}

/* Below header: 2-column layout */
.dish-body {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.dish-box[data-available="no"] {
  display: none;
  }
/* LEFT column with text */
.dish-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  word-wrap: break-word; /* ✅ Ensures long words break instead of overflowing */
  overflow-wrap: anywhere;
}

/* Each block (opt for, desc) */
.dish-field {
  margin-bottom: 10px;
}

.dish-field label {
  font-weight: bold;
  display: block;
}

.dish-option, .dish-description {
  font-size: 14px;
  margin-top: 4px;
}

/* RIGHT column with image */
.dish-right img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

/* Optional button */
.side-button {
  display: inline-block;
  padding: 6px 12px;
  background-color: #5c3a21;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

/* Auto-hide the button if not needed */
.dish-side-link[data-choose-side="no"] {
  display: none;
}

/* Image popup */
.popup-image {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  z-index: 999;
}

.popup-background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
}

/* Responsive behavior */
@media (max-width: 600px) {
  .dish-body {
    flex-wrap: nowrap;
    
  }

  .dish-right img {
    width: 80px !important;
    height: auto !important;
    margin-top: 10px !important;
    object-fit: cover;
    border-radius: 8px;
  }
}
.payment-box {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* <-- this line adds the shadow */
  padding: 15px;
  background-color: #f9f9f9;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.music-footer {
  background-color: white;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.music-footer img {
  max-width: 200px;
 
}
  
}
