:root {
  --primary: #1a5261;
  --accent: #53b48f;
}

body {
  background: var(--primary);
}

header {
  text-align: center;
  padding: 1rem 1rem 0.5rem;
  background: #c7ffea;
}

main {
  text-align: center;
}

.path-buttons {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 600px) {
  .path-buttons {
    grid-template-columns: 1fr 1fr;
  }
}

a[role="button"] {
  padding: 3rem 2rem;
  font-size: 1.3rem;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  border-color: var(--accent);
}

a[role="button"]:hover {
  background-color: #6ec9a0;
  border-color: #6ec9a0;
}

html, body {
  overflow-x: hidden;
}

.logo {
  display: block;
  max-width: 400px;   /* adjust to your preferred size */
  margin: 0rem auto;  /* centers it horizontally */
}

@media (max-width: 600px) {
  .logo {
    max-width: 180px;
  }
}

.logo {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

.infographic {
  width: 100%;     /* makes it twice as wide */
  height: auto;    /* keeps proportions correct */
  display: block;  /* removes weird inline spacing */
  margin: 0 auto;  /* centers it */
  max-width: none; /* overrides Pico's responsive image limit */
}

.sheet-wrapper {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #ddd;
}


@keyframes fadeIn {
  to { opacity: 1; }
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-home {
  font-size: 0.9rem;
  text-decoration: none;
  color: #8ecdb5;
}

.back-home:hover {
  text-decoration: underline;
}

.box-row {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

@media (max-width: 600px) {
  .box-row {
    flex-direction: column;
    gap: 10px;
  }
}

.info-box {
  flex: 1;              /* all boxes equal width */
  border: 2px solid #333;  /* outline color */
  padding: 20px;
  border-radius: 10px;  /* optional rounded corners */
  background: #fafafa;  /* light background, optional */
  margin: 1rem 0;
  box sizing: border-box;
}

.info-box h3 {
  margin-top: 0;
}

.info-box {
  display: flex;
  flex-direction: column;
}

.info-box:hover {
  border-color: #0077ff;
  background: #ffffff;
}

.info-box, .info-box * {
  color: #1a5261 !important;
}

@media (max-width: 600px) {
  .info-box {
    padding: 1rem;
    font-size: 1rem;
  }

  body {
    padding: 0 1rem;
  }
}

.info-row {
  display: flex;
  gap: 1rem;
}

@media (max-width: 600px) {
  .info-row {
    flex-direction: column;
  }
}

header img.logo {
  max-width: 220px;
}

@media (max-width: 600px) {
  header img.logo {
    max-width: 150px;
  }
}

