/* Shared base theme */
body {
  margin: 0;
  padding: 0;
  font-family: monospace;
  background: linear-gradient(to bottom right, #000000, #1a1a1a, #4a5568);
  color: #9ae6b4;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding: 5rem 1.5rem;
}


.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: left;
  color: #9ae6b4;
}

.photo-text {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.dots-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(0, 255, 0, 0.2) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.1s ease-out;
}

.decor-circle {
  position: absolute;
  border: 1px solid rgba(0, 255, 0, 0.1);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: pulse 5s ease-in-out infinite;
}

.decor-circle:nth-child(2) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.decor-circle:nth-child(3) {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
}

.decor-circle:nth-child(4) {
  bottom: 15%;
  left: 20%;
  animation-delay: 2s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.2;
  }
}

.toggle-wrapper {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
}

.toggle-ios {
  width: 36px;
  height: 20px;
  background-color: #2d3748;
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s;
}

.toggle-ios.enabled {
  background-color: #48bb78;
}

.toggle-ios-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 9999px;
  transition: transform 0.2s;
}

.toggle-ios.enabled .toggle-ios-thumb {
  transform: translateX(16px);
}

.footer-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.75rem;
  color: #48bb78;
  z-index: 999;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 2rem;
  padding: 0 1rem;
  box-sizing: border-box;
}


.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background-color: #1a202c;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.image-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #9ae6b4;
  font-size: 0.75rem;
  padding: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  max-height: 100%;
  overflow: auto;
}

.gallery-item:hover .image-info {
  opacity: 1;
}

@media (max-width: 600px) {
  h1 {
    position: relative;
    top: 1rem;
    margin-bottom: 2rem;
  }


  .toggle-wrapper {
    display: none;
  }

}

@media (max-width: 800px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
