/* === Reynolds Booking Calendar (base styles) === */
:root {
  --ry-bg: #ffffff;
  --ry-text: #1f2937;        /* gray-800 */
  --ry-muted: #6b7280;       /* gray-500 */
  --ry-accent: #7c3aed;      /* purple-ish to match your screenshot */
  --ry-accent-ghost: rgba(124,58,237,.12);
  --ry-border: #e5e7eb;      /* gray-200 */
  --ry-success: #10b981;     /* teal/green */
}

.book.container { max-width: 1100px; margin: 0 auto; padding: 0 1rem 3rem; }

.calendar { 
  margin: 1.5rem auto 2rem; 
  background: var(--ry-bg); 
  border: 1px solid var(--ry-border); 
  border-radius: 12px;
  padding: 1rem 1rem 1.25rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}

/* Header with previous/next buttons and month label */
.ry-cal-header {
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.ry-cal-header .ry-month {
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.ry-cal-header button {
  display: inline-block;
  width: 100%;
  border: 1px solid var(--ry-border);
  background: var(--ry-accent-ghost);
  color: var(--ry-accent);
  border-radius: 8px;
  padding: .45rem .6rem;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease;
}
.ry-cal-header button:hover { transform: translateY(-1px); }

/* Day-of-week row */
.ry-grid.ry-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .25rem;
  margin: .25rem 0 .5rem;
  color: var(--ry-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: .8rem;
}
.ry-grid.ry-dow > div {
  text-align: center;
  padding: .4rem 0;
}

/* Days grid */
.ry-grid.ry-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .25rem;
}

/* Each day cell */
.ry-day {
  min-height: 110px;
  border: 1px solid var(--ry-border);
  border-radius: 10px;
  padding: .5rem;
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.ry-day .date {
  position: absolute;
  top: .45rem;
  right: .6rem;
  margin: 0;
  font-size: .9rem;
  color: var(--ry-muted);
}

/* Event card area inside day cell */
.ry-day.has-event {
  background: linear-gradient(180deg, #fff, #fafafa);
  border-color: #ddd;
}
.ry-day.has-event h4 {
  margin: 1.3rem 0 .5rem;
  font-size: .9rem;
  line-height: 1.2;
  text-align: left;
  color: var(--ry-text);
  font-weight: 700;
}
.ry-day.has-event .ry-book {
  align-self: flex-start;
  margin-top: .25rem;
  display: inline-block;
  font-size: .85rem;
  padding: .35rem .6rem;
  border-radius: 8px;
  border: 1px solid var(--ry-accent);
  color: #fff;
  background: var(--ry-accent);
  text-decoration: none;
  transition: transform .08s ease, box-shadow .12s ease, opacity .15s ease;
}
.ry-day.has-event .ry-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(124,58,237,.28);
}

/* Past days / empty cells feel muted (JS already avoids events in the past) */
.ry-day:is(.past, .disabled) { opacity: .45; }

/* Responsive tweaks */
@media (max-width: 900px){
  .calendar { padding: .75rem; }
  .ry-cal-header { grid-template-columns: 100px 1fr 100px; }
  .ry-day { min-height: 95px; }
}
@media (max-width: 640px){
  .ry-cal-header { grid-template-columns: 1fr; }
  .ry-cal-header .ry-month { order: -1; margin-bottom: .5rem; }
}
/* === Reynolds Booking Calendar (base styles) === */
:root {
  --ry-bg: #ffffff;
  --ry-text: #1f2937;        /* gray-800 */
  --ry-muted: #6b7280;       /* gray-500 */
  --ry-accent: #7c3aed;      /* purple-ish to match your screenshot */
  --ry-accent-ghost: rgba(124,58,237,.12);
  --ry-border: #e5e7eb;      /* gray-200 */
  --ry-success: #10b981;     /* teal/green */
}

.book.container { max-width: 1100px; margin: 0 auto; padding: 0 1rem 3rem; }

.calendar { 
  margin: 1.5rem auto 2rem; 
  background: var(--ry-bg); 
  border: 1px solid var(--ry-border); 
  border-radius: 12px;
  padding: 1rem 1rem 1.25rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}

/* Header with previous/next buttons and month label */
.ry-cal-header {
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.ry-cal-header .ry-month {
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.ry-cal-header button {
  display: inline-block;
  width: 100%;
  border: 1px solid var(--ry-border);
  background: var(--ry-accent-ghost);
  color: var(--ry-accent);
  border-radius: 8px;
  padding: .45rem .6rem;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease;
}
.ry-cal-header button:hover { transform: translateY(-1px); }

/* Day-of-week row */
.ry-grid.ry-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .25rem;
  margin: .25rem 0 .5rem;
  color: var(--ry-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: .8rem;
}
.ry-grid.ry-dow > div {
  text-align: center;
  padding: .4rem 0;
}

/* Days grid */
.ry-grid.ry-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .25rem;
}

/* Each day cell */
.ry-day {
  min-height: 110px;
  border: 1px solid var(--ry-border);
  border-radius: 10px;
  padding: .5rem;
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.ry-day .date {
  position: absolute;
  top: .45rem;
  right: .6rem;
  margin: 0;
  font-size: .9rem;
  color: var(--ry-muted);
}

/* Event card area inside day cell */
.ry-day.has-event {
  background: linear-gradient(180deg, #fff, #fafafa);
  border-color: #ddd;
}
.ry-day.has-event h4 {
  margin: 1.3rem 0 .5rem;
  font-size: .9rem;
  line-height: 1.2;
  text-align: left;
  color: var(--ry-text);
  font-weight: 700;
}
.ry-day.has-event .ry-book {
  align-self: flex-start;
  margin-top: .25rem;
  display: inline-block;
  font-size: .85rem;
  padding: .35rem .6rem;
  border-radius: 8px;
  border: 1px solid var(--ry-accent);
  color: #fff;
  background: var(--ry-accent);
  text-decoration: none;
  transition: transform .08s ease, box-shadow .12s ease, opacity .15s ease;
}
.ry-day.has-event .ry-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(124,58,237,.28);
}

/* Past days / empty cells feel muted (JS already avoids events in the past) */
.ry-day:is(.past, .disabled) { opacity: .45; }

/* Responsive tweaks */
@media (max-width: 900px){
  .calendar { padding: .75rem; }
  .ry-cal-header { grid-template-columns: 100px 1fr 100px; }
  .ry-day { min-height: 95px; }
}
@media (max-width: 640px){
  .ry-cal-header { grid-template-columns: 1fr; }
  .ry-cal-header .ry-month { order: -1; margin-bottom: .5rem; }
}

/* --- Questionnaire styles --- */
.ry-parq-wrap{max-width:800px;margin:0 auto 2.5rem;padding:0 1rem}
.ry-parq-wrap h1{margin:.2rem 0 1rem}
.ry-intro{color:#555;margin:.25rem 0 1rem}
.ry-parq-form fieldset{border:1px solid #e5e7eb;padding:1rem 1.25rem;border-radius:12px;margin:1rem 0;background:#fff}
.ry-parq-form legend{font-weight:700;padding:0 .4rem}
.ry-parq-form label{display:block;margin:.6rem 0}
.ry-parq-form input[type=text],
.ry-parq-form input[type=email],
.ry-parq-form input[type=tel],
.ry-parq-form input[type=date],
.ry-parq-form select,
.ry-parq-form textarea{width:100%;padding:.6rem .7rem;border:1px solid #d1d5db;border-radius:10px;background:#fff}
.ry-parq-form textarea{resize:vertical}
.ry-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:.8rem}
.ry-checkboxes{display:grid;grid-template-columns:1fr 1fr;gap:.35rem .8rem;margin:.4rem 0}
.ry-parq-form .chk{display:flex;align-items:center;gap:.5rem;font-size:.95rem}
.ry-consent .ry-smallprint{font-size:.9rem;color:#555;margin:.25rem 0 .5rem}
.ry-btn{margin-top:.5rem;background:#7c3aed;border:1px solid #6b21a8;color:#fff;border-radius:10px;padding:.6rem 1rem;cursor:pointer}
@media (max-width:700px){.ry-grid-2{grid-template-columns:1fr}.ry-checkboxes{grid-template-columns:1fr}}



