/* ===================================
   Prime Studios R&D - Main Stylesheet
   =================================== */

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

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

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

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

/* Base Styles */
body {
  background-color: #050505;
  color: #e5e5e5;
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Glass Morphism Navigation */
.glass-nav {
  background-color: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #262626;
}

/* Gradient Text Effects */
.gradient-text-blue-purple {
  background: linear-gradient(to right, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-purple-white {
  background: linear-gradient(to right, #a78bfa, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mobile Menu Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu-enter {
  animation: slideDown 0.3s ease-out forwards;
}

/* Hero Background Effects */
.hero-gradient-orb {
  filter: blur(120px);
  opacity: 0.4;
  mix-blend-mode: screen;
}

/* Card Hover Effects */
.venture-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.venture-card:hover {
  transform: translateY(-4px);
}

/* Feature Card Transitions */
.feature-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Button Styles */
.btn-primary {
  background: white;
  color: black;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Content Sections */
.content-section {
  line-height: 1.8;
}

.content-section ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.content-section li {
  margin-bottom: 0.5rem;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.25rem !important;
    line-height: 1.1;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 1.875rem !important;
  }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .mobile-menu.active {
    max-height: 400px;
  }
}

/* Utility Classes */
.text-balance {
  text-wrap: balance;
}

/* Loading States */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Focus Styles for Accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .no-print {
    display: none !important;
  }
}
