/* ---- FONTS CSS CODES ------ */

.ibm-plex-mono-thin {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 100;
  font-style: normal;
}

.ibm-plex-mono-extralight {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 200;
  font-style: normal;
}

.ibm-plex-mono-light {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
  font-style: normal;
}

.ibm-plex-mono-regular {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.ibm-plex-mono-medium {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-style: normal;
}

.ibm-plex-mono-semibold {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-style: normal;
}

.ibm-plex-mono-bold {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

.ibm-plex-mono-thin-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 100;
  font-style: italic;
}

.ibm-plex-mono-extralight-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 200;
  font-style: italic;
}

.ibm-plex-mono-light-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
  font-style: italic;
}

.ibm-plex-mono-regular-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: italic;
}

.ibm-plex-mono-medium-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-style: italic;
}

.ibm-plex-mono-semibold-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-style: italic;
}

.ibm-plex-mono-bold-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-style: italic;
}


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

body {
    background-color: #f2f2f2; /* Light gray background like your screenshot */
    font-family: "IBM Plex Mono", monospace;
    color: #333;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;

    /* margin: 0;
    background: radial-gradient(circle, rgba(242, 242, 242, 0.1) 0%, rgba(242,242,242,0.8) 100%);
    background: radial-gradient(ellipse at center, transparent 0%, rgba(242, 242, 242, 0.9) 100%); */
    
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* This creates the vignette overlay */
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.5);
  pointer-events: none; /* Allows you to click buttons underneath */
  z-index: 9999;
}

/* Header */
header {
    padding-top: 17px;
    text-align: center;
    position: sticky;
    top: 0;
    background: #f2f2f2;
    z-index: 100;
}

nav a {
    text-decoration: none;
    color: #888;
    margin: 0 10px;
    transition: 0.3s;
}

nav a.active, nav a:hover {
    color: #001eff;
    text-decoration: underline;
}


/* SAB-Header */

.sab-header {
    text-align: center;
    color: #c9c9c9;
    font-weight: 400;
    padding-bottom: 0%;
      width: 100%;
      max-width: 100%;
      word-wrap: break-word;
      overflow-wrap: break-word;
      white-space: normal;

}


.main-project-info-container {
  background-color: #f2f2f2;
  display: flex;
  gap: 27px;
  padding-top: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding-bottom: 2px;
  z-index: 11;
  
}

#sticky-1 {
  position: sticky;
  top: var(--nav-height);
}

:root {
      --nav-height: 17px;
    }




/* Main Container */
.main-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0px 0px 0px;
    background-color: #f2f2f2;
}

/* Project Grid Styles */
.work-grid {
    display: flex;
    flex-direction: column;
    gap: 0px; /* Spacing between projects */
}

.project-pair {
    background-color: #001eff;
}

.image-row {
    display: grid;
    grid-template-rows: 1fr 1fr; /* Two columns */
    gap: 20px;
}

.item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .image-row {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    
    body {
        font-size: 14px;
    }
}

/* Make the link container behave like a block */
.project-link {
    text-decoration: none;
    display: block;
    transition: opacity 0.4s ease;
}

/* Image Hover Effect */
.project-link:hover {
    opacity: 0.3; /* Subtle fade effect */
}

.item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer; /* Ensures the pointer finger shows up */
}

/* If you want a specific image to zoom slightly on hover */
.item {
    overflow: hidden; /* Keeps the zoom inside the box */
}

.item img:hover {
    transform: scale(1.01);
    transition: transform 0.1.5s ease;
}

/* Meta Data */
.project-meta {
    display: flex;
    text-align: center;
    flex-direction: row;
    padding-top: 3%;
    padding-bottom: 9%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
}

.project-meta a {
    text-decoration: none;
    color: #888;
}

.project-meta a:hover {
    text-decoration: underline;
    color: #001eff;
}



.date {
    color: #999;
    font-size: 10px;
    display: block;
    margin-bottom: 5px;
}

.title {
    font-size: 12px;
    font-weight: 400;
}


.gap {
    padding: 5%;
}

.gap-2 {
    padding-top: 3%;
}

.disabled-link {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

/* Text-Breaker Responsive */

h1, p, a {
      max-width: 100%;
      word-break: break-word;
    }

/* Footer */
footer {
    text-align: center;
    width: 100%;
    background-color: #001eff;
    padding-bottom: 45px;

}

.footer-links  {
    text-decoration: none;
    color: #f2f2f2;
    margin: 0 5px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}

.footer-links a {
    text-decoration: none;
    color: #f2f2f2;
}

.footer-links a:hover {
    color: #a4a4a4;
    text-decoration: underline;
}