/* Hero Section Enhancements - No Boxes */

/* Improved typography and spacing */
.hero-section h1 {
  letter-spacing: -0.02em;
  line-height: 1.1;
}

@media (max-width: 640px) {
  .hero-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
}

/* Enhanced button animations */
#watchVideo {
  position: relative;
  overflow: hidden;
}

#watchVideo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

#watchVideo:hover::before {
  left: 100%;
}

/* Subtle background enhancements */
.hero-background-blur {
  opacity: 0.25;
}

.hero-background-blur:hover {
  opacity: 0.15;
  transition: opacity 2s ease;
}

/* Philosophy section improvements */
.philosophy-item {
  cursor: default;
}

.philosophy-item:hover {
  transform: translateY(-4px);
}

.philosophy-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Staggered animations */
.animate-fade-in-delay-1 {
  animation: fade-in 1.2s ease-out 0.1s both;
}

.animate-fade-in-delay-2 {
  animation: fade-in 1.2s ease-out 0.2s both;
}

.animate-fade-in-delay-3 {
  animation: fade-in 1.2s ease-out 0.3s both;
}

/* Loading states */
.loading-spinner {
  border-top-color: transparent;
  border-right-color: transparent;
}

/* Focus improvements for accessibility */
button:focus,
iframe:focus {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
* {
  scroll-behavior: smooth;
}

/* Mobile touch improvements */
@media (max-width: 768px) {
  #watchVideo {
    min-height: 56px;
    width: 100%;
    max-width: 280px;
  }
  
  .philosophy-item {
    padding: 1rem 0;
  }
  
  .hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .animate-fade-in,
  .animate-float,
  .animate-slow-float,
  .transition-all,
  .transition-transform {
    animation: none;
    transition: none;
  }
  
  .hover\:scale-105:hover,
  .hover\:scale-110:hover,
  .group-hover\:scale-110 {
    transform: none;
  }
}

/* Better contrast for text readability */
.text-shadow-enhanced {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Subtle gradient text effects */
.gradient-text {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced modal backdrop */
.modal-backdrop {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Smooth section transitions */
section {
  transition: opacity 1s ease-in-out;
}

/* Performance optimization */
.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}