* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  font-family: Arial, sans-serif;
}

.left-pane {
  width: 55vw;
  background-color: #13319A;
  color: #EEF8FF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  position: relative;
  text-align: left;
}

.textleft {
    padding-left: 10vw;
}

.right-pane {
  width: 45vw;
  background-image: url('assets/Showcase06_Glacier.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: #FFF;
}

.left-pane h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
}

.left-pane h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
}

.left-pane p {
    padding-top: 5vh;
  font-size: 1rem;
  max-width: 300px;
}

.back-button {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #EEF8FF;
  font-size: 0.9rem;
  text-decoration: none;
  font-family: 'Permanent Marker', cursive;
}

.back-button:hover {
  text-decoration: underline;
}

.name-overlay {
  font-size: 5rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
font-family: 'Permanent Marker', cursive;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* Stack the panes vertically */
  body, html {
    flex-direction: column;
    height: auto;
  }

  .left-pane, .right-pane {
    width: 100vw;
    height: 50vh;
  }

  .left-pane {
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .textleft {
    padding-left: 0;
  }

  .left-pane h1 {
    font-size: 2rem;
  }

  .left-pane h2 {
    font-size: 1.2rem;
  }

  .left-pane p {
    font-size: 0.9rem;
  }

  .name-overlay {
    font-size: 2rem;
  }
}
