/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(to bottom right, #f1fdf7, #e0f7fa);
  color: #333;
  line-height: 1.6;
}

/* Top and Bottom Return Buttons */
.nav-return-top, .nav-return-bottom {
  text-align: center;
  padding: 15px;
  background: #e0f2f1;
}

.return-btn {
  background: #7d2e68;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.return-btn:hover {
  background: #1b5e20;
}

/* Header */
.camp-pack-header {
  text-align: center;
  padding: 40px 20px 20px;
  background: #2e7d32;
  color: white;
}

.camp-pack-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.camp-pack-header p {
  font-size: 16px;
}

/* Packages Section */
.camp-pack-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 20px;
  gap: 20px;
}

.camp-pack-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 25px;
  max-width: 320px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

.camp-pack-card:hover {
  transform: scale(1.03);
}

.camp-pack-title {
  font-size: 22px;
  color: #2e7d32;
  margin-bottom: 10px;
}

.camp-pack-price {
  font-size: 28px;
  color: #d84315;
  font-weight: bold;
  margin-bottom: 15px;
}

.camp-pack-price span {
  font-size: 16px;
  color: #666;
}

.camp-pack-features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.camp-pack-features li {
  margin-bottom: 10px;
  font-size: 15px;
}

.camp-pack-btn {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.camp-pack-btn:hover {
  background: #1b5e20;
}

/* Footer */
.camp-pack-footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  background: #e0f2f1;
  color: #555;
  margin-top: 60px;
}

/* Fixed Booking Button */
.fixed-book-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

.fixed-book-btn button {
  background: #d84315;
  color: white;
  padding: 12px 18px;
  font-size: 14px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.fixed-book-btn button:hover {
  background: #bf360c;
}

/* Responsive */
@media (max-width: 600px) {
  .camp-pack-section {
    flex-direction: column;
    align-items: center;
  }

  .camp-pack-card {
    max-width: 90%;
  }

  .fixed-book-btn {
    bottom: 15px;
    right: 15px;
  }

  .fixed-book-btn button {
    font-size: 16px;
    padding: 14px 20px;
  }
}
