@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.perspective-1000 {
  perspective: 1000px;
}

.rotate-x-6 {
  transform: rotateX(6deg);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Transitions for Showcase */
.tab-content {
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
.tab-content.active {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}

/* Clickable Screenshots */
.screenshot-clickable {
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.screenshot-clickable:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

/* Modal Animation */
#image-modal {
  animation: fadeIn 0.2s ease-in-out;
}
#image-modal.hidden {
  animation: fadeOut 0.2s ease-in-out;
}

/* Modal Image Styling */
#modal-image {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Smooth scrolling for modal */
#image-modal {
  scroll-behavior: smooth;
}

/* Watermark Overlay for Lightbox */
.image-watermark {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(30, 41, 59, 0.85);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid rgba(59, 130, 246, 0.6);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 120;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
