  html, body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: white;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 500;
    font-style: normal;
    margin-top: 10px;
  }
  .custom-row .left-col { text-align: left; }
  .custom-row .center-col { text-align: center; }
  .custom-row .right-col { text-align: right; }
  
.custom-row {     
        margin-left: 80px;
        margin-right: 90px;
        display: flex;
        flex-wrap: wrap;}

.left {
  margin-top: 30px;
  margin-bottom: 60px;
  margin-left: 90px;
  margin-right: 90px;
}

.header {
  margin-bottom: 3px;
  margin-top: 20px;
  margin-left: 90px;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  margin-top: 20px;
  font-family: "bricolage-grotesque", sans-serif;
  font-weight: 500;
  font-style: normal;
}


@media (max-width: 767px) {
    .custom-row .col-md-4 {
      text-align: left !important;
    }
    .custom-row{
      margin-left: 20px;
    }
  }
  .left {
    font-size: 9rem;
    font-weight: bold;
    font-family: "bricolage-grotesque", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
  }
  .left .hero-subtitle {
    text-align: right;
    width: 100%;
  }

  @media (max-width: 768px) {
    .left {
      font-size: 3rem;
      margin: 3% 30px 0 30px;
    }
  }

@media (max-width: 576px) {
  .left {
    margin-left: 30px;
    margin-right: 30px;
  }
  .header {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-left: 20px
  }
}

  footer {
    text-align: left;
    padding: 10px;
    margin-top: auto;

    a {
      color: white;
      text-decoration: none;
      }
  }

  a {
	color: black;
	text-decoration: none;
  }
  a:hover {
	text-decoration: underline;
  }

  footer.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color:  white;
    background:  black;
    padding: 30px 60px;
    gap: 30px;
    margin-top: 2%;
  }
  .footer-col {
    flex: 1;
    min-width: 200px;
    margin-left: 90px;
  }
  .footer-col p,
  .footer-col a {
    margin: 6px 0;
    font-size: 0.9rem;
  }
  .contact {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-button {
    padding: 12px 24px;
    background-color: white;
    color: black;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .contact-button:hover {
    background-color: black;
    color: white;
    text-decoration: none;
    border: 1px solid white
  }

  @media (max-width: 768px) {
    .custom-row{
      margin-left: 20px;
    }
    
    footer.footer {
      flex-direction: row;
      flex-wrap: nowrap;
      padding: 20px 10px;
      gap: 10px;
    }

    .footer-col {
      margin-left: 30px;
      flex: 1;
      min-width: unset;
    }
  
    .footer-col p,
    .footer-col a {
      font-size: 0.65rem;
      margin: 4px 0;
    }
  
    .contact-button {
      padding: 4px 8px;
      font-size: 0.5rem;
      max-width: 100%;
    }
  }

  /* Grid Layout */
.grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 90px;
  margin-right: 90px;
}

@media (max-width: 768px) {
  .grid-view {
    grid-template-columns: 1fr;
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* Project Link & Card Styling */
.project-link-grid {
  display: block;
  text-decoration: none;
  position: relative;
  color: inherit;
}

.project-item-grid {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
}

.project-item-grid:hover {
  transform: scale(1.01);
}

/* Project Overlay */
.project-overlay-grid {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.project-item-grid:hover .project-overlay {
  opacity: 1;
}

/* Project Details */
.project-details-grid {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: white;
}

.project-title-grid {
  font-size: 1.5rem;
  font-family: "bricolage-grotesque", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.project-category-grid {
  font-size: 0.9rem;
  margin-bottom: 5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

/* Project Background Images */
.project-weather {
  background-image: url('./assets/00_weather/weather.png');
}
.project-cyan {
  background-image: url('./assets/01_cyan/cyan.png');
}
.project-censorship {
  background-image: url('./assets/02_censorship/IMG_7382.jpg');
}
.project-nanzer {
  background-image: url('./assets/03_nanzer/color.jpg');
}
.project-kindergarden {
  background-image: url('./assets/04_kindergarden/motion-2-screenshot.jpg');
}
.project-safewalk {
  background-image: url('./assets/05_safewalk/safe_walk_logo.png');
  background-color: black;
}
.project-chaos {
  background-image: url('./assets/06_chaos/mgcover.png');
}
.project-plant1 {
  background-image: url('./assets/07_plant1/F1_Overlapp_4.jpg');
}
.project-app {
  background-image: url('./assets/08_app/Pictures/00_design-elements.png');
}
.project-speaker {
  background-image: url('./assets/09_speaker/Pictures/Object_Photos/DSC_9023.jpg');
}
.project-space {
  background-image: url('./assets/10_space/Pictures/Silent_messengers_1.png');
}
.project-water {
  background-image: url('./assets/11_water/Pictures/DSC_0509.jpg');
}
.project-magica {
  background-image: url('./assets/11_magica/IMG_0353.png');
}