/* ==============================
   BOOK PAGE STYLES
   ============================== */

body {
  font-family: 'Lato', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 0;
}

/* ---------- HERO ---------- */
.book-hero {
  background-color: #1A2953;
  color: #fff;
  text-align: center;
  padding: 120px 20px 80px;
}

.book-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.book-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.book-hero p {
  font-size: 1.2rem;
  color: #eaeaea;
  margin: 0;
}

/* ---------- FORM SECTION ---------- */
.booking {
  background-color: #fff;
  max-width: 900px;
  margin: 60px auto 100px;
  padding: 50px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.booking form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking h2 {
  font-size: 2rem;
  text-align: center;
  color: #1A2953;
  margin-bottom: 10px;
}

.form-lead {
  text-align: center;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 25px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #1A2953;
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.25s ease;
  font-family: 'Lato', sans-serif;
}

/* ---------- CHECKBOX GROUP (OFFERINGS) ---------- */
.field-hint {
  margin: 2px 0 10px;
  color: #666;
  font-size: 0.95rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px 14px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #fafafa;
  cursor: pointer;
  user-select: none;
}

.checkbox-item input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: #FFA726;
}

.checkbox-item span {
  color: #1A2953;
  line-height: 1.25;
  font-weight: 600;
}

/* Optional: give the textarea a bit more height + allow resize */
.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #FFA726;
  box-shadow: 0 0 0 3px rgba(255,167,38,0.25);
  outline: none;
}


.field-full {
  grid-column: 1 / -1;
}

/* ---------- BUTTON ---------- */
button.submit-button {
  background-color: #FFA726;
  color: #1A2953;
  border: none;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px auto 0;
  display: block;
}

button.submit-button:hover {
  background-color: #ffb83c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,41,83,0.15);
}

/* ---------- FOOTER ---------- */
footer {
  background-color: #111;
  color: #fff;
  padding: 25px;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

footer a:hover {
  text-decoration: none;
  color: #FFA726;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .book-hero h1 {
    font-size: 2rem;
  }

  .book-hero p {
    font-size: 1rem;
  }

  .booking {
    padding: 30px 20px;
    margin: 40px 16px 80px;
  }

  button.submit-button {
    width: 100%;
  }
}