/* Booking Form */ 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fefefe;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #004d40;
  color: white;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.navbar ul li a:hover,
.navbar ul li a.active {
  text-decoration: underline;
}



.booking-section {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f9fbe7;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.booking-section h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #33691e;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.form-group input {
  padding: 0.6rem;
  border: 1px solid #c5e1a5;
  border-radius: 5px;
}
.form-group input:focus {
  outline: none;
  border-color: #689f38;
}

/*button*/

.btn{
	background: linear-gradient(45deg,#ff6600,#004d40);
	color: #fff;
	padding:14px 28px;
	font-size: 18px;
	font-weight: bold;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	text-transform: uppercase;
	letter-spacing: 1px;
}
.btn:hover{
	background: linear-gradient(45deg, #004d40,#ff6600);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
	
}


.success-message {
  display: none;
  margin-top: 1rem;
  text-align: center;
  color: green;
  font-weight: bold;
}

footer{
	text-align: center;
	background: #004d40;
	color: white;
	padding: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
  }
  .navbar ul {
    flex-direction: column;
    gap: 1rem;
  }
}