* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  background-color: #211f1f;
  color: #65524D;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

h1, h2, h3, footer {
  font-family: 'Prata', serif;
}

/* Simple Header with Top-Left Logo */
.simple-header {
  height: 200px;
  width: 100%;
  background-color: #f8f7f2;
  position: relative;
}

.simple-header a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.simple-logo {
  width: 400px;
  height: 180px;
  object-fit: contain;
  bottom: 0;
  right:0;
}

/* LAYOUT CONTAINER */
.main-layout {
  display: flex;
  min-height: calc(100vh - 280px); /* 225px header + 55px footer */
}

/* === Left Column === */
.left-column {
  width: 394px;
  background-color: #211f1f;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  gap: 0;
}

.left-cell {
  height: 350px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}

.left-cell img {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-right:-2px;
  width: 390px;
  height: 250px;
  object-fit: contain;
}

/* === Right Column === */
.right-column {
  flex: 1;
  min-width: 686px;
  background-color: #211f1f;
  display: flex;
  flex-direction: column;
  padding-left:-2px;
  padding: 0;
}

.right-box {
  height: 350px;
  border-bottom: 16px solid #f8f7f2;
  padding-top: 1.5em;
  padding-right: 2em;
  padding-left: 12em;
  padding-bottom: 1.5em;
  display: flex;
  align-items: right;
  justify-content: flex-start;
  gap: 1em;
  flex-wrap: nowrap;
  overflow: hidden;
}

.right-box img {
  height: 280px;
  width: 280px;
  object-fit: contain;
  padding: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  display: block;
}

/* Container for each screenshot link */
.right-box a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.right-box a:first-child {
  margin-left: 0;
}

/* Hover effect: subtle zoom and shadow */
.right-box a:hover img {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}


/* FOOTER */
footer {
  height: 50px;
  width: 100%;
  margin-top: 5px;
  padding-left: 10px;
  padding-top: 20px;
  background-color: #226f54;
  color: #f8f7f2;
  display: flex;
  align-items: left;
  justify-content: left;
  font-size: 16px;
}

footer a {
  color: #f8f7f2;
  text-decoration: underline;
}

footer a:hover {
  text-decoration: underline;
  font-weight: 800;
}