/* 
  Project: Fashion Showcase
  Theme: Minimalist High-End Fashion
  Note: Core styles handled by Tailwind CSS. This file provides global resets and custom animations.
*/

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

/* Global Reset & Typography */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  color: #212529; /* Deep Gray */
}

/* Selection Style */
::selection {
  background-color: #f1f3f5; /* Light Gray */
  color: #212529;
}

/* Minimalist Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #e9ecef;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ced4da;
}

/* Custom Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0; /* Start hidden */
}

/* Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* Image Hover Effects - Ultra Smooth */
.img-zoom-container {
  overflow: hidden;
}

.img-zoom-target {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease;
  will-change: transform;
}

.img-zoom-container:hover .img-zoom-target {
  transform: scale(1.03);
}

/* Utility: Hide scrollbar for clean horizontal scroll areas */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}