@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');

.font-giveny {
  font-family: 'Montserrat', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* Custom font override for Giveny */
.font-giveny {
  font-family: 'Giveny', 'Inter', sans-serif;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #088e30;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #066d24;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

#i0z0wr {
  width: 245px;
  height: 244px;
}

/* Modal Lightbox Styles */
.modal-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  animation: fadeIn 0.3s ease-in;
}

.modal-lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  animation: zoomIn 0.3s ease-in;
  user-select: none;
  touch-action: none;
}

.modal-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.modal-lightbox-close:hover {
  background-color: #088e30;
  transform: scale(1.1);
}

.modal-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: 1001;
}

.modal-lightbox-nav:hover {
  background-color: #088e30;
  transform: translateY(-50%) scale(1.1);
}

.modal-lightbox-prev {
  left: 20px;
}

.modal-lightbox-next {
  right: 20px;
}

/* Dots Container */
.modal-lightbox-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 1001;
}

.modal-lightbox-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.modal-lightbox-dot.active {
  background-color: #088e30;
  width: 14px;
  height: 14px;
  box-shadow: 0 0 10px rgba(8, 142, 48, 0.5);
}

.modal-lightbox-dot:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Make gallery images clickable */
#gallery .group {
  cursor: pointer;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .modal-lightbox-close {
    top: 10px;
    right: 10px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }

  .modal-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .modal-lightbox-prev {
    left: 10px;
  }

  .modal-lightbox-next {
    right: 10px;
  }

  .modal-lightbox-dots {
    bottom: 15px;
    gap: 6px;
  }

  .modal-lightbox-dot {
    width: 10px;
    height: 10px;
  }

  .modal-lightbox-dot.active {
    width: 12px;
    height: 12px;
  }
}

/* Gallery Show/Hide functionality */
.gallery-hidden {
  display: none;
}

.gallery-hidden.gallery-show {
  display: block;
  animation: fadeIn 0.4s ease-in;
}

#showAllGallery {
  transition: all 0.3s ease;
}

#showAllGallery:hover {
  transform: translateY(-2px);
}
