/* ============================================
   BOOKING — /booking inquiry webform
   Scoped to body.booking-page and body.path-booking
   Form field styling lives in contact.css (shared).
   ============================================ */

body.booking-page .content-wrapper.booking-page__layout,
body.path-booking .content-wrapper.booking-page__layout {
  max-width: min(40rem, var(--site-content-width));
  margin: 0 auto;
  padding-top: 0.25rem;
}

body.booking-page .mailing-list-banner,
body.path-booking .mailing-list-banner {
  display: none;
}

body.booking-page article.node--type-page,
body.path-booking article.node--type-page {
  display: none !important;
}

body.booking-page .block-page-title-block,
body.path-booking .block-page-title-block,
body.path-form-contact .block-page-title-block,
body.path-webform.booking-page .block-page-title-block,
body.booking-page .page-title,
body.path-webform.booking-page .page-title,
body.booking-page .block-webform .block__title,
body.path-booking .block-webform .block__title,
body.booking-page .block-webform > h2,
body.path-booking .block-webform > h2,
body.booking-page .webform-submission-form > h1,
body.path-webform.booking-page .webform > h1 {
  display: none !important;
}

body.booking-page .block-local-tasks-block,
body.path-booking .block-local-tasks-block,
body.booking-page ul.tabs,
body.path-booking ul.tabs {
  display: none !important;
}

.booking-page__intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.booking-page__intro .booking-page__lede strong {
  color: var(--green-pale);
  font-weight: 500;
}

/* Band identity card — photo + name above the form */
.booking-project-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1.25rem;
  align-items: center;
  margin: 0 0 1.75rem;
  padding: 1.15rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 4px;
}

.booking-project-card__media {
  width: 112px;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.booking-project-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-project-card__placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 40%, rgba(45, 90, 55, 0.45) 0%, transparent 55%),
    rgba(7, 11, 7, 0.9);
}

.booking-project-card__label {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
}

.booking-project-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
}

.booking-project-card__tagline {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted-light);
}

.booking-project-card__back {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-light);
  text-decoration: none;
}

.booking-project-card__back:hover {
  color: var(--green-pale);
}

/* Locked-in act confirmation inside the form */
.booking-form__act-confirm {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.25rem;
  padding: 0.85rem 1rem;
  background: rgba(45, 90, 55, 0.12);
  border: 1px solid rgba(107, 138, 107, 0.35);
  border-radius: 4px;
}

.booking-form__act-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
}

.booking-form__act-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.booking-form__act-note {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--muted-light);
}

.booking-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.3px;
  margin: 0 0 0.75rem;
  text-align: center;
}

.booking-page__eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin: 0 0 0.75rem;
}

.booking-page__lede {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted-light);
  margin: 0;
}

.booking-page__aside {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.booking-page__aside-label {
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.booking-page__aside a {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-light);
  text-decoration: none;
}

.booking-page__aside a:hover {
  color: var(--green-pale);
}

.form-page__missing {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-light);
  text-align: center;
  padding: 1.5rem;
  border: 1px dashed var(--border);
  border-radius: 4px;
}

.form-page__missing a {
  color: var(--green-light);
}

/* Event details — booking-specific fields grouped visually */
body.booking-page .form-item-event-type,
body.path-booking .form-item-event-type {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

body.booking-page .form-item-event-type::before,
body.path-booking .form-item-event-type::before {
  content: 'Event details';
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .booking-project-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .booking-project-card__media {
    width: 100%;
    max-width: 160px;
    margin-inline: auto;
  }

  body.booking-page .block-webform,
  body.path-booking .block-webform {
    padding: 1rem;
  }
}
