body {
  font-family: 'Times New Roman', Times, serif;
  margin: 0;
  padding: 2rem;
  background: #f9f9f9;
  color: #333;
}

footer {
  font-family: 'Times New Roman', Times, serif
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: small;
}

footer {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;

}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

figure {
  background: white;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin: 0;
  text-align: center;
}


figure img {
  transition: transform 0.3s ease;
  cursor: default; /* or 'pointer' if you still want the hover hand */
}

figure img:hover {
  transform: scale(1.02); /* Just a subtle zoom */
}


figure img:hover {
  transform: scale(1.05);
}



img {
  width: 100%;
  height: auto;
  display: block;
}

figcaption {
  padding: 0.75rem;
  font-size: 0.95rem;
  color: #555;
}


footer audio {
  margin-top: 0.5rem;
  width: 90%;
  max-width: 300px;
}



#scrollToTopBtn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  font-size: 1.25rem;
  border: none;
  outline: none;
  background-color: #333;
  color: white;
  cursor: pointer;
  padding: 0.6rem 1rem;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  display: none;
  transition: opacity 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #555;
}



.flower-container {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.flower {
  position: absolute;
  width: 40px;
  opacity: 0.5;
  animation: float 12s linear infinite;
}

.flower1 {
  top: 100%;
  left: 10%;
  animation-delay: 0s;
}

.flower2 {
  top: 100%;
  left: 50%;
  animation-delay: 4s;
}

.flower3 {
  top: 100%;
  left: 80%;
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-120vh) rotate(360deg) scale(1.05);
    opacity: 0;
  }
}

.site-header {
  text-align: center;
  margin-top: -2rem;
  margin-bottom: -3rem;
}

.site-header img {
  width: 200px; 
  max-width: 80%;
  height: auto;
  display: inline-block;
}

.footer-flower {
  text-align: center;
  margin-bottom: 1rem;
}

.footer-flower img {
  width: 60px;
  display: inline-block;
}


.grayscale {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}


.project-link {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 0px;
}
