/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background with adventurous feel */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  text-align: center;
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e") no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Dark overlay for readability */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

/* Container box */
.container {
  background: rgba(0, 0, 0, 0.55);
  padding: 30px 25px; /* slightly wider padding */
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.8);
  max-width: 700px;  /* wider box */
  width: 90%;
  margin: 20px;
  text-align: center;
}

/* Headings */
h1 {
  font-size: 3em;
  font-weight: 700;
  color: #ffdd57;
  margin-bottom: 25px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

h2 {
  font-size: 2em;
  margin: 15px 0;
  color: #ff9f1c;
}

/* Paragraphs, labels, and plain text prompts */
p, label, .form-text {
  font-size: 1.3em;
  margin: 12px 0;
  font-weight: 500;
  text-align: center;
  display: block;
  color: #fffdd0;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

/* Input and dropdown styling */
input, select {
  width: 80%;
  padding: 12px;
  margin: 10px auto 20px auto;
  border: none;
  border-radius: 10px;
  font-size: 1.1em;
  text-align: center;
  outline: none;
  background: rgba(255,255,255,0.9);
  color: #333;
  display: block;
}

/* Buttons */
button {
  background: linear-gradient(135deg, #ff5733, #c70039);
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}
button:hover {
  background: linear-gradient(135deg, #ff6f61, #ff2e63);
  transform: scale(1.05);
}

/* Checklist items */
#checklist li {
  background: rgba(255,255,255,0.15);
  margin: 12px auto;
  padding: 14px;
  border-radius: 10px;
  font-size: 1.2em;
  max-width: 600px;
}

/* Gear suggestions */
#gearSuggestions a {
  display: inline-block;
  margin: 10px 10px;
  padding: 12px 20px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: #ff5733;
  border-radius: 8px;
  transition: all 0.3s ease;
}
#gearSuggestions a:hover {
  background: #c70039;
  transform: scale(1.05);
}

/* Weather info box */
#weatherInfo {
  margin-top: 25px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
  font-size: 1.2em;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Image gallery */
.image-gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.image-gallery img {
  width: 30%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.05);
}