/* ---- 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;
}


/* SECOND FONT */











/* 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;
    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: 1000;
    height: var(--nav-height);
}

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

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


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

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




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

} */

.main-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    background-color: #f2f2f2;
    min-width: 0;
}

/* Project Info */
/* Grid Format */
/* .main-project-info-container {
  background-color: #f2f2f2;
  display: grid;
  gap: 27px;
  padding: 20px;
  padding-bottom: 5px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
} */
/* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */


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

  width: 100%;
  max-width: 100%;
  
  
}

@media (min-width: 467px) {
    .main-project-info-container {
  background-color: #f2f2f2;
  display: grid;
  gap: 27px;
  padding: 20px;
  padding-bottom: 5px;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));

  width: 100%;
  max-width: 100%;
  
  
}
}





/* Flex Format */
.main-project-info-container-flex {
  background-color: #f2f2f2;
  display: flex;
  gap: 27px;
  padding: 23px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}


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


.project-info-tag{
  color: #888;
  text-align-last: right;
}

.project-info-tag:hover {
  color: #001eff;
  text-decoration: underline;
  cursor: pointer;
}


/* PROJECT INFO RESPOSIVE ALIGN */
@media (max-width: 466px) {
  .project-info-tag {
    text-align-last: left;
  }

}


/* Project Grid Styles */
.work-grid {
    display: flex;
    flex-direction: row;
    gap: 11px; /* Spacing between projects */
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.img-min-500 img {
    width: 100%;
    height: auto;
    display: block;
}

/* Image And Videos Sizes */

    /* Videos */

/* 700px Video size */
.vid-min-750 video {    
  width: 100%;
  height: auto;
  max-width: 900px; /* Optional limit */
  display: block;
}

/* 500px Video size */
.vid-min-500 video {    
  width: 100%;
  height: auto;
  max-width: 650px; /* Optional limit */
  display: block;
}

/* 350px Video size */
.vid-min-350 video {    
  width: 100%;
  height: auto;
  max-width: 420px; /* Optional limit */
  display: block;
}

   /* Images */


/* 500px Image size */
.img-min-500 img {    
  width: 100%;
  height: auto;
  max-width: 650px; /* Optional limit */
  display: block;
}

/* 350px Image size */
.img-min-350 img {    
  width: 100%;
  height: auto;
  max-width: 420px; /* Optional limit */
  display: block;
}

/* 700px Image size */
.img-min-700 img {    
  width: 100%;
  height: auto;
  max-width: 750px; /* Optional limit */
  display: block;
}




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

    .bottom-nav {
  display: flex;
  gap: 40px;
  flex-direction: row;
  padding-top: 50px;
  font-size: 12px;
}

}








/* Page Gaps */


.gap {
    padding: 5%;
}

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

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

.gap-5 {
    padding: 2%;
}


.bottom-nav {
  display: flex;
  gap: 40px;
  flex-direction: row;
  padding-top: 245px;
}



.nav-prev {
  color: #888;
  text-decoration:none;
}

.nav-prev:hover {
  color: #001eff;
  text-decoration: underline;
  cursor: pointer;
}


.nav-next {
  color: #888;
  text-decoration: none;
}

.nav-next:hover {
  color: #001eff;
  text-decoration: underline;
  cursor: pointer;
}



/* 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;
    margin: 0 5px;
}

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