/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* IMPORTING A FONT FROM GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

/* ZATO BACKGROUND+ FONT FAMILY N STUFF */
body {
  background-image: url('/images/background2.jpg');
  background-attachment: scroll;
  background-size: cover;
  background-repeat: repeat-y;
  background-position: center;
  color: white;
  font-family: 'Space Mono', monospace;
  margin: 0;
  padding: 0; /* removed padding-top so card starts at very top of page */
  display: flex;
  justify-content: center;
  min-height: 100vh;
  /* padding-top: 110px;  <-- removed */
}

.card {
  background-color: #000000;
  padding: 40px;
  max-width: 769px;
  width: 100%;
  min-height: 100vh;
}

a {
  color: #ffff00;
  text-decoration: underline;
}

a:hover {
  color: #ffcc00;
}

/* header that sits inside the card and scrolls with the page */
.site-title {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;     /* center trees + title vertically */
  gap: 24px;               /* space between trees and title */
  margin: 0 0 20px;
  background: transparent;
  pointer-events: auto;
  z-index: auto;
}

.site-title .title-img {
  height: 84px;            /* match your title size */
  max-width: calc(100% - 40px);
  display: block;
}

.site-title .tree {
  height: 84px;            /* same height so they align */
  width: auto;
  display: block;
}

/* hide trees on narrow screens so title stays readable */
@media (max-width: 700px) {
  .site-title .tree { display: none; }
  .site-title { gap: 12px; }
}


