/* Freethink Gen Z Website Styles */

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #000;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Hero Section Enhancements */
.hero-text {
  animation: fadeIn 1s ease-out;
}

.hero-cta {
  animation: pulse 2s infinite;
}

/* Interactive Elements */
.interactive-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.interactive-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 107, 0, 0.2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  z-index: -1;
}

.interactive-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.interactive-btn.active {
  background-color: #FF6B00;
}

/* Card Hover Effects */
.story-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
}

/* Mobile Menu Animation */
.mobile-menu-enter {
  opacity: 0;
  transform: translateY(-10px);
}

.mobile-menu-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
}

.mobile-menu-exit {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-exit-active {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #FF6B00;
  border-radius: 4px;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Accessibility Enhancements */
:focus {
  outline: 2px solid #FF6B00;
  outline-offset: 2px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .bg-white {
    background-color: #121212;
    color: #f1f1f1;
  }
  
  .text-gray-600, .text-gray-700 {
    color: #b0b0b0;
  }
  
  .bg-gray-50, .bg-gray-100 {
    background-color: #1e1e1e;
  }
}
