/**
 * DeMV Platform - NFT Gallery Styles
 * Styles for the NFT image gallery in the details modal
 */

/* Image gallery container */
.nft-image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}

/* Thumbnail styling */
.nft-thumbnail {
  width: 80px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(108, 99, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.nft-thumbnail:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border-color: rgba(108, 99, 255, 0.6);
}

.nft-thumbnail.active {
  border-color: #00ff99;
  box-shadow: 0 0 10px rgba(0, 255, 153, 0.5);
}

.nft-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main image container */
.nft-details-image-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Main image */
#nft-details-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

/* Image overlay */
.nft-details-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nft-thumbnail {
    width: 60px;
    height: 45px;
  }
  
  #nft-details-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .nft-thumbnail {
    width: 50px;
    height: 40px;
  }
  
  #nft-details-image {
    height: 200px;
  }
}
