.hero { position: relative; }
.hero::before { z-index: 1; }          /* if your theme uses an overlay */
.hero__content { position: relative; z-index: 2; }

/* Dark booking panel wrapper */
.calendar-wrapper {
  background-color: #171717;
  padding: 40px 24px;
  display: flex;
  justify-content: center;
}

/* Calendar container */
.calendar-container {
  width: 100%;
  max-width: 800px; /* desktop width */
  background-color: #171717; /* ensures dark background */
  border-radius: 12px;
}

/* Calendar iframe */
.calendar-container iframe {
  width: 100%;
  height: 900px; /* desktop height */
  border: 0;
  display: block;
}

/* Responsive: mobile/tablet */
@media (max-width: 768px) {
  .calendar-container iframe {
    height: 1000px; /* taller for scrolling */
  }
}
  
/* Description styling */
.calendar-description {
  max-width: 800px;
  margin: 16px auto 0;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
  line-height: 1.5;
}


