.reservation-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 400px;
  padding: 2rem 3rem;

  /* ✅ 圖片滿版 + 漸層 */
  background: 
    linear-gradient(to right, rgba(244,233,231,0.9) 0%, rgba(211,179,168,0.6) 40%, rgba(0,0,0,0.2) 100%),
    url("images/contact_banner.jpg") left/cover no-repeat;

  color: #3a2d2d;
  font-family: 'Noto Serif TC', serif;
  background-position: 50% 26% ; /* ✅ 調整圖片顯示位置 */
}

.reservation-content {
  max-width: 480px;
  z-index: 1; /* 確保文字在上層 */
}

.reservation-content h2 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.reservation-content .sub {
  font-size: 1rem;
  color: #b8744c;
  font-style: italic;
  margin-bottom: 1rem;
}

.reservation-content p {
  font-size: 1.1rem;
}

/* RWD 手機版：改成文字置中 */
@media (max-width: 768px) {
  .reservation-section {
    flex-direction: column;
    text-align: center;
    padding: 8rem 1rem;
    
  }
  .reservation-content {
    max-width: 100%;
  
    
  }
}