/* Hours page styles. Shared resets + gradient live in common files:
 *   - /assets/css/common/site-base.css   (*, [hidden], body touch-action, shared vars)
 *   - /assets/css/mf-background.css      (full-page gradient + fixed background)
 */

/* Page-local theme variables (not in common). */
:root {
  --ink: #f5f7fa;
  --muted: #c7c9cc;
  --card: rgba(15, 18, 24, 0.75);
}

/* Main wrapper. */
.wrap {
  margin-top: 76px; /* under the fixed header */
  max-width: 900px;
  padding: 16px;
  margin-inline: auto;
}

/* Page heading + subtitle. */
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-optical-sizing: auto;
  text-align: center;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.page-sub {
  font-family: 'Cormorant Garamond', serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  color: var(--muted);
  margin-bottom: 22px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
}

/* Panel (card) that wraps the schedule. */
.panel {
  background: var(--card);
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  max-width: 720px;
  margin: auto;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--brand2);
}

.panel-badge {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  border: 1px solid var(--border);
  padding: 3px 12px;
  border-radius: 999px;
}

/* Schedule rows. */
.hours-grid {
  display: grid;
  gap: 10px;
}

.hours-grid-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: rgba(6, 8, 12, 0.75);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
}

.hours-left {
  display: flex;
  flex-direction: column;
}

.hours-day {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.hours-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
}

.subhint {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  text-align: center;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

/* "Book appointment" CTA (bronze → gold gradient, same as services.html). */
.book-btn-wrap {
  margin-top: 20px;
  text-align: center;
}

.book-btn {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #121212;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(148, 98, 28, 0.35);
  transition:
    filter 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.book-btn:hover {
  filter: saturate(1.05) brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(148, 98, 28, 0.45);
}

.book-btn:active {
  transform: translateY(1px);
}

.book-btn:visited {
  color: #121212;
}

/* Mobile one-finger scroll (FB/IG/Chrome WebView). */
html,
body {
  height: auto !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior-y: auto !important;
}
