/* ============================================================
   BOOK ME PAGE
   ============================================================ */

body.bookme-page {
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
}

body.bookme-page .bg-video { display: none; }

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.bookme-main {
  margin-left: 190px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
}

/* ============================================================
   CONTENT
   ============================================================ */
.bookme-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.bookme-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #111;
  line-height: 1.6;
}

.bookme-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #111;
  border: 1px solid #111;
  padding: 14px 36px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.bookme-btn:hover {
  background: #111;
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .bookme-main {
    padding: 40px 16px;
  }

  .bookme-heading {
    font-size: 0.9rem;
  }
}
