
.site-header {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 10px;
    padding: 4rem 2rem;
    text-align: left;
}

.site-title {
    
    font-weight: 600;
}

body {
  margin: 0;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  font-family: 'Segoe UI';
  
}



/* GRID CONTAINER */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;

  padding: 60px;

  max-width: 1400px;
  margin: 0 auto;
}


/* PROJECT TILE BASE */
.project {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;

  aspect-ratio: 4 / 3;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;

  transition: transform 0.2s ease;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.wide {
  grid-column: span 4;
  aspect-ratio: 16 / 9;
}

.hero {
  grid-column: span 4;

  /* REMOVE aspect ratio constraint */
  aspect-ratio: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px;

  gap: 32px;
}

/* HERO PROJECT — larger footprint */
.project-card.hero {
  grid-column: span 2;
  grid-row: span 3;
  border: 0.5px solid #d7dedf;
  display: flex;
  justify-content: center;
  align-items: center;
   position: relative;
   max-height: 80vh;

  transition: transform 0.2s ease;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.project-card.hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.project-content {
     width: 55%;
     max-width: 500px;
     padding: 24px;
     flex-direction: column;
     transition: opacity 0.25s ease;
   
}

.project-content p {
    white-space: normal;
    overflow-wrap: break-word;
}
.project-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hover effect */
.project:hover {
  transform: scale(1.02);
}
.project-card.hero:hover {
  transform: scale(1.02);
}


/* SIZE VARIATIONS */
.large {
  grid-column: span 4;
}

.medium {

  object-fit: contain;
}

.medium img {
max-height: 70vh;
}
.small {
  grid-column: span 2;
}

.project {
  border: 1px solid red;
}
.project:hover .project-overlay,
.project-card:hover .project-overlay {
  opacity: 1;
}


.project-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  opacity: 0;
  transition: opacity 0.35s ease;

  display: flex;
  align-items: flex-end;

  padding: 24px;

  background: linear-gradient(
    to top,
    rgba(120, 190, 255, 0.95) 0%,
    rgba(11, 114, 210, 0.934) 40%,
    rgba(8, 0, 161, 0.768) 100%
  );
}

.overlay-content {
  color: white;
}

.overlay-content h3 {
  margin: 0 0 8px 0;
}

.overlay-content p {
  margin: 0 0 12px 0;
  font-size: 14px;
}

.view-project {
  font-weight: 600;
  font-size: 14px;
}

.project-link {
  display: flex;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.project-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 100vh;
}

.hero-image img {
  width: 100%;
  max-height: 90vh;
  height: auto;
  object-fit: contain;
  padding-left: 20px;
  padding-top: 20px;
}

.hero-image2 img {
  width: 100%;
  max-height: 90vh;
  height: auto;
  object-fit: contain;
  padding-left: 20px;
  padding-top: 20px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  max-width: 500px;
}
.process-title {
  font-size: 28px;
  font-weight: 600;
  margin-top: 120px;
  margin-bottom: 60px;
  text-align: center;
}
.process-timeline {
  position: relative;
  margin-top: 100px;
  
  padding-left: 20px;
  padding-right: 40px;

  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 110px;
  top: 100px;
  bottom: 90px;

  width: 2px;
  background: #d7dedf;

    z-index: 0;
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  align-items: center;
}

.timeline-circle {
  width: 180px;
  height: 180px;

  border-radius: 50%;
  overflow: hidden;

  flex-shrink: 0;

  border: 3px solid white;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);

  position: relative;
  z-index: 2;
  cursor: zoom-in;

  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-origin: left center;
}

.timeline-circle:hover {
  transform: scale(2.05);
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.timeline-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

