/* =========================
   BOOK APPOINTMENT PAGE
   ========================= */

:root {
  --cream: #EEE7D3; /* Sweet Corn */
  --taupe: #B09A82; /* Incense */
  --beige: #E7D6BE; /* Pastel Rose Tan */
  --gold:  #D6BF9D; /* Marzipan */
  --olive: #796E50; /* Gothic Olive */

  --text:  #333333;
}

html, body {
  height: 100%;
  margin: 0;
}

/* IMPORTANT: match html background with body */
html {
  background-color: var(--cream);
}

body {
  background-color: var(--cream);
}

body {
  background:
    linear-gradient(
      rgba(111, 103, 92, 0.9),
      rgba(111, 103, 92, 0.9)
    ),
    url("Home\ Picture.jpeg") center / cover no-repeat;

  min-height: 100vh;
}

.book-page{
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 24px 90px;
}


.book-title{
  text-align: center;
  margin: 0 0 26px;
  color: var(--cream);
}

.book-subtitle{
  margin: 10px 0 18px;
  font-size: 28px;
}

/* Form container */
.book-form{
  background: var(--cream);
  padding: 28px;
  border-radius: 18px;
}

/* Fields */
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:18px;
}

.field-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.field label{
  font-size:14px;
  color: rgba(47,47,47,0.75);
  font-family: "Urbanist", system-ui, sans-serif;
}

.hint{
  opacity: 0.7;
  font-weight: 400;
}

/* Inputs */
.field input,
.field select,
.field textarea{
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(121,110,80,0.25);
  background: #fff;
  font-size: 14px;
  font-family: "Urbanist", system-ui, sans-serif;
}

/* Radio pills */
.radio-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.chip{
  border: 1px solid rgba(121,110,80,0.25);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  display:flex;
  gap:8px;
  align-items:center;
  font-family: "Urbanist", system-ui, sans-serif;
  color: rgba(47,47,47,0.8);
}

/* Checkbox list */
.check-col{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.check{
  display:flex;
  gap:10px;
  align-items:center;
  font-family: "Urbanist", system-ui, sans-serif;
  color: rgba(47,47,47,0.75);
}

/* Conditional fields */
.conditional input{
  margin-top: 6px;
}

/* Divider */
.divider{
  height: 1px;
  background: rgba(121,110,80,0.25);
  margin: 22px 0;
}

/* Submit button */
.book-submit{
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-family: "Urbanist", system-ui, sans-serif;
}

.book-submit:hover{
  background: var(--gold);
  color: #fff;
}

/* Small note */
.small-note{
  margin: 14px 0 0;
  font-size: 13px;
  opacity: 0.7;
  text-align: center;
  font-family: "Urbanist", system-ui, sans-serif;
}

/* Mobile */
@media (max-width: 700px){
  .field-row{
    grid-template-columns: 1fr;
  }
}

