/* ProcessLink - Custom Styles */
/* Diese Datei enthält zusätzliche Styles zusätzlich zu Tailwind CSS */

:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a855f7;
  --secondary: #ec4899;
  --dark: #0f172a;
  --dark-alt: #1e293b;
  --gray: #64748b;
  --light: #f1f5f9;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Gradient Background */
.gradient-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* Animated Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Button Hover Effects */
.btn-primary {
  background: var(--primary);
  color: white;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

/* Hero Section Background Pattern */
.hero-pattern {
  background-color: var(--dark);
  background-image:
    radial-gradient(at 40% 20%, rgba(124, 58, 237, 0.1) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(168, 85, 247, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(236, 72, 153, 0.05) 0px, transparent 50%);
}

/* Navigation Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  z-index: 50;
  margin-top: 0.5rem;
}

.dropdown-menu.active {
  display: block;
  animation: fadeInDown 0.3s ease;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--dark);
  transition: background 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--light);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Testimonial Slider */
.testimonial-slider {
  position: relative;
}

.testimonial-slides-wrapper {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  flex-shrink: 0;
}

.slider-dot {
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-dot:hover {
  transform: scale(1.2);
}

/* Pricing Card Popular */
.pricing-card-popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

/* Feature Icons */
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Loading State */
.loading {
  pointer-events: none;
  opacity: 0.6;
}

/* Alert Messages */
.alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Form Styles */
input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

/* Footer Styles */
footer {
  background: var(--dark);
  color: white;
}

footer a {
  color: var(--gray);
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-light);
}
