* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fdfbff;
  color: #333;
  padding-top: 60px;
}
.back-home {
  position: fixed;
  top: 10px;
  left: 10px;
  background: #5c2c90;
  color: #fff;
  padding: 10px 16px;
  border-radius: 20px;
  text-decoration: none;
  z-index: 999;
  transition: background 0.3s ease;
}
.back-home:hover {
  background: #3a1c61;
}
.booking-section {
  text-align: center;
  padding: 40px 20px;
}
.booking-section h1 {
  font-size: 2.2rem;
  color: #5c2c90;
}
.booking-section form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
form input, form textarea {
  padding: 12px;
  border: 1px solid #aaa;
  border-radius: 8px;
}
form button {
  background: #5c2c90;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
form button:hover {
  background: #3a1c61;
}

.roadmap {
  padding: 40px 20px;
  background: #f3edfa;
  text-align: center;
}
.roadmap h2 {
  font-size: 1.8rem;
  color: #5c2c90;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}
.step {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 140px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.tent-info {
  padding: 40px 20px;
  text-align: center;
}
.tent-info h2 {
  font-size: 1.8rem;
  color: #5c2c90;
}
.tents {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 30px;
}
.tent-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.tent-card img {
  width: 100%;
  border-radius: 10px;
  height: 180px;
  object-fit: cover;
}
.tent-card h3 {
  margin-top: 10px;
  color: #333;
}
.tent-card p {
  font-size: 0.95rem;
  color: #666;
}

.back-bottom {
  text-align: center;
  padding: 30px 0;
}
