/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ff8000;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav .logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

header nav ul li a.active,
header nav ul li a:hover {
  text-decoration: underline;
  color: #000;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #ff9933, #ff6600);
  color: white;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: white;
  color: #ff6600;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: #ff6600;
  color: white;
}

/* Services */
.services {
  text-align: center;
  padding: 60px 20px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 260px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card h3 {
  margin-bottom: 10px;
  color: #ff6600;
}

/* Content Pages */
.content {
  max-width: 700px;
  margin: 40px auto;
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

/* Booking Form */
#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

#bookingForm input,
#bookingForm button {
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#bookingForm input:focus {
  border-color: #ff8000;
  outline: none;
  box-shadow: 0 0 5px rgba(255,128,0,0.5);
}

#bookingForm button {
  background: #ff8000;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

#bookingForm button:hover {
  background: #ff6600;
}

#formMessage {
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
  font-size: 0.9rem;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .cards {
    flex-direction: column;
    gap: 20px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  #bookingForm input,
  #bookingForm button {
    font-size: 14px;
    padding: 10px 12px;
  }
}
