/* LIFE ON LAND - MULTI-SCREEN CSS */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #eaf2e7;
  font-family: Arial, Helvetica, sans-serif;
  color: #26382b;
}

/* Hide all screens */
.screen {
  display: none;
  width: 365px;
  margin: 20px auto;
  background: #f7faf5;
  border: 2px solid #245c3a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Show active screen */
.active-screen {
  display: block;
}

/* Screen title */
.screen-title {
  background: #245c3a;
  color: white;
  text-align: center;
  padding: 14px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 4px solid #79a95b;
}

.screen-content {
  padding: 25px 22px;
}

.screen-content h2 {
  color: #245c3a;
  font-size: 24px;
  margin-top: 0;
}

.welcome-text {
  color: #4b5f50;
  line-height: 1.5;
}

/* Image */
.image-placeholder {
  height: 140px;
  margin: 20px 0;
  border: 2px solid #79a95b;
  border-radius: 8px;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main topic buttons */
.box {
  display: block;
  width: 100%;
  border: 2px solid #a4bd99;
  background: white;
  color: #245c3a;
  padding: 14px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  border-radius: 7px;
  cursor: pointer;
}

.box:hover {
  background: #e8f2e3;
  border-color: #5d9153;
}

/* Find activities */
.button {
  display: block;
  width: 100%;
  border: 2px solid #bf7133;
  background: #d98945;
  color: white;
  padding: 14px;
  margin-top: 20px;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  border-radius: 7px;
  cursor: pointer;
}

.button:hover {
  background: #b9682d;
}

/* Information cards */
.info-card {
  background: #f0f6ed;
  border-left: 5px solid #79a95b;
  padding: 16px;
  margin: 20px 0;
  border-radius: 6px;
}

.info-card strong {
  color: #245c3a;
  font-size: 17px;
}

.info-card p {
  margin-bottom: 8px;
}

/* Activity cards */
.activity-card {
  background: white;
  border: 2px solid #a4bd99;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 7px;
  font-weight: bold;
  color: #245c3a;
}

.activity-card span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: normal;
  color: #4b5f50;
  line-height: 1.4;
}

/* Back button */
.back-button {
  width: 100%;
  border: 2px solid #245c3a;
  background: #245c3a;
  color: white;
  padding: 13px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 7px;
  cursor: pointer;
}

.back-button:hover {
  background: #17442a;
}
