/* AppTunnel.io - Main Styles */

@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    font-family: 'Inter', system_ui, sans-serif;
}

h1, h2, h3 {
    font-family: 'Inter', system_ui, sans-serif;
    font-weight: 700;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Card hover effects */
.card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Button styles */
.btn-primary {
    @apply bg-emerald-500 hover:bg-emerald-600 text-black font-semibold py-4 px-8 rounded-2xl transition-all duration-200;
}

.btn-secondary {
    @apply border border-zinc-700 hover:border-zinc-500 hover:text-white transition-all duration-200;
}

/* Navigation */
nav {
    backdrop-filter: blur(12px);
}

/* Hero gradient text */
.gradient-text {
    background: linear-gradient(90deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}