/* Common Styles for Деловой бухгалтер */

/* Smooth scrolling for all pages */
html {
    scroll-behavior: smooth;
}

/* Hero gradient background */
.hero-gradient {
    background: linear-gradient(135deg, #5D2906 0%, #B8860B 100%);
}

/* Client card hover effects */
.client-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.08);
}

/* Body background */
body {
    background-color: #f8f9fa;
}

/* Smooth transitions */
.transition-smooth {
    transition: all 0.3s ease;
}

/* Custom button styles */
.btn-primary {
    @apply bg-accent hover:bg-green-600 text-white font-semibold py-3 px-8 rounded-lg transition-colors;
}

.btn-secondary {
    @apply bg-secondary hover:bg-blue-600 text-white font-semibold py-2 px-4 rounded-lg transition-colors;
}
