
body {
  display: block;
  background: black;
  color: white;

  margin: 20px;
}

.header-text ul {
  padding-left: 20px;
}

.header-text ul ul {
  padding-left: 20px;
  list-style-type: circle; 
}


/* HEADER */
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap; 
}

.header-text {
  flex: 1 1 auto;
  min-width: 250px;
}

.project-btn {
  background-color: #24292e;
  color: white;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.project-btn:hover {
  background-color: #444c56;
}



/* BG */
.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('resources/VulkanRenderer.jpg') center center / cover no-repeat;
  filter: grayscale(100%) blur(20px) brightness(0.4);
  z-index: -2;
  pointer-events: none;
}

.bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* IMAGES OF RENDERPASSES*/
.hover-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 10px;
  font-size: 0.9rem;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.image-container:hover .hover-hint {
  opacity: 0;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 50px auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out;
}

.image-container:hover {
  transform: scale(1.05);
}

.render-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  border-radius: 10px;
}

.render-image.active {
  opacity: 1;
}


