section#booking {
  background-color: #f0f0f0;
  padding: 50px 20px;
}
form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
form input,
form select,
form button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}
form button {
  background-color: #0284a8;
  color: white;
  font-size: 1.2em;
}
body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #74ebd5, #acb6e5);
  margin: 0;
  padding: 0;
}

section#booking {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 50px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  margin: 40px auto;
}

h2 {
  text-align: center;
  color: #333;
  font-family: "Verdana", sans-serif;
  margin-bottom: 30px;
  font-size: 2.2em;
}

form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

form input,
form select,
form button {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1em;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

form input:hover,
form select:hover {
  border-color: #0284a8;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

form button {
  background: linear-gradient(90deg, #0284a8, #00d4ff);
  color: white;
  font-size: 1.2em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

form button:hover {
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  transform: scale(1.05);
}

a {
  text-decoration: none; /* Removes underline */
}

form textarea {
  width: 99%;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: "Arial", sans-serif;
  font-size: 1em;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-height: 25px; /* default height */
  resize: vertical; /* user can resize if wants */
}

footer {
  background-color: #222;
  color: white;
  padding: 20px 0;
  text-align: center;
  margin-top: 50px;
  font-size: 1.2em;
}
form select {
  width: 625px;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1em;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 60px; /* set same height as textarea/age/boarding */
}
