/**
 * Venture Capital Branch Styles
 * Modern, innovative, startup-focused visual identity
 */

/* Import shared base styles */
@import url('./app.css');

:root {
  /* VC Brand Colors */
  --vc-primary: #314898;
  --vc-primary-hover: #1e40af;
  --vc-secondary: #3b82f6;
  --vc-accent: #60a5fa;
  --vc-success: #10b981;
  --vc-warning: #f59e0b;
  --vc-danger: #ef4444;
  
  /* VC Gradients */
  --vc-gradient-primary: linear-gradient(135deg, #314898 0%, #1e40af 100%);
  --vc-gradient-hero: linear-gradient(135deg, #314898 0%, #3b82f6 100%);
  --vc-gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  
  /* VC Typography */
  --vc-font-primary: 'Poppins', system-ui, -apple-system, sans-serif;
  --vc-font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  
  /* VC Spacing & Layout */
  --vc-border-radius: 12px;
  --vc-border-radius-lg: 20px;
  --vc-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --vc-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --vc-shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Theme-specific body styling */
.theme-venture-capital {
  font-family: var(--vc-font-primary);
  color: #1f2937;
  line-height: 1.6;
}

/* VC Header Styles */
.theme-venture-capital .vc-header {
  background: linear-gradient(135deg, rgba(49, 72, 152, 0.95) 0%, rgba(30, 64, 175, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-venture-capital .vc-nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.theme-venture-capital .vc-nav-link:hover,
.theme-venture-capital .vc-nav-link.active {
  color: #ffffff;
}

.theme-venture-capital .vc-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--vc-gradient-primary);
  border-radius: 1px;
}

/* VC Button Styles */
.theme-venture-capital .btn-vc-primary {
  background: var(--vc-gradient-primary);
  color: white;
  padding: 12px 24px;
  border-radius: var(--vc-border-radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--vc-shadow);
}

.theme-venture-capital .btn-vc-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--vc-shadow-hover);
}

.theme-venture-capital .btn-vc-secondary {
  background: transparent;
  color: var(--vc-primary);
  border: 2px solid var(--vc-primary);
  padding: 10px 22px;
  border-radius: var(--vc-border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-venture-capital .btn-vc-secondary:hover {
  background: var(--vc-primary);
  color: white;
  transform: translateY(-1px);
}

/* VC Hero Section */
.theme-venture-capital .vc-hero {
  background: var(--vc-gradient-hero);
  position: relative;
  overflow: hidden;
}

.theme-venture-capital .vc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/pattern-startup.svg') repeat;
  opacity: 0.1;
  z-index: 1;
}

.theme-venture-capital .vc-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.theme-venture-capital .vc-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.theme-venture-capital .vc-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* VC Card Styles */
.theme-venture-capital .vc-card {
  background: var(--vc-gradient-card);
  border-radius: var(--vc-border-radius-lg);
  padding: 2rem;
  box-shadow: var(--vc-shadow);
  border: 1px solid rgba(49, 72, 152, 0.1);
  transition: all 0.3s ease;
}

.theme-venture-capital .vc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vc-shadow-hover);
}

.theme-venture-capital .vc-card-icon {
  width: 64px;
  height: 64px;
  background: var(--vc-gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.theme-venture-capital .vc-card h3 {
  color: var(--vc-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.theme-venture-capital .vc-card p {
  color: #64748b;
  line-height: 1.6;
}

/* VC Feature Sections */
.theme-venture-capital .vc-feature-section {
  padding: 5rem 0;
}

.theme-venture-capital .vc-feature-section:nth-child(even) {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.theme-venture-capital .vc-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vc-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.theme-venture-capital .vc-section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* VC Stats/Metrics */
.theme-venture-capital .vc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.theme-venture-capital .vc-stat {
  text-align: center;
  padding: 2rem;
}

.theme-venture-capital .vc-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--vc-primary);
  line-height: 1;
}

.theme-venture-capital .vc-stat-label {
  font-size: 0.875rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* VC Testimonials */
.theme-venture-capital .vc-testimonial {
  background: white;
  border-radius: var(--vc-border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--vc-shadow-lg);
  position: relative;
  margin: 2rem 0;
}

.theme-venture-capital .vc-testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 4rem;
  color: var(--vc-primary);
  opacity: 0.3;
  font-family: serif;
}

.theme-venture-capital .vc-testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.theme-venture-capital .vc-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-venture-capital .vc-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vc-gradient-primary);
}

.theme-venture-capital .vc-testimonial-name {
  font-weight: 600;
  color: var(--vc-primary);
}

.theme-venture-capital .vc-testimonial-title {
  font-size: 0.875rem;
  color: #64748b;
}

/* VC Footer */
.theme-venture-capital .vc-footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  padding: 4rem 0 2rem;
}

.theme-venture-capital .vc-footer-section h3 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.theme-venture-capital .vc-footer-link {
  color: #d1d5db;
  transition: color 0.3s ease;
}

.theme-venture-capital .vc-footer-link:hover {
  color: var(--vc-accent);
}

/* VC Responsive Design */
@media (max-width: 768px) {
  .theme-venture-capital .vc-hero h1 {
    font-size: 2.5rem;
  }
  
  .theme-venture-capital .vc-card {
    padding: 1.5rem;
  }
  
  .theme-venture-capital .vc-section-title {
    font-size: 2rem;
  }
  
  .theme-venture-capital .vc-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .theme-venture-capital .vc-stat {
    padding: 1rem;
  }
  
  .theme-venture-capital .vc-stat-number {
    font-size: 2rem;
  }
}

/* VC Animations */
@keyframes vc-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.theme-venture-capital .vc-animate-in {
  animation: vc-fadeInUp 0.6s ease-out forwards;
}

/* VC Loading States */
.theme-venture-capital .vc-loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: vc-shimmer 1.5s infinite;
}

@keyframes vc-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
