/* ========== Base Styling ========== */
body {
  font-family: system-ui, sans-serif;
  background-color: #fafafa;

  margin: 0;
  padding: 0;
}

main.body {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
  background: #fff0;
  /*background-image: url("images/familyCampoutTitlePic.png");
  background-size: fit;
  background-position: center;
  background-repeat: no-repeat; */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

main.body h1,
main.body h2,
main.body p {
  text-align: center;
}


/* ========== Layout: Image + Button List ========== */
.campout-image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
}

.campout-image {
  max-width: 200px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* ========== Button List ========== */
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 140px;
}

.link-list li a {
  display: block;
  background-color: #2d89ef;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease;
}

.link-list li a:hover {
  background-color: #1e5fbf;
}

/* ========== Install Button ========== */
#install-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2d89ef;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ========== Responsive ========== */
@media (max-width: 500px) {
  .campout-image-container {
    flex-direction: column;
    align-items: center;
  }
}

/* site-wide footer tweaks */
footer {
  text-align: center;
  /* <<< centers the content */
  padding: 0.5rem 0;
  /* optional: a little breathing room */
  font-size: 0.85rem;
  /* optional: slightly smaller text */
  color: #555;
  /* optional: muted gray */
}