/* Base styles and custom utilities */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Mobile menu hidden by default */
.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom gradient text */
.gradient-text {
  background: linear-gradient(to right, #2563eb, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Utility classes for hover effects */
.hover-scale {
  transition: transform 0.2s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-translate-x {
  transition: transform 0.2s ease;
}

.hover-translate-x:hover {
  transform: translateX(0.25rem);
}

/* Custom button styles */
button {
  cursor: pointer;
  border: none;
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Form input focus styles */
input:focus,
textarea:focus,
button:focus {
  outline: none;
}
