a:hover { background: #ffffff; text-shadow: 0 6px 12px rgba(0, 0, 0, 0.725); }

/* Header styles moved from inline in index.html */
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
.project-image {
  display: grid;
  padding: 5px 5px;
  box-sizing: border-box;
  align-items: start;
  grid-auto-rows: auto;
  max-width: 100%;
  height: auto;    /* Automatically adjusts the height to maintain the aspect ratio */
  display: block;  /* Helps with centering and layout consistency */
}
  padding: 18px 48px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
.project-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto; /* preserve aspect ratio */
  object-fit: contain; /* do not crop; use 'cover' to fill and crop */
}
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.top-header a { color: #000; text-decoration: none; }
.site-title { font-size: 46px; font-weight: 400; letter-spacing: -1px;  text-shadow: 0 6px 12px rgba(0,0,0,0.35);}
.center-title { font-size: 46px; text-align: center; font-weight: 400; }
.right-title { font-size: 46px; text-align: right; font-weight: 400; }
.meta { font-size: 11px; margin-left: 8px; vertical-align: super; }
.header-line { height: 4px; background: #000; width: 100%; position: fixed; top: 86px; left: 0; right: 0; z-index: 1001; }
@media (max-width: 800px) {
  .site-title { font-size: 18px; }
  .center-title, .right-title { font-size: 18px; }
  .top-header { padding: 12px 18px; }
  
}

h1 {
    color: rgb(0, 0, 0);
    text-align: center;
    size: 48pt;
}

h2 {
    color: rgb(0, 0, 0);
    text-align: center;
    size: 18pt;
}

body {
    background-color: rgb(255, 255, 255);
    font-family: sans-serif;
    text-align: left;
    color: rgb(0, 0, 0);
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%23000000" width="20px" height="20px" viewBox="0 0 10.04 10.04"><circle cx="5.02" cy="5.02" r="4.52"/></svg>') 10 10, auto;
}

.ss-contact {
    gap: 12px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 20px;
}

  /* Image grids for images */
.hero-image {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  padding: 12px 1px;
  box-sizing: border-box;
  align-items: start;
  grid-auto-rows: auto;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  gap: 7px;
  display: grid;
}

responsive-image {
    max-width: 100%; /* Ensures the image never exceeds the width of its container */
    height: auto;    /* Automatically adjusts the height to maintain the aspect ratio */
    display: block;  /* Helps with centering and layout */
    margin: 0 auto;  /* Centers the image if it's smaller than the container width */
}

.project {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 36px 1px;
  box-sizing: border-box;
  align-items: start;
  grid-auto-rows: auto;
  width:100%;
  height:auto; 
  gap: 7px;
}

.project img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: grid;
  gap: 7px;
}

.project-image {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 12px 1px;
  box-sizing: border-box;
  align-items: start;
  grid-auto-rows: auto;
  width:100%;
  height:auto; 
  gap: 7px;
}

.project-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  gap: 7px; 
  display: grid;
}

/* Make image full-bleed edge-to-edge */
.big-image {
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: auto;
  object-fit: cover; 
  box-sizing: border-box;
}

/* Split layout: left fixed 20%, right scrolling 80% */
.split-layout {
  min-height: calc(100vh - 86px); /* account for fixed header */
  display: block;
}
.split-container {
  position: relative;
  height: calc(100vh - 86px);
}
.fixed-column {
  position: fixed;
  top: 86px; /* below header */
  left: 0;
  bottom: 0;
  width: 27%;
  padding: 24px;
  box-sizing: border-box;
  overflow: auto;
  overflow-x: hidden;
  background: #fff;
  border-right: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  size: 14px;
}

.scrolling-column {
  margin-left: 27%;
  width: 73%;
  height: calc(100vh - 86px);
  overflow: auto;
  padding: 96px 48px;
  box-sizing: border-box;
}

footer {
    color: rgb(0, 0, 0);
    text-align: center;
    justify-content: center;
}

@media (max-width: 900px) {
  /* Stack on small screens */
  .fixed-column {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    border-right: none;
  }
  .scrolling-column {
    margin-left: 0;
    width: 100%;
    height: auto;
    padding: 20px;
  }
  .split-container { height: auto; }
}

@media (max-width: 1200px) {
  .hero-image { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero-image { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-image { grid-template-columns: 1fr; padding: 20px; }
}

@media (max-width: 900px) {
  /* Stack on small screens */
  .fixed-column {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    border-right: none;
  }
  .scrolling-column {
    margin-left: 0;
    width: 100%;
    height: auto;
    padding: 20px;
  }
  .split-container { height: auto; }
}
@media (max-width: 1200px) {
  .hero-image { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  body { padding-top: 56px; }
  .hero-image { grid-template-columns: 1fr; padding: 20px; }
}

