/* =============================================
   BOOKING.CSS – Dark CTA banner
   ============================================= */

.booking {
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary-dark);
}

.booking__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?fit=crop&w=1920&h=800&q=85');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.booking__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    rgba(62, 33, 18, 0.88) 100%
  );
}

.booking__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: 100px;
}

.booking__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.booking__label::before,
.booking__label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background-color: var(--color-accent);
}

.booking__title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.booking__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 44px;
  line-height: 1.75;
}

.booking__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Phone button variant */
.btn--light {
  background-color: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.3);
}

.btn--light:hover {
  background-color: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
