body, html {
  height: 100%;
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
  overflow: auto;
}

.split {
  height: 100%;
  min-height: 100vh;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.left {
  position: relative;         /* ✅ Add this */
  width: 25%;
  left: 0;
  background-color: #002426;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  padding-top: 10px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}


.right {
  width: 75%;
  right: 0;
  background-color: #EEEEEE;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.logo {
  max-width: 200px;
  width: 100%;
  margin: 20px auto;
  display: block;
}

.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;

  /* 🔥 Center vertically inside .left */
  margin-top: auto;
  margin-bottom: auto;
}


button {
  background-color: rgba(0, 25, 26, 0.5);
  color: #EEEEEE;
  border: none;
  padding: 15px 32px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  width: 80%;
  transition: background-color 0.3s;
  text-align: center;
  font-family: 'Source Sans Pro', sans-serif;
}

button:hover {
  background-color: rgba(0, 25, 26, 0.7);
}

.text-container {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.text-container h1 {
  font-size: 64px;
  color: #002426;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.text-container h1 span {
  display: block;
  margin: 10px 0;
}

.top-right-links {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #002426;
}

.top-right-links a {
  text-decoration: none;
  margin: 0 6px;
}

.top-right-links a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1rem;
  color: #002426;
  width: 100%;
  font-family: 'Source Sans Pro', sans-serif;
  align-self: flex-end;
}

@media (max-width: 768px) {
  .split {
    position: relative;
    width: 100%;
    height: auto;
  }

  .left, .right {
    width: 100%;
    height: auto;
    position: relative;
    padding: 20px;
  }

  .logo {
    max-width: 120px;
  }

  .text-container h1 {
    font-size: 48px;
  }

  button {
    width: 80%;
  }
}

a:link, a:visited {
    color: #002426;
    text-decoration: none;
}

a:hover {
    color: #004d60;
}

a:active {
    color: #002426;
}

.left {
  overflow-y: scroll;
  scroll-behavior: smooth; /* Adds smooth scrolling */
}


.left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 🔥 vertical centering */
  height: 100%;
}


/* Modern button style */
.button-container button {
  background-color: #E6E6E6;
  border: 2px solid #002426;
  color: #002426;
  padding: 12px 20px;
  margin: 8px;
  font-size: 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;

}

.button-container button:hover {
  background-color: #002426;
  color: #ffffff;
}

.micro-back {
  position: absolute;
  top: 4px;
  left: 6px;
  color: #EEEEEE;              /* Light gray but clearly visible on dark background */
  font-size: 12px;
  text-decoration: none;
  z-index: 1000;
  opacity: 1;                  /* 🔥 Fully visible by default */
}

.micro-back:hover {
  text-decoration: underline;  /* Optional: indicate interactivity */
}

