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

@font-face {
  font-family: "nibus";
  src: url(./assets/font/nimbus-sans-novus-t-light.ttf);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Times New Roman";
  color: red;
  background-color: #ffffff;
 background-image: url(assets/img11.png);
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
cursor: none;
}

nav {
  width: 100vw;
  cursor: none;
  padding: 2.5em;
  display: flex;
  flex-direction: column;
  justify-content: space;
  align-items: center;
  font-family: "Playwrite VN Guides", cursive;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 2em;
  list-style: none;

}

a {
  color: red;
  text-decoration: none;
  font-size: 1.2rem;
  z-index: 4;
    cursor: none;

}

.container {
  max-width: 1100px;
  margin: 0 auto;
  
}

/* Main Content */
.main-content {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 80px;
  min-height: 80vh;
  padding-top: 70px;
}

/* Left Column */
.text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-content h3 {
  font-family: "nibus";
  font-size: 1.2rem;
  font-weight: 100;
  margin-bottom: 30px;
  line-height: 0.9;
}

canvas {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}


.last-updated {
  font-style: italic;
  color: #999;
  font-size: 12px;
  margin-top: 20px;
  padding-top: 60px;
  border-top: 1px solid #000000;
}

/* Right Column - Gallery */
.gallery-container {
  position: relative;
  height: 600px;
  perspective: 1000px;
}

.image-stack {
    cursor: none;

  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-image {
  position: absolute;
  width: auto;
  height: auto;
  cursor: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.gallery-image.active {
  z-index: 10;
  transform: scale(1);
  opacity: 1;
}

.gallery-image:not(.active) {
  opacity: 0.7;
  transform: scale(0.9);
}

/* Image captions */
.image-caption {
  position: absolute;
  font-family: "nibus";
  bottom: 10px;
  left: 0px;
  padding: 10px 16px;
  font-size: 17px;
  background-color: rgba(0, 0, 0, 0.5);
  color: invert;
  font-weight: bolder;
   color: white;
            mix-blend-mode: difference;
            z-index: 2;
}

/* Gallery controls */
.gallery-controls {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

     .custom-cursor {
      cursor: none;
            position: fixed;
            width: 32px;
            height: 32px;
            background: white;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            filter: blur(2px);
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
            transition: transform 0.1s ease-out;
        }


/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .text-content {
    padding-right: 0;
    text-align: center;
  }

  .text-content h1 {
    font-size: 24px;
  }

  .gallery-container {
    height: 400px;
  }

  body {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    height: 300px;
  }

  .text-content h1 {
    font-size: 20px;
  }

  .text-content p {
    font-size: 16px;
  }
}


      
      

        