/* Business Theme CSS */
:root {
  --primary-color: #1e40af;
  --secondary-color: #64748b;
  --accent-color: #059669;
  --background-color: #ffffff;
  --text-color: #1f2937;
}

.theme-business .hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.theme-business .hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.theme-business .btn-primary {
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.business-theme.container {
  max-width: none;
}

/* Animations */
.business-theme .fade-in {
  animation: fadeIn 0.8s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.business-theme .slide-up {
  animation: slideUp 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.business-theme .slide-in-left {
  animation: slideInLeft 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.business-theme .slide-in-right {
  animation: slideInRight 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.business-theme .scale-in {
  animation: scaleIn 0.8s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Scroll-triggered animations */
.business-theme .animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.business-theme .animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-image-business {
  transform: scale(2.5);
}

.main-logo img {
  transform: scale(3);
}