/* AumAum 韓式定食餐廳配色方案 */
:root {
  --primary-brown: #3E2723;
  --accent-orange: #FF6F00;
  --bg-beige: #FFF8E1;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Quill 編輯器內的表格樣式（顯示邊框） */
.ql-editor table {
  border-collapse: collapse;
  width: 100%;
  margin: 1rem 0;
}

.ql-editor table td,
.ql-editor table th {
  border: 1px solid #ddd;
  padding: 8px;
  min-width: 50px;
  min-height: 30px;
}

.ql-editor table th {
  background-color: var(--primary-brown);
  color: white;
  font-weight: bold;
  text-align: left;
}

.ql-editor table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.ql-editor table tr:hover {
  background-color: #f5f5f5;
}

/* 前端頁面顯示的表格樣式（不顯示邊框） */
#heroContent {
  color: #212529;
}

#heroContent table {
  border-collapse: collapse;
  width: 100%;
  margin: 1rem 0;
  border: none;
}

#heroContent table td,
#heroContent table th {
  border: none;
  padding: 12px;
}

#heroContent table th {
  font-weight: bold;
  text-align: left;
}

/* YouTube 影片響應式容器 */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 比例 */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 響應式圖片處理（針對 TinyMCE/Quill 產生的內容） */
.content-body img, 
#heroContent img, 
.footer img,
.ql-editor img {
  max-width: 100%;
  height: auto;
}