/* Reset and Utilities */
* {
  box-sizing: border-box;
}

.App {
  min-height: 100vh;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #0f172a;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #ea580c;
}

/* Animation utilities */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Stagger 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;
}

.delay-500 {
  animation-delay: 0.5s;
}

/* Image hover effects */
.image-hover-scale {
  transition: transform 0.7s ease-out, filter 0.7s ease-out;
}

.image-hover-scale:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Typography utilities */
.font-oswald {
  font-family: 'Oswald', sans-serif;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

.font-playfair {
  font-family: 'Playfair Display', serif;
}

/* Selection color */
::selection {
  background-color: #ea580c;
  color: white;
}

/* Focus visible styles */
button:focus-visible,
a:focus-visible {
  outline: 2px solid #ea580c;
  outline-offset: 4px;
}