/* Additional custom styles beyond Tailwind */
.prose {
  max-width: 65ch;
  margin: 0 auto;
}

.prose h1 {
  color: #fff;
  font-size: 2.25rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 700;
}

.prose h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.prose p {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.prose code {
  background: #1f2937;
  padding: 0.2em 0.4em;
  border-radius: 0.25rem;
  font-size: 0.875em;
}

.prose pre {
  background: #1f2937;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(45deg, #60a5fa, #34d399, #60a5fa);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Card hover effects */
.service-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #60a5fa;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px #60a5fa,
    0 0 0 3px rgba(96, 165, 250, 0.1);
}

/* Animated background */
.animated-bg {
  background: linear-gradient(-45deg, #1f2937, #111827, #1e40af, #1f2937);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  position: relative;
}

.animated-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Input focus effects */
.form-input {
  transition: all 0.3s ease;
  background: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(10px);
}

.form-input:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2),
    0 0 20px rgba(96, 165, 250, 0.1);
  outline: none;
  transform: translateY(-1px);
}

/* Button hover animation */
.hover-button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.hover-button:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.5);
}

.hover-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.hover-button:hover::before {
  left: 100%;
}

/* Glass morphism effects */
.glass-card {
  background: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #60a5fa, #34d399);
  transform-origin: 0;
  z-index: 1000;
}
