body {
    background-image: url(../img/backgrounds/booking/booking-bg.jpg);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.booking-form-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7); /* semi-transparent black */
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    margin-top: 100px;
}

.booking-form-container h2 {
    text-transform: none;
    font-size: 2.1rem;
    padding-bottom: 10px;
}

.h2-center {
    padding-top: 30px;
    text-align: center;
}

.booking-form-container h3 {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    margin-bottom: 30px;
}

form label,
form input,
form textarea,
form button {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    font-family: inherit;
    font-size: 16px;
}

form input,
form textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fff;      /* make background visible */
    color: #000;                 /* readable text */
    box-sizing: border-box;
}

form button {
    background: #a02c2c;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #891d1d;
}

form input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    accent-color: #a02c2c; /* optional, modern browsers only */
}

form label {
    display: block;
    margin-bottom: 10px;
    color: #fff; /* ensure label text is visible */
}

.checkbox-group label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.contact-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.contact-field {
    flex: 1;
}

form select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    box-sizing: border-box;
    margin-bottom: 15px;
    font-family: inherit;
    font-size: 16px;
}

.radio-group {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
}

.button {
    margin-top: 40px;
}





@media (max-width: 768px) {
  .booking-form-container {
    padding: 20px;
    margin: 20px 10px;
  }
  .booking-form-container h2 {
    font-size: 1.6rem;
    text-align: center;
    padding-bottom: 10px;
  }
  .booking-form-container h3 {
    font-size: 1.8rem;
    text-align: center;
    padding-bottom: 10px;
  }
  form label { font-size: 1.4rem; }
  form input, form textarea, form select {
    font-size: 1.4rem;
    padding: 8px;
  }
  .contact-row {
    flex-direction: column;
    gap: 0;
  }
  .radio-group {
    flex-direction: column;
    gap: 10px;
  }
  .button {
    margin-top: 20px;
    text-align: center;
  }
  form button {
    font-size: 1.6rem;
    width: 100%;
  }
}

@media (max-width: 390px) {
  form label, form input, form textarea, form select, form button {
    font-size: 1.2rem;
  }
}